Class: Aws::CostExplorer::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource.
-
#resource_tag_keys ⇒ Array<String>
A list of tag keys associated with tags that need to be removed from the resource.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource. For a list of supported resources, see ResourceTag.
7162 7163 7164 7165 7166 7167 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 7162 class UntagResourceRequest < Struct.new( :resource_arn, :resource_tag_keys) SENSITIVE = [] include Aws::Structure end |
#resource_tag_keys ⇒ Array<String>
A list of tag keys associated with tags that need to be removed from the resource. If you specify a tag key that doesn't exist, it's ignored. Although the maximum number of array members is 200, user-tag maximum is 50. The remaining are reserved for Amazon Web Services use.
7162 7163 7164 7165 7166 7167 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 7162 class UntagResourceRequest < Struct.new( :resource_arn, :resource_tag_keys) SENSITIVE = [] include Aws::Structure end |