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

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

Overview

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)


1508
1509
1510
1511
1512
1513
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 1508

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

#valueString

The value of the tag.

Returns:

  • (String)


1508
1509
1510
1511
1512
1513
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 1508

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