Class: Aws::AppConfig::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfig::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN of the resource for which to retrieve tags.
-
#tags ⇒ Hash<String,String>
The key-value string map.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of the resource for which to retrieve tags.
2473 2474 2475 2476 2477 2478 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 2473 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The key-value string map. 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.
2473 2474 2475 2476 2477 2478 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 2473 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |