Class: Aws::Pipes::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::Tag
- Defined in:
- gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb
Overview
A key-value pair associated with an Amazon Web Services resource. In EventBridge, rules and event buses support tagging.
Constant Summary collapse
- SENSITIVE =
[:value]
Instance Attribute Summary collapse
-
#key ⇒ String
A string you can use to assign a value.
-
#value ⇒ String
The value for the specified tag key.
Instance Attribute Details
#key ⇒ String
A string you can use to assign a value. The combination of tag keys and values can help you organize and categorize your resources.
3169 3170 3171 3172 3173 3174 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 3169 class Tag < Struct.new( :key, :value) SENSITIVE = [:value] include Aws::Structure end |