Class: Aws::Bedrock::Types::Tag

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

Overview

Definition of the key/value pair for a tag.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

Key for the tag.

Returns:

  • (String)


4114
4115
4116
4117
4118
4119
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4114

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

#valueString

Value for the tag.

Returns:

  • (String)


4114
4115
4116
4117
4118
4119
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4114

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