Class: Aws::CloudFront::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::Tag
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
A complex type that contains Tag
key and Tag
value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
A string that contains
Tag
key. -
#value ⇒ String
A string that contains an optional
Tag
value.
Instance Attribute Details
#key ⇒ String
A string that contains Tag
key.
The string length should be between 1 and 128 characters. Valid
characters include a-z
, A-Z
, 0-9
, space, and the special
characters _ - . : / = + @
.
11760 11761 11762 11763 11764 11765 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 11760 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
A string that contains an optional Tag
value.
The string length should be between 0 and 256 characters. Valid
characters include a-z
, A-Z
, 0-9
, space, and the special
characters _ - . : / = + @
.
11760 11761 11762 11763 11764 11765 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 11760 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |