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, 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.
5129 5130 5131 5132 5133 5134 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 5129 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |