Class: Aws::IAM::Types::DeleteVirtualMFADeviceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::DeleteVirtualMFADeviceRequest
- 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
-
#serial_number ⇒ String
The serial number that uniquely identifies the MFA device.
Instance Attribute Details
#serial_number ⇒ String
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: =,.@:/-
2285 2286 2287 2288 |
# File 'lib/aws-sdk-iam/types.rb', line 2285 class DeleteVirtualMFADeviceRequest < Struct.new( :serial_number) include Aws::Structure end |