Skip to content

List Schemas

glue_list_schemas R Documentation

Returns a list of schemas with minimal details

Description

Returns a list of schemas with minimal details. Schemas in Deleting status will not be included in the results. Empty results will be returned if there are no schemas available.

When the RegistryId is not provided, all the schemas across registries will be part of the API response.

Usage

glue_list_schemas(RegistryId, MaxResults, NextToken)

Arguments

RegistryId

A wrapper structure that may contain the registry name and Amazon Resource Name (ARN).

MaxResults

Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.

NextToken

A continuation token, if this is a continuation call.

Value

A list with the following syntax:

list(
  Schemas = list(
    list(
      RegistryName = "string",
      SchemaName = "string",
      SchemaArn = "string",
      Description = "string",
      SchemaStatus = "AVAILABLE"|"PENDING"|"DELETING",
      CreatedTime = "string",
      UpdatedTime = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_schemas(
  RegistryId = list(
    RegistryName = "string",
    RegistryArn = "string"
  ),
  MaxResults = 123,
  NextToken = "string"
)