Class: Aws::DirectConnect::Types::Tag

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

Overview

Note:

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

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

Information about a tag.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key.

Returns:

  • (String)


2442
2443
2444
2445
2446
# File 'lib/aws-sdk-directconnect/types.rb', line 2442

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

#valueString

The value.

Returns:

  • (String)


2442
2443
2444
2445
2446
# File 'lib/aws-sdk-directconnect/types.rb', line 2442

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