Class: Aws::CloudTrail::Types::RemoveTagsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::RemoveTagsRequest
- Defined in:
- gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb
Overview
Specifies the tags to remove from a trail, event data store, dashboard, or channel.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_id ⇒ String
Specifies the ARN of the trail, event data store, dashboard, or channel from which tags should be removed.
-
#tags_list ⇒ Array<Types::Tag>
Specifies a list of tags to be removed.
Instance Attribute Details
#resource_id ⇒ String
Specifies the ARN of the trail, event data store, dashboard, or channel from which tags should be removed.
Example trail ARN format:
arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail
Example event data store ARN format:
arn:aws:cloudtrail:us-east-2:123456789012:eventdatastore/EXAMPLE-f852-4e8f-8bd1-bcf6cEXAMPLE
Example dashboard ARN format:
arn:aws:cloudtrail:us-east-1:123456789012:dashboard/exampleDash
Example channel ARN format:
arn:aws:cloudtrail:us-east-2:123456789012:channel/01234567890
4597 4598 4599 4600 4601 4602 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 4597 class RemoveTagsRequest < Struct.new( :resource_id, :tags_list) SENSITIVE = [] include Aws::Structure end |
#tags_list ⇒ Array<Types::Tag>
Specifies a list of tags to be removed.
4597 4598 4599 4600 4601 4602 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 4597 class RemoveTagsRequest < Struct.new( :resource_id, :tags_list) SENSITIVE = [] include Aws::Structure end |