Class: Aws::Glue::Types::Datatype

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

Overview

Note:

When making an API call, you may pass Datatype data as a hash:

{
  id: "GenericLimitedString", # required
  label: "GenericLimitedString", # required
}

A structure representing the datatype of the value.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The datatype of the value.

Returns:

  • (String)


7860
7861
7862
7863
7864
7865
# File 'lib/aws-sdk-glue/types.rb', line 7860

class Datatype < Struct.new(
  :id,
  :label)
  SENSITIVE = []
  include Aws::Structure
end

#labelString

A label assigned to the datatype.

Returns:

  • (String)


7860
7861
7862
7863
7864
7865
# File 'lib/aws-sdk-glue/types.rb', line 7860

class Datatype < Struct.new(
  :id,
  :label)
  SENSITIVE = []
  include Aws::Structure
end