Class: Aws::APIGateway::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::TagResourceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Adds or updates a tag on a given resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN of a resource that can be tagged.
-
#tags ⇒ Hash<String,String>
The key-value map of strings.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of a resource that can be tagged.
5074 5075 5076 5077 5078 5079 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5074 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with ‘aws:`. The tag value can be up to 256 characters.
5074 5075 5076 5077 5078 5079 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5074 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |