Class: Aws::AppRunner::Types::Tag

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

Overview

Describes a tag that is applied to an App Runner resource. A tag is a metadata item consisting of a key-value pair.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of the tag.

Returns:

  • (String)


2794
2795
2796
2797
2798
2799
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2794

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

#valueString

The value of the tag.

Returns:

  • (String)


2794
2795
2796
2797
2798
2799
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2794

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