Class: Aws::Comprehend::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::UntagResourceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the given Amazon Comprehend resource from which you want to remove the tags.
-
#tag_keys ⇒ Array<String>
The initial part of a key-value pair that forms a tag being removed from a given resource.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the given Amazon Comprehend resource from which you want to remove the tags.
8554 8555 8556 8557 8558 8559 |
# File 'lib/aws-sdk-comprehend/types.rb', line 8554 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The initial part of a key-value pair that forms a tag being removed from a given resource. For example, a tag with “Sales” as the key might be added to a resource to indicate its use by the sales department. Keys must be unique and cannot be duplicated for a particular resource.
8554 8555 8556 8557 8558 8559 |
# File 'lib/aws-sdk-comprehend/types.rb', line 8554 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |