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.
3175 3176 3177 3178 3179 3180 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 3175 class Tag < Struct.new( :key, :value) SENSITIVE = [:value] include Aws::Structure end |