Learn R Programming

paws.analytics (version 0.1.12)

glue_delete_schema: Deletes the entire schema set, including the schema set and all of its versions

Description

Deletes the entire schema set, including the schema set and all of its versions. To get the status of the delete operation, you can call get_schema API after the asynchronous call. Deleting a registry will disable all online operations for the schema, such as the get_schema_by_definition, and register_schema_version APIs.

Usage

glue_delete_schema(SchemaId)

Value

A list with the following syntax:

list(
  SchemaArn = "string",
  SchemaName = "string",
  Status = "AVAILABLE"|"PENDING"|"DELETING"
)

Arguments

SchemaId

[required] This is a wrapper structure that may contain the schema name and Amazon Resource Name (ARN).

Request syntax

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