List Namespaces
| quicksight_list_namespaces | R Documentation |
Lists the namespaces for the specified Amazon Web Services account¶
Description¶
Lists the namespaces for the specified Amazon Web Services account. This operation doesn't list deleted namespaces.
Usage¶
Arguments¶
AwsAccountId[required] The ID for the Amazon Web Services account that contains the Amazon QuickSight namespaces that you want to list.
NextTokenA unique pagination token that can be used in a subsequent request. You will receive a pagination token in the response body of a previous
ListNameSpacesAPI call if there is more data that can be returned. To receive the data, make anotherlist_namespacesAPI call with the returned token to retrieve the next page of data. Each token is valid for 24 hours. If you try to make alist_namespacesAPI call with an expired token, you will receive aâ HTTP 400 InvalidNextTokenExceptionâerror.MaxResultsThe 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
)