Skip to content

Create Namespace

quicksight_create_namespace R Documentation

(Enterprise edition only) Creates a new namespace for you to use with Amazon QuickSight

Description

(Enterprise edition only) Creates a new namespace for you to use with Amazon QuickSight.

A namespace allows you to isolate the Amazon QuickSight users and groups that are registered for that namespace. Users that access the namespace can share assets only with other users or groups in the same namespace. They can't see users and groups in other namespaces. You can create a namespace after your Amazon Web Services account is subscribed to Amazon QuickSight. The namespace must be unique within the Amazon Web Services account. By default, there is a limit of 100 namespaces per Amazon Web Services account. To increase your limit, create a ticket with Amazon Web Services Support.

Usage

quicksight_create_namespace(AwsAccountId, Namespace, IdentityStore,
  Tags)

Arguments

AwsAccountId

[required] The ID for the Amazon Web Services account that you want to create the Amazon QuickSight namespace in.

Namespace

[required] The name that you want to use to describe the new namespace.

IdentityStore

[required] Specifies the type of your user identity directory. Currently, this supports users with an identity type of QUICKSIGHT.

Tags

The tags that you want to associate with the namespace that you're creating.

Value

A list with the following syntax:

list(
  Arn = "string",
  Name = "string",
  CapacityRegion = "string",
  CreationStatus = "CREATED"|"CREATING"|"DELETING"|"RETRYABLE_FAILURE"|"NON_RETRYABLE_FAILURE",
  IdentityStore = "QUICKSIGHT",
  RequestId = "string",
  Status = 123
)

Request syntax

svc$create_namespace(
  AwsAccountId = "string",
  Namespace = "string",
  IdentityStore = "QUICKSIGHT",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)