Class: Aws::EventBridge::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::Tag
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/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 =
[]
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.
4931 4932 4933 4934 4935 4936 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 4931 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |