Class: Aws::CloudTrail::Types::DeleteTrailRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::DeleteTrailRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
Overview
The request that specifies the name of a trail to delete.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
Specifies the name or the CloudTrail ARN of the trail to be deleted.
Instance Attribute Details
#name ⇒ String
Specifies the name or the CloudTrail ARN of the trail to be deleted. The following is the format of a trail ARN. ‘arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail`
1325 1326 1327 1328 1329 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 1325 class DeleteTrailRequest < Struct.new( :name) SENSITIVE = [] include Aws::Structure end |