You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::XRay::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::TagResourceRequest
- Defined in:
- (unknown)
Overview
When passing TagResourceRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
resource_arn: "AmazonResourceName", # required
tags: [ # required
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.
-
#tags ⇒ Array<Types::Tag>
A map that contains one or more tag keys and tag values to attach to an X-Ray group or sampling rule.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.
#tags ⇒ Array<Types::Tag>
A map that contains one or more tag keys and tag values to attach to an X-Ray group or sampling rule. For more information about ways to use tags, see Tagging AWS resources in the AWS General Reference.
The following restrictions apply to tags:
Maximum number of user-applied tags per resource: 50
Maximum tag key length: 128 Unicode characters
Maximum tag value length: 256 Unicode characters
Valid values for key and value: a-z, A-Z, 0-9, space, and the following characters: _ . : / = + - and @
Tag keys and values are case sensitive.
Don\'t use
aws:as a prefix for keys; it\'s reserved for AWS use. You cannot edit or delete system tags.