Class: Aws::ACM::Types::Tag

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

Overview

Note:

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

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

A key-value pair that identifies or specifies metadata about an ACM resource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of the tag.

Returns:

  • (String)

1493
1494
1495
1496
1497
1498
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 1493

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

#valueString

The value of the tag.

Returns:

  • (String)

1493
1494
1495
1496
1497
1498
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 1493

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