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`
1424 1425 1426 1427 1428 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 1424 class DeleteTrailRequest < Struct.new( :name) SENSITIVE = [] include Aws::Structure end |