Class: Aws::AccessAnalyzer::Types::Trail
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::Trail
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-accessanalyzer/types.rb
Overview
Contains details about the CloudTrail trail being analyzed to generate a policy.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#all_regions ⇒ Boolean
Possible values are ‘true` or `false`.
-
#cloud_trail_arn ⇒ String
Specifies the ARN of the trail.
-
#regions ⇒ Array<String>
A list of regions to get CloudTrail data from and analyze to generate a policy.
Instance Attribute Details
#all_regions ⇒ Boolean
Possible values are ‘true` or `false`. If set to `true`, IAM Access Analyzer retrieves CloudTrail data from all regions to analyze and generate a policy.
3934 3935 3936 3937 3938 3939 3940 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 3934 class Trail < Struct.new( :cloud_trail_arn, :regions, :all_regions) SENSITIVE = [] include Aws::Structure end |
#cloud_trail_arn ⇒ String
Specifies the ARN of the trail. The format of a trail ARN is ‘arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail`.
3934 3935 3936 3937 3938 3939 3940 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 3934 class Trail < Struct.new( :cloud_trail_arn, :regions, :all_regions) SENSITIVE = [] include Aws::Structure end |
#regions ⇒ Array<String>
A list of regions to get CloudTrail data from and analyze to generate a policy.
3934 3935 3936 3937 3938 3939 3940 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 3934 class Trail < Struct.new( :cloud_trail_arn, :regions, :all_regions) SENSITIVE = [] include Aws::Structure end |