Class: Aws::CloudTrail::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::Tag
- Defined in:
- gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb
Overview
A custom key-value pair associated with a resource such as a CloudTrail trail, event data store, dashboard, or channel.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key in a key-value pair.
-
#value ⇒ String
The value in a key-value pair of a tag.
Instance Attribute Details
#key ⇒ String
The key in a key-value pair. The key must be must be no longer than 128 Unicode characters. The key must be unique for the resource to which it applies.
5046 5047 5048 5049 5050 5051 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 5046 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |