Class: Aws::Glue::Types::CheckSchemaVersionValidityInput

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 CheckSchemaVersionValidityInput data as a hash:

{
  data_format: "AVRO", # required, accepts AVRO
  schema_definition: "SchemaDefinitionString", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#data_formatString

The data format of the schema definition. Currently only ‘AVRO` is supported.

Returns:

  • (String)


1247
1248
1249
1250
1251
1252
# File 'lib/aws-sdk-glue/types.rb', line 1247

class CheckSchemaVersionValidityInput < Struct.new(
  :data_format,
  :schema_definition)
  SENSITIVE = []
  include Aws::Structure
end

#schema_definitionString

The definition of the schema that has to be validated.

Returns:

  • (String)


1247
1248
1249
1250
1251
1252
# File 'lib/aws-sdk-glue/types.rb', line 1247

class CheckSchemaVersionValidityInput < Struct.new(
  :data_format,
  :schema_definition)
  SENSITIVE = []
  include Aws::Structure
end