Class: Aws::IAM::Types::MFADevice
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::MFADevice
- Defined in:
- gems/aws-sdk-iam/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.
Constant Summary collapse
- SENSITIVE =
[]
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.
7562 7563 7564 7565 7566 7567 7568 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 7562 class MFADevice < Struct.new( :user_name, :serial_number, :enable_date) SENSITIVE = [] 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.
7562 7563 7564 7565 7566 7567 7568 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 7562 class MFADevice < Struct.new( :user_name, :serial_number, :enable_date) SENSITIVE = [] include Aws::Structure end |