Class: Aws::GuardDuty::Types::Session
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::Session
- Defined in:
- gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb
Overview
Contains information about the authenticated session.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_time ⇒ Time
The timestamp for when the session was created.
-
#issuer ⇒ String
Identifier of the session issuer.
-
#mfa_status ⇒ String
Indicates whether or not multi-factor authencation (MFA) was used during authentication.
-
#uid ⇒ String
The unique identifier of the session.
Instance Attribute Details
#created_time ⇒ Time
The timestamp for when the session was created.
In Amazon Web Services CloudTrail, you can find this value as
userIdentity.sessionContext.attributes.creationDate
.
8815 8816 8817 8818 8819 8820 8821 8822 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 8815 class Session < Struct.new( :uid, :mfa_status, :created_time, :issuer) SENSITIVE = [] include Aws::Structure end |
#issuer ⇒ String
Identifier of the session issuer.
In Amazon Web Services CloudTrail, you can find this value as
userIdentity.sessionContext.sessionIssuer.arn
.
8815 8816 8817 8818 8819 8820 8821 8822 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 8815 class Session < Struct.new( :uid, :mfa_status, :created_time, :issuer) SENSITIVE = [] include Aws::Structure end |
#mfa_status ⇒ String
Indicates whether or not multi-factor authencation (MFA) was used during authentication.
In Amazon Web Services CloudTrail, you can find this value as
userIdentity.sessionContext.attributes.mfaAuthenticated
.
8815 8816 8817 8818 8819 8820 8821 8822 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 8815 class Session < Struct.new( :uid, :mfa_status, :created_time, :issuer) SENSITIVE = [] include Aws::Structure end |