Class: Aws::CloudWatch::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::Tag
- Defined in:
- gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb
Overview
A key-value pair associated with a CloudWatch resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
A string that you can use to assign a value.
-
#value ⇒ String
The value for the specified tag key.
Instance Attribute Details
#key ⇒ String
A string that you can use to assign a value. The combination of tag keys and values can help you organize and categorize your resources.
4459 4460 4461 4462 4463 4464 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb', line 4459 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |