Class: Aws::CloudTrail::Types::DeleteTrailRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::DeleteTrailRequest
- Defined in:
- gems/aws-sdk-cloudtrail/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
1276 1277 1278 1279 1280 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 1276 class DeleteTrailRequest < Struct.new( :name) SENSITIVE = [] include Aws::Structure end |