Learn R Programming

paws.analytics (version 0.1.11)

quicksight_create_namespace: (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 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 AWS account is subscribed to QuickSight. The namespace must be unique within the AWS account. By default, there is a limit of 100 namespaces per AWS account. To increase your limit, create a ticket with AWS Support.

Usage

quicksight_create_namespace(AwsAccountId, Namespace, IdentityStore,
  Tags)

Arguments

AwsAccountId

[required] The ID for the AWS account that you want to create the 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"
    )
  )
)