Class: Aws::CodeArtifact::Types::Tag

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

Overview

A tag is a key-value pair that can be used to manage, search for, or filter resources in CodeArtifact.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The tag key.

Returns:

  • (String)


4054
4055
4056
4057
4058
4059
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 4054

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

#valueString

The tag value.

Returns:

  • (String)


4054
4055
4056
4057
4058
4059
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 4054

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