Deregister Namespace
redshift_deregister_namespace | R Documentation |
Deregisters a cluster or serverless namespace from the Amazon Web Services Glue Data Catalog¶
Description¶
Deregisters a cluster or serverless namespace from the Amazon Web Services Glue Data Catalog.
Usage¶
redshift_deregister_namespace(NamespaceIdentifier, ConsumerIdentifiers)
Arguments¶
NamespaceIdentifier |
[required] The unique identifier of the cluster or serverless namespace that you want to deregister. |
ConsumerIdentifiers |
[required] An array containing the ID of the consumer account that you want to deregister the cluster or serverless namespace from. |
Value¶
A list with the following syntax:
list(
Status = "Registering"|"Deregistering"
)
Request syntax¶
svc$deregister_namespace(
NamespaceIdentifier = list(
ServerlessIdentifier = list(
NamespaceIdentifier = "string",
WorkgroupIdentifier = "string"
),
ProvisionedIdentifier = list(
ClusterIdentifier = "string"
)
),
ConsumerIdentifiers = list(
"string"
)
)