List Usage Limits
| redshiftserverless_list_usage_limits | R Documentation |
Lists all usage limits within Amazon Redshift Serverless¶
Description¶
Lists all usage limits within Amazon Redshift Serverless.
Usage¶
Arguments¶
maxResultsAn optional parameter that specifies the maximum number of results to return. You can use
nextTokento get the next page of results. The default is 100.nextTokenIf your initial
list_usage_limitsoperation returns anextToken, you can include the returnednextTokenin followinglist_usage_limitsoperations, which returns results in the next page.resourceArnThe Amazon Resource Name (ARN) associated with the resource whose usage limits you want to list.
usageTypeThe Amazon Redshift Serverless feature whose limits you want to see.
Value¶
A list with the following syntax:
list(
nextToken = "string",
usageLimits = list(
list(
amount = 123,
breachAction = "log"|"emit-metric"|"deactivate",
period = "daily"|"weekly"|"monthly",
resourceArn = "string",
usageLimitArn = "string",
usageLimitId = "string",
usageType = "serverless-compute"|"cross-region-datasharing"
)
)
)