Class: Aws::Proton::Types::Tag

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

Overview

A description of a resource tag.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of the resource tag.

Returns:

  • (String)


5677
5678
5679
5680
5681
5682
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 5677

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

#valueString

The value of the resource tag.

Returns:

  • (String)


5677
5678
5679
5680
5681
5682
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 5677

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