Class: Aws::SecurityHub::Types::AwsIamAccessKeySessionContextAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsIamAccessKeySessionContextAttributes
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsIamAccessKeySessionContextAttributes data as a hash:
{
mfa_authenticated: false,
creation_date: "NonEmptyString",
}
Attributes of the session that the key was used for.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date ⇒ String
Indicates when the session was created.
-
#mfa_authenticated ⇒ Boolean
Indicates whether the session used multi-factor authentication (MFA).
Instance Attribute Details
#creation_date ⇒ String
Indicates when the session was created.
Uses the date-time
format specified in RFC 3339 section 5.6,
Internet Date/Time Format. The value cannot contain spaces. For
example, 2020-03-22T13:22:13.933Z
.
12544 12545 12546 12547 12548 12549 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 12544 class AwsIamAccessKeySessionContextAttributes < Struct.new( :mfa_authenticated, :creation_date) SENSITIVE = [] include Aws::Structure end |
#mfa_authenticated ⇒ Boolean
Indicates whether the session used multi-factor authentication (MFA).
12544 12545 12546 12547 12548 12549 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 12544 class AwsIamAccessKeySessionContextAttributes < Struct.new( :mfa_authenticated, :creation_date) SENSITIVE = [] include Aws::Structure end |