List Scheduled Actions
redshiftserverless_list_scheduled_actions | R Documentation |
Returns a list of scheduled actions¶
Description¶
Returns a list of scheduled actions. You can use the flags to filter the list of returned scheduled actions.
Usage¶
redshiftserverless_list_scheduled_actions(maxResults, namespaceName,
nextToken)
Arguments¶
maxResults |
An optional parameter that specifies the maximum number of
results to return. Use |
namespaceName |
The name of namespace associated with the scheduled action to retrieve. |
nextToken |
If |
Value¶
A list with the following syntax:
list(
nextToken = "string",
scheduledActions = list(
list(
namespaceName = "string",
scheduledActionName = "string"
)
)
)
Request syntax¶
svc$list_scheduled_actions(
maxResults = 123,
namespaceName = "string",
nextToken = "string"
)