Class: Aws::Glue::Types::SchemaVersionNumber

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

Overview

A structure containing the schema version information.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#latest_versionBoolean

The latest version available for the schema.

Returns:

  • (Boolean)


26947
26948
26949
26950
26951
26952
# File 'lib/aws-sdk-glue/types.rb', line 26947

class SchemaVersionNumber < Struct.new(
  :latest_version,
  :version_number)
  SENSITIVE = []
  include Aws::Structure
end

#version_numberInteger

The version number of the schema.

Returns:

  • (Integer)


26947
26948
26949
26950
26951
26952
# File 'lib/aws-sdk-glue/types.rb', line 26947

class SchemaVersionNumber < Struct.new(
  :latest_version,
  :version_number)
  SENSITIVE = []
  include Aws::Structure
end