Class: Aws::MediaConvert::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::UntagResourceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
Overview
To remove tags from a resource, send a request with the Amazon Resource Name (ARN) of the resource and the keys of the tags that you want to remove.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the resource that you want to remove tags from.
-
#tag_keys ⇒ Array<String>
The keys of the tags that you want to remove from the resource.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the resource that you want to remove tags from. To get the ARN, send a GET request with the resource name.
13132 13133 13134 13135 13136 13137 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 13132 class UntagResourceRequest < Struct.new( :arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The keys of the tags that you want to remove from the resource.
13132 13133 13134 13135 13136 13137 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 13132 class UntagResourceRequest < Struct.new( :arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |