Skip to content

List Namespaces

redshiftserverless_list_namespaces R Documentation

Returns information about a list of specified namespaces

Description

Returns information about a list of specified namespaces.

Usage

redshiftserverless_list_namespaces(maxResults, nextToken)

Arguments

maxResults

An optional parameter that specifies the maximum number of results to return. You can use nextToken to display the next page of results.

nextToken

If your initial list_namespaces operation returns a nextToken, you can include the returned nextToken in following list_namespaces operations, which returns results in the next page.

Value

A list with the following syntax:

list(
  namespaces = list(
    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"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_namespaces(
  maxResults = 123,
  nextToken = "string"
)