Class: Aws::FSx::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::Tag
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
Specifies a key-value pair for a resource tag.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
A value that specifies the
TagKey
, the name of the tag. -
#value ⇒ String
A value that specifies the
TagValue
, the value assigned to the corresponding tag key.
Instance Attribute Details
#key ⇒ String
A value that specifies the TagKey
, the name of the tag. Tag keys
must be unique for the resource to which they are attached.
8676 8677 8678 8679 8680 8681 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 8676 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
A value that specifies the TagValue
, the value assigned to the
corresponding tag key. Tag values can be null and don't have to be
unique in a tag set. For example, you can have a key-value pair in a
tag set of finances : April
and also of payroll : April
.
8676 8677 8678 8679 8680 8681 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 8676 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |