Class: Aws::Glue::Types::MetadataKeyValuePair

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

Overview

A structure containing a key value pair for metadata.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#metadata_keyString

A metadata key.

Returns:

  • (String)


19657
19658
19659
19660
19661
19662
# File 'lib/aws-sdk-glue/types.rb', line 19657

class MetadataKeyValuePair < Struct.new(
  :metadata_key,
  :metadata_value)
  SENSITIVE = []
  include Aws::Structure
end

#metadata_valueString

A metadata key’s corresponding value.

Returns:

  • (String)


19657
19658
19659
19660
19661
19662
# File 'lib/aws-sdk-glue/types.rb', line 19657

class MetadataKeyValuePair < Struct.new(
  :metadata_key,
  :metadata_value)
  SENSITIVE = []
  include Aws::Structure
end