Learn R Programming

paws.analytics (version 0.1.11)

quicksight_list_namespaces: Lists the namespaces for the specified AWS account

Description

Lists the namespaces for the specified AWS account.

Usage

quicksight_list_namespaces(AwsAccountId, NextToken, MaxResults)

Arguments

AwsAccountId

[required] The ID for the AWS account that contains the QuickSight namespaces that you want to list.

NextToken

A pagination token that can be used in a subsequent request.

MaxResults

The maximum number of results to return.

Value

A list with the following syntax:

list(
  Namespaces = list(
    list(
      Name = "string",
      Arn = "string",
      CapacityRegion = "string",
      CreationStatus = "CREATED"|"CREATING"|"DELETING"|"RETRYABLE_FAILURE"|"NON_RETRYABLE_FAILURE",
      IdentityStore = "QUICKSIGHT",
      NamespaceError = list(
        Type = "PERMISSION_DENIED"|"INTERNAL_SERVICE_ERROR",
        Message = "string"
      )
    )
  ),
  NextToken = "string",
  RequestId = "string",
  Status = 123
)

Request syntax

svc$list_namespaces(
  AwsAccountId = "string",
  NextToken = "string",
  MaxResults = 123
)