Interface VirtualMFADevice.Builder

    • Method Detail

      • serialNumber

        VirtualMFADevice.Builder serialNumber​(String serialNumber)

        The serial number associated with VirtualMFADevice.

        Parameters:
        serialNumber - The serial number associated with VirtualMFADevice.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • base32StringSeed

        VirtualMFADevice.Builder base32StringSeed​(SdkBytes base32StringSeed)

        The base32 seed defined as specified in RFC3548. The Base32StringSeed is base32-encoded.

        Parameters:
        base32StringSeed - The base32 seed defined as specified in RFC3548. The Base32StringSeed is base32-encoded.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • qrCodePNG

        VirtualMFADevice.Builder qrCodePNG​(SdkBytes 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.

        Parameters:
        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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • user

        VirtualMFADevice.Builder user​(User user)

        The IAM user associated with this virtual MFA device.

        Parameters:
        user - The IAM user associated with this virtual MFA device.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • enableDate

        VirtualMFADevice.Builder enableDate​(Instant enableDate)

        The date and time on which the virtual MFA device was enabled.

        Parameters:
        enableDate - The date and time on which the virtual MFA device was enabled.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        VirtualMFADevice.Builder tags​(Collection<Tag> 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.

        Parameters:
        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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        VirtualMFADevice.Builder tags​(Tag... 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.

        Parameters:
        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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        VirtualMFADevice.Builder tags​(Consumer<Tag.Builder>... 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.

        This is a convenience method that creates an instance of the Tag.Builder avoiding the need to create one manually via Tag.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #tags(List).

        Parameters:
        tags - a consumer that will call methods on Tag.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #tags(java.util.Collection)