Class: Aws::Route53Domains::Types::Tag

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb

Overview

Each tag includes the following elements.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key (name) of a tag.

Valid values: A-Z, a-z, 0-9, space, ".:/=+\-@"

Constraints: Each key can be 1-128 characters long.

Returns:

  • (String)


2673
2674
2675
2676
2677
2678
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 2673

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

#valueString

The value of a tag.

Valid values: A-Z, a-z, 0-9, space, ".:/=+\-@"

Constraints: Each value can be 0-256 characters long.

Returns:

  • (String)


2673
2674
2675
2676
2677
2678
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 2673

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