Class: Aws::CodePipeline::Types::Tag

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

Overview

A tag is a key-value pair that is used to manage the resource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The tag’s key.

Returns:

  • (String)


4235
4236
4237
4238
4239
4240
# File 'lib/aws-sdk-codepipeline/types.rb', line 4235

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

#valueString

The tag’s value.

Returns:

  • (String)


4235
4236
4237
4238
4239
4240
# File 'lib/aws-sdk-codepipeline/types.rb', line 4235

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