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)


3046
3047
3048
3049
3050
3051
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 3046

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

#valueString

Value for the tag.

Returns:

  • (String)


3046
3047
3048
3049
3050
3051
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 3046

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