Class: Aws::AccessAnalyzer::Types::Trail
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::Trail
- Defined in:
- gems/aws-sdk-accessanalyzer/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
orfalse
. -
#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.
4019 4020 4021 4022 4023 4024 4025 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 4019 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
.
4019 4020 4021 4022 4023 4024 4025 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 4019 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.
4019 4020 4021 4022 4023 4024 4025 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 4019 class Trail < Struct.new( :cloud_trail_arn, :regions, :all_regions) SENSITIVE = [] include Aws::Structure end |