Class: Aws::ResourceGroupsTaggingAPI::Types::UntagResourcesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceGroupsTaggingAPI::Types::UntagResourcesInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-resourcegroupstaggingapi/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn_list ⇒ Array<String>
Specifies a list of ARNs of the resources that you want to remove tags from.
-
#tag_keys ⇒ Array<String>
Specifies a list of tag keys that you want to remove from the specified resources.
Instance Attribute Details
#resource_arn_list ⇒ Array<String>
Specifies a list of ARNs of the resources that you want to remove tags from.
An ARN (Amazon Resource Name) uniquely identifies a resource. For more information, see [Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces] in the *Amazon Web Services General Reference*.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
831 832 833 834 835 836 |
# File 'lib/aws-sdk-resourcegroupstaggingapi/types.rb', line 831 class UntagResourcesInput < Struct.new( :resource_arn_list, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
Specifies a list of tag keys that you want to remove from the specified resources.
831 832 833 834 835 836 |
# File 'lib/aws-sdk-resourcegroupstaggingapi/types.rb', line 831 class UntagResourcesInput < Struct.new( :resource_arn_list, :tag_keys) SENSITIVE = [] include Aws::Structure end |