Class: Aws::CloudFront::Types::Tag

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudfront/types.rb

Overview

Note:

When making an API call, you may pass Tag data as a hash:

{
  key: "TagKey", # required
  value: "TagValue",
}

A complex type that contains ‘Tag` key and `Tag` value.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

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 `_ - . : / = + @`.

Returns:

  • (String)


6747
6748
6749
6750
6751
# File 'lib/aws-sdk-cloudfront/types.rb', line 6747

class Tag < Struct.new(
  :key,
  :value)
  include Aws::Structure
end

#valueString

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 `_ - . : / = + @`.

Returns:

  • (String)


6747
6748
6749
6750
6751
# File 'lib/aws-sdk-cloudfront/types.rb', line 6747

class Tag < Struct.new(
  :key,
  :value)
  include Aws::Structure
end