Class: Aws::CodeBuild::Types::Tag

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

Overview

A tag, consisting of a key and a value.

This tag is available for use by Amazon Web Services services that support tags in CodeBuild.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The tag’s key.

Returns:

  • (String)


6112
6113
6114
6115
6116
6117
# File 'lib/aws-sdk-codebuild/types.rb', line 6112

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

#valueString

The tag’s value.

Returns:

  • (String)


6112
6113
6114
6115
6116
6117
# File 'lib/aws-sdk-codebuild/types.rb', line 6112

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