Class: Aws::ResourceGroupsTaggingAPI::Types::TagResourcesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceGroupsTaggingAPI::Types::TagResourcesInput
- Defined in:
- gems/aws-sdk-resourcegroupstaggingapi/lib/aws-sdk-resourcegroupstaggingapi/types.rb
Overview
Note:
When making an API call, you may pass TagResourcesInput data as a hash:
{
resource_arn_list: ["ResourceARN"], # required
tags: { # required
"TagKey" => "TagValue",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn_list ⇒ Array<String>
Specifies the list of ARNs of the resources that you want to apply tags to.
-
#tags ⇒ Hash<String,String>
Specifies a list of tags that you want to add to the specified resources.
Instance Attribute Details
#resource_arn_list ⇒ Array<String>
Specifies the list of ARNs of the resources that you want to apply tags to.
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.
846 847 848 849 850 851 |
# File 'gems/aws-sdk-resourcegroupstaggingapi/lib/aws-sdk-resourcegroupstaggingapi/types.rb', line 846 class TagResourcesInput < Struct.new( :resource_arn_list, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Specifies a list of tags that you want to add to the specified resources. A tag consists of a key and a value that you define.
846 847 848 849 850 851 |
# File 'gems/aws-sdk-resourcegroupstaggingapi/lib/aws-sdk-resourcegroupstaggingapi/types.rb', line 846 class TagResourcesInput < Struct.new( :resource_arn_list, :tags) SENSITIVE = [] include Aws::Structure end |