Class: Aws::IAM::Types::DeleteVirtualMFADeviceRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iam/types.rb

Overview

Note:

When making an API call, you may pass DeleteVirtualMFADeviceRequest data as a hash:

{
  serial_number: "serialNumberType", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#serial_numberString

The serial number that uniquely identifies the MFA device. For virtual MFA devices, the serial number is the same as the ARN.

This parameter allows (per its [regex pattern]) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@:/-

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


2222
2223
2224
2225
# File 'lib/aws-sdk-iam/types.rb', line 2222

class DeleteVirtualMFADeviceRequest < Struct.new(
  :serial_number)
  include Aws::Structure
end