Class: Aws::IAM::Types::MFADevice
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::MFADevice
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains information about an MFA device.
This data type is used as a response element in the ListMFADevices operation.
Instance Attribute Summary collapse
-
#enable_date ⇒ Time
The date when the MFA device was enabled for the user.
-
#serial_number ⇒ String
The serial number that uniquely identifies the MFA device.
-
#user_name ⇒ String
The user with whom the MFA device is associated.
Instance Attribute Details
#enable_date ⇒ Time
The date when the MFA device was enabled for the user.
5998 5999 6000 6001 6002 6003 |
# File 'lib/aws-sdk-iam/types.rb', line 5998 class MFADevice < Struct.new( :user_name, :serial_number, :enable_date) include Aws::Structure end |
#serial_number ⇒ String
The serial number that uniquely identifies the MFA device. For virtual MFA devices, the serial number is the device ARN.
5998 5999 6000 6001 6002 6003 |
# File 'lib/aws-sdk-iam/types.rb', line 5998 class MFADevice < Struct.new( :user_name, :serial_number, :enable_date) include Aws::Structure end |