Class: Aws::Glue::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Tag
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
The ‘Tag` object represents a label that you can assign to an Amazon Web Services resource. Each tag consists of a key and an optional value, both of which you define.
For more information about tags, and controlling access to resources in Glue, see [Amazon Web Services Tags in Glue] and [Specifying Glue Resource ARNs] in the developer guide.
[1]: docs.aws.amazon.com/glue/latest/dg/monitor-tags.html [2]: docs.aws.amazon.com/glue/latest/dg/glue-specifying-resource-arns.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The tag key.
-
#value ⇒ String
The tag value.
Instance Attribute Details
#key ⇒ String
The tag key. The key is required when you create a tag on an object. The key is case-sensitive, and must not contain the prefix aws.
25507 25508 25509 25510 25511 25512 |
# File 'lib/aws-sdk-glue/types.rb', line 25507 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The tag value. The value is optional when you create a tag on an object. The value is case-sensitive, and must not contain the prefix aws.
25507 25508 25509 25510 25511 25512 |
# File 'lib/aws-sdk-glue/types.rb', line 25507 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |