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.
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.
7367 7368 7369 7370 7371 7372 7373 |
# File 'lib/aws-sdk-iam/types.rb', line 7367 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.
7367 7368 7369 7370 7371 7372 7373 |
# File 'lib/aws-sdk-iam/types.rb', line 7367 class MFADevice < Struct.new( :user_name, :serial_number, :enable_date) SENSITIVE = [] include Aws::Structure end |