Class: Aws::Glue::Types::GetSchemaVersionInput

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

{
  schema_id: {
    schema_arn: "GlueResourceArn",
    schema_name: "SchemaRegistryNameString",
    registry_name: "SchemaRegistryNameString",
  },
  schema_version_id: "SchemaVersionIdString",
  schema_version_number: {
    latest_version: false,
    version_number: 1,
  },
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#schema_idTypes::SchemaId

This is a wrapper structure to contain schema identity fields. The structure contains:

  • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either ‘SchemaArn` or `SchemaName` and `RegistryName` has to be provided.

  • SchemaId$SchemaName: The name of the schema. Either ‘SchemaArn` or `SchemaName` and `RegistryName` has to be provided.

Returns:



8755
8756
8757
8758
8759
8760
8761
# File 'lib/aws-sdk-glue/types.rb', line 8755

class GetSchemaVersionInput < Struct.new(
  :schema_id,
  :schema_version_id,
  :schema_version_number)
  SENSITIVE = []
  include Aws::Structure
end

#schema_version_idString

The ‘SchemaVersionId` of the schema version. This field is required for fetching by schema ID. Either this or the `SchemaId` wrapper has to be provided.

Returns:

  • (String)


8755
8756
8757
8758
8759
8760
8761
# File 'lib/aws-sdk-glue/types.rb', line 8755

class GetSchemaVersionInput < Struct.new(
  :schema_id,
  :schema_version_id,
  :schema_version_number)
  SENSITIVE = []
  include Aws::Structure
end

#schema_version_numberTypes::SchemaVersionNumber

The version number of the schema.



8755
8756
8757
8758
8759
8760
8761
# File 'lib/aws-sdk-glue/types.rb', line 8755

class GetSchemaVersionInput < Struct.new(
  :schema_id,
  :schema_version_id,
  :schema_version_number)
  SENSITIVE = []
  include Aws::Structure
end