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)


16011
16012
16013
16014
16015
16016
# File 'lib/aws-sdk-glue/types.rb', line 16011

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

#metadata_valueString

A metadata key’s corresponding value.

Returns:

  • (String)


16011
16012
16013
16014
16015
16016
# File 'lib/aws-sdk-glue/types.rb', line 16011

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