Class: Aws::Glue::Types::IcebergInput

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

Overview

A structure that defines an Apache Iceberg metadata table to create in the catalog.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#metadata_operationString

A required metadata operation. Can only be set to ‘CREATE`.

Returns:

  • (String)


12790
12791
12792
12793
12794
12795
# File 'lib/aws-sdk-glue/types.rb', line 12790

class IcebergInput < Struct.new(
  :metadata_operation,
  :version)
  SENSITIVE = []
  include Aws::Structure
end

#versionString

The table version for the Iceberg table. Defaults to 2.

Returns:

  • (String)


12790
12791
12792
12793
12794
12795
# File 'lib/aws-sdk-glue/types.rb', line 12790

class IcebergInput < Struct.new(
  :metadata_operation,
  :version)
  SENSITIVE = []
  include Aws::Structure
end