Class: Aws::CloudTrail::Types::GetTrailStatusRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::GetTrailStatusRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
Overview
The name of a trail about which you want the current status.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
Specifies the name or the CloudTrail ARN of the trail for which you are requesting status.
Instance Attribute Details
#name ⇒ String
Specifies the name or the CloudTrail ARN of the trail for which you are requesting status. To get the status of a shadow trail (a replication of the trail in another Region), you must specify its ARN. The following is the format of a trail ARN.
‘arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail`
2435 2436 2437 2438 2439 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 2435 class GetTrailStatusRequest < Struct.new( :name) SENSITIVE = [] include Aws::Structure end |