Skip to content

Get Namespace

redshiftserverless_get_namespace R Documentation

Returns information about a namespace in Amazon Redshift Serverless

Description

Returns information about a namespace in Amazon Redshift Serverless.

Usage

redshiftserverless_get_namespace(namespaceName)

Arguments

namespaceName

[required] The name of the namespace to retrieve information for.

Value

A list with the following syntax:

list(
  namespace = list(
    adminPasswordSecretArn = "string",
    adminPasswordSecretKmsKeyId = "string",
    adminUsername = "string",
    creationDate = as.POSIXct(
      "2015-01-01"
    ),
    dbName = "string",
    defaultIamRoleArn = "string",
    iamRoles = list(
      "string"
    ),
    kmsKeyId = "string",
    logExports = list(
      "useractivitylog"|"userlog"|"connectionlog"
    ),
    namespaceArn = "string",
    namespaceId = "string",
    namespaceName = "string",
    status = "AVAILABLE"|"MODIFYING"|"DELETING"
  )
)

Request syntax

svc$get_namespace(
  namespaceName = "string"
)