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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codebuild/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

#key ⇒ String

The tag's key.

Returns:

  • (String)


7361
7362
7363
7364
7365
7366
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 7361

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

#value ⇒ String

The tag's value.

Returns:

  • (String)


7361
7362
7363
7364
7365
7366
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 7361

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