List Managed Workgroups
redshiftserverless_list_managed_workgroups | R Documentation |
Returns information about a list of specified managed workgroups in your account¶
Description¶
Returns information about a list of specified managed workgroups in your account.
Usage¶
redshiftserverless_list_managed_workgroups(maxResults, nextToken,
sourceArn)
Arguments¶
maxResults |
An optional parameter that specifies the maximum number of results to return. You can use nextToken to display the next page of results. |
nextToken |
If your initial ListManagedWorkgroups operation returns a nextToken, you can include the returned nextToken in following ListManagedWorkgroups operations, which returns results in the next page. |
sourceArn |
The Amazon Resource Name (ARN) for the managed workgroup in the AWS Glue Data Catalog. |
Value¶
A list with the following syntax:
list(
managedWorkgroups = list(
list(
creationDate = as.POSIXct(
"2015-01-01"
),
managedWorkgroupId = "string",
managedWorkgroupName = "string",
sourceArn = "string",
status = "CREATING"|"DELETING"|"MODIFYING"|"AVAILABLE"|"NOT_AVAILABLE"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_managed_workgroups(
maxResults = 123,
nextToken = "string",
sourceArn = "string"
)