Class: Aws::IAM::Types::TrackedActionLastAccessed
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::TrackedActionLastAccessed
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains details about the most recent attempt to access an action within the service.
This data type is used as a response element in the GetServiceLastAccessedDetails operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_name ⇒ String
The name of the tracked action to which access was attempted.
-
#last_accessed_entity ⇒ String
The Amazon Resource Name (ARN).
-
#last_accessed_region ⇒ String
The Region from which the authenticated entity (user or role) last attempted to access the tracked action.
-
#last_accessed_time ⇒ Time
The date and time, in [ISO 8601 date-time format], when an authenticated entity most recently attempted to access the tracked service.
Instance Attribute Details
#action_name ⇒ String
The name of the tracked action to which access was attempted. Tracked actions are actions that report activity to IAM.
10452 10453 10454 10455 10456 10457 10458 10459 |
# File 'lib/aws-sdk-iam/types.rb', line 10452 class TrackedActionLastAccessed < Struct.new( :action_name, :last_accessed_entity, :last_accessed_time, :last_accessed_region) SENSITIVE = [] include Aws::Structure end |
#last_accessed_entity ⇒ String
The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web Services resources.
For more information about ARNs, go to [Amazon Resource Names (ARNs)] in the *Amazon Web Services General Reference*.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
10452 10453 10454 10455 10456 10457 10458 10459 |
# File 'lib/aws-sdk-iam/types.rb', line 10452 class TrackedActionLastAccessed < Struct.new( :action_name, :last_accessed_entity, :last_accessed_time, :last_accessed_region) SENSITIVE = [] include Aws::Structure end |
#last_accessed_region ⇒ String
The Region from which the authenticated entity (user or role) last attempted to access the tracked action. Amazon Web Services does not report unauthenticated requests.
This field is null if no IAM entities attempted to access the service within the [tracking period].
10452 10453 10454 10455 10456 10457 10458 10459 |
# File 'lib/aws-sdk-iam/types.rb', line 10452 class TrackedActionLastAccessed < Struct.new( :action_name, :last_accessed_entity, :last_accessed_time, :last_accessed_region) SENSITIVE = [] include Aws::Structure end |
#last_accessed_time ⇒ Time
The date and time, in [ISO 8601 date-time format], when an authenticated entity most recently attempted to access the tracked service. Amazon Web Services does not report unauthenticated requests.
This field is null if no IAM entities attempted to access the service within the [tracking period].
[1]: www.iso.org/iso/iso8601 [2]: docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period
10452 10453 10454 10455 10456 10457 10458 10459 |
# File 'lib/aws-sdk-iam/types.rb', line 10452 class TrackedActionLastAccessed < Struct.new( :action_name, :last_accessed_entity, :last_accessed_time, :last_accessed_region) SENSITIVE = [] include Aws::Structure end |