Class: Aws::IVS::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVS::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
ARN of the resource for which tags are to be added or updated.
-
#tags ⇒ Hash<String,String>
Array of tags to be added or updated.
Instance Attribute Details
#resource_arn ⇒ String
ARN of the resource for which tags are to be added or updated. The ARN must be URL-encoded.
1637 1638 1639 1640 1641 1642 |
# File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1637 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Array of tags to be added or updated. Array of maps, each of the
form string:string (key:value)
. See Tagging Amazon Web Services
Resources for more information, including restrictions that
apply to tags and "Tag naming limits and requirements"; Amazon IVS
has no service-specific constraints beyond what is documented there.
1637 1638 1639 1640 1641 1642 |
# File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1637 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |