Class: Aws::CloudTrail::Types::TrailInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::TrailInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
Overview
Information about a CloudTrail trail, including the trail’s name, home Region, and Amazon Resource Name (ARN).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#home_region ⇒ String
The Amazon Web Services Region in which a trail was created.
-
#name ⇒ String
The name of a trail.
-
#trail_arn ⇒ String
The ARN of a trail.
Instance Attribute Details
#home_region ⇒ String
The Amazon Web Services Region in which a trail was created.
4893 4894 4895 4896 4897 4898 4899 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4893 class TrailInfo < Struct.new( :trail_arn, :name, :home_region) SENSITIVE = [] include Aws::Structure end |