Skip to content

Get Schema

glue_get_schema R Documentation

Describes the specified schema in detail

Description

Describes the specified schema in detail.

Usage

glue_get_schema(SchemaId)

Arguments

SchemaId

[required] 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.

Value

A list with the following syntax:

list(
  RegistryName = "string",
  RegistryArn = "string",
  SchemaName = "string",
  SchemaArn = "string",
  Description = "string",
  DataFormat = "AVRO"|"JSON"|"PROTOBUF",
  Compatibility = "NONE"|"DISABLED"|"BACKWARD"|"BACKWARD_ALL"|"FORWARD"|"FORWARD_ALL"|"FULL"|"FULL_ALL",
  SchemaCheckpoint = 123,
  LatestSchemaVersion = 123,
  NextSchemaVersion = 123,
  SchemaStatus = "AVAILABLE"|"PENDING"|"DELETING",
  CreatedTime = "string",
  UpdatedTime = "string"
)

Request syntax

svc$get_schema(
  SchemaId = list(
    SchemaArn = "string",
    SchemaName = "string",
    RegistryName = "string"
  )
)