Skip to content

Register Namespace

redshift_register_namespace R Documentation

Registers a cluster or serverless namespace to the Amazon Web Services Glue Data Catalog

Description

Registers a cluster or serverless namespace to the Amazon Web Services Glue Data Catalog.

Usage

redshift_register_namespace(NamespaceIdentifier, ConsumerIdentifiers)

Arguments

NamespaceIdentifier

[required] The unique identifier of the cluster or serverless namespace that you want to register.

ConsumerIdentifiers

[required] An array containing the ID of the consumer account that you want to register the namespace to.

Value

A list with the following syntax:

list(
  Status = "Registering"|"Deregistering"
)

Request syntax

svc$register_namespace(
  NamespaceIdentifier = list(
    ServerlessIdentifier = list(
      NamespaceIdentifier = "string",
      WorkgroupIdentifier = "string"
    ),
    ProvisionedIdentifier = list(
      ClusterIdentifier = "string"
    )
  ),
  ConsumerIdentifiers = list(
    "string"
  )
)