List Brands
quicksight_list_brands | R Documentation |
Lists all brands in an Amazon QuickSight account¶
Description¶
Lists all brands in an Amazon QuickSight account.
Usage¶
quicksight_list_brands(AwsAccountId, MaxResults, NextToken)
Arguments¶
AwsAccountId |
[required] The ID of the Amazon Web Services account that owns the brands that you want to list. |
MaxResults |
The maximum number of results to be returned in a single request. |
NextToken |
The token for the next set of results, or null if there are no more results. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
Brands = list(
list(
Arn = "string",
BrandId = "string",
BrandName = "string",
Description = "string",
BrandStatus = "CREATE_IN_PROGRESS"|"CREATE_SUCCEEDED"|"CREATE_FAILED"|"DELETE_IN_PROGRESS"|"DELETE_FAILED",
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastUpdatedTime = as.POSIXct(
"2015-01-01"
)
)
)
)
Request syntax¶
svc$list_brands(
AwsAccountId = "string",
MaxResults = 123,
NextToken = "string"
)