/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.identitymanagement.model; import java.io.Serializable; import javax.annotation.Generated; /** *
* Contains information about a virtual MFA device. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class VirtualMFADevice implements Serializable, Cloneable { /** *
* The serial number associated with VirtualMFADevice
.
*
* The base32 seed defined as specified in RFC3548. The
* Base32StringSeed
is base32-encoded.
*
* A QR code PNG image that encodes
* otpauth://totp/$virtualMFADeviceName@$AccountName?secret=$Base32String
where
* $virtualMFADeviceName
is one of the create call arguments. AccountName
is the user name
* if set (otherwise, the account ID otherwise), and Base32String
is the seed in base32 format. The
* Base32String
value is base64-encoded.
*
* The IAM user associated with this virtual MFA device. *
*/ private User user; /** ** The date and time on which the virtual MFA device was enabled. *
*/ private java.util.Date enableDate; /** ** A list of tags that are attached to the virtual MFA device. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *
*/ private com.amazonaws.internal.SdkInternalList
* The serial number associated with VirtualMFADevice
.
*
VirtualMFADevice
.
*/
public void setSerialNumber(String serialNumber) {
this.serialNumber = serialNumber;
}
/**
*
* The serial number associated with VirtualMFADevice
.
*
VirtualMFADevice
.
*/
public String getSerialNumber() {
return this.serialNumber;
}
/**
*
* The serial number associated with VirtualMFADevice
.
*
VirtualMFADevice
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public VirtualMFADevice withSerialNumber(String serialNumber) {
setSerialNumber(serialNumber);
return this;
}
/**
*
* The base32 seed defined as specified in RFC3548. The
* Base32StringSeed
is base32-encoded.
*
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. * Users of the SDK should not perform Base64 encoding on this field. *
** Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will * be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or * ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future * major version of the SDK. *
* * @param base32StringSeed * The base32 seed defined as specified in RFC3548. The *Base32StringSeed
is base32-encoded.
*/
public void setBase32StringSeed(java.nio.ByteBuffer base32StringSeed) {
this.base32StringSeed = base32StringSeed;
}
/**
*
* The base32 seed defined as specified in RFC3548. The
* Base32StringSeed
is base32-encoded.
*
* {@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend * using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent * {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. * Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the * {@code position}. *
* * @return The base32 seed defined as specified in RFC3548. * TheBase32StringSeed
is base32-encoded.
*/
public java.nio.ByteBuffer getBase32StringSeed() {
return this.base32StringSeed;
}
/**
*
* The base32 seed defined as specified in RFC3548. The
* Base32StringSeed
is base32-encoded.
*
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. * Users of the SDK should not perform Base64 encoding on this field. *
** Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will * be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or * ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future * major version of the SDK. *
* * @param base32StringSeed * The base32 seed defined as specified in RFC3548. The *Base32StringSeed
is base32-encoded.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public VirtualMFADevice withBase32StringSeed(java.nio.ByteBuffer base32StringSeed) {
setBase32StringSeed(base32StringSeed);
return this;
}
/**
*
* A QR code PNG image that encodes
* otpauth://totp/$virtualMFADeviceName@$AccountName?secret=$Base32String
where
* $virtualMFADeviceName
is one of the create call arguments. AccountName
is the user name
* if set (otherwise, the account ID otherwise), and Base32String
is the seed in base32 format. The
* Base32String
value is base64-encoded.
*
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. * Users of the SDK should not perform Base64 encoding on this field. *
** Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will * be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or * ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future * major version of the SDK. *
* * @param qRCodePNG * A QR code PNG image that encodes *otpauth://totp/$virtualMFADeviceName@$AccountName?secret=$Base32String
where
* $virtualMFADeviceName
is one of the create call arguments. AccountName
is the
* user name if set (otherwise, the account ID otherwise), and Base32String
is the seed in
* base32 format. The Base32String
value is base64-encoded.
*/
public void setQRCodePNG(java.nio.ByteBuffer qRCodePNG) {
this.qRCodePNG = qRCodePNG;
}
/**
*
* A QR code PNG image that encodes
* otpauth://totp/$virtualMFADeviceName@$AccountName?secret=$Base32String
where
* $virtualMFADeviceName
is one of the create call arguments. AccountName
is the user name
* if set (otherwise, the account ID otherwise), and Base32String
is the seed in base32 format. The
* Base32String
value is base64-encoded.
*
* {@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend * using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent * {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. * Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the * {@code position}. *
* * @return A QR code PNG image that encodes *otpauth://totp/$virtualMFADeviceName@$AccountName?secret=$Base32String
where
* $virtualMFADeviceName
is one of the create call arguments. AccountName
is the
* user name if set (otherwise, the account ID otherwise), and Base32String
is the seed in
* base32 format. The Base32String
value is base64-encoded.
*/
public java.nio.ByteBuffer getQRCodePNG() {
return this.qRCodePNG;
}
/**
*
* A QR code PNG image that encodes
* otpauth://totp/$virtualMFADeviceName@$AccountName?secret=$Base32String
where
* $virtualMFADeviceName
is one of the create call arguments. AccountName
is the user name
* if set (otherwise, the account ID otherwise), and Base32String
is the seed in base32 format. The
* Base32String
value is base64-encoded.
*
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. * Users of the SDK should not perform Base64 encoding on this field. *
** Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will * be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or * ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future * major version of the SDK. *
* * @param qRCodePNG * A QR code PNG image that encodes *otpauth://totp/$virtualMFADeviceName@$AccountName?secret=$Base32String
where
* $virtualMFADeviceName
is one of the create call arguments. AccountName
is the
* user name if set (otherwise, the account ID otherwise), and Base32String
is the seed in
* base32 format. The Base32String
value is base64-encoded.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public VirtualMFADevice withQRCodePNG(java.nio.ByteBuffer qRCodePNG) {
setQRCodePNG(qRCodePNG);
return this;
}
/**
* * The IAM user associated with this virtual MFA device. *
* * @param user * The IAM user associated with this virtual MFA device. */ public void setUser(User user) { this.user = user; } /** ** The IAM user associated with this virtual MFA device. *
* * @return The IAM user associated with this virtual MFA device. */ public User getUser() { return this.user; } /** ** The IAM user associated with this virtual MFA device. *
* * @param user * The IAM user associated with this virtual MFA device. * @return Returns a reference to this object so that method calls can be chained together. */ public VirtualMFADevice withUser(User user) { setUser(user); return this; } /** ** The date and time on which the virtual MFA device was enabled. *
* * @param enableDate * The date and time on which the virtual MFA device was enabled. */ public void setEnableDate(java.util.Date enableDate) { this.enableDate = enableDate; } /** ** The date and time on which the virtual MFA device was enabled. *
* * @return The date and time on which the virtual MFA device was enabled. */ public java.util.Date getEnableDate() { return this.enableDate; } /** ** The date and time on which the virtual MFA device was enabled. *
* * @param enableDate * The date and time on which the virtual MFA device was enabled. * @return Returns a reference to this object so that method calls can be chained together. */ public VirtualMFADevice withEnableDate(java.util.Date enableDate) { setEnableDate(enableDate); return this; } /** ** A list of tags that are attached to the virtual MFA device. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *
* * @return A list of tags that are attached to the virtual MFA device. For more information about tagging, see Tagging IAM resources in the * IAM User Guide. */ public java.util.List* A list of tags that are attached to the virtual MFA device. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *
* * @param tags * A list of tags that are attached to the virtual MFA device. For more information about tagging, see Tagging IAM resources in the * IAM User Guide. */ public void setTags(java.util.Collection* A list of tags that are attached to the virtual MFA device. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * A list of tags that are attached to the virtual MFA device. For more information about tagging, see Tagging IAM resources in the * IAM User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public VirtualMFADevice withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList* A list of tags that are attached to the virtual MFA device. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *
* * @param tags * A list of tags that are attached to the virtual MFA device. For more information about tagging, see Tagging IAM resources in the * IAM User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public VirtualMFADevice withTags(java.util.Collection