List Schedules
| eventbridgescheduler_list_schedules | R Documentation |
Returns a paginated list of your EventBridge Scheduler schedules¶
Description¶
Returns a paginated list of your EventBridge Scheduler schedules.
Usage¶
Arguments¶
GroupNameIf specified, only lists the schedules whose associated schedule group matches the given filter.
MaxResultsIf specified, limits the number of results returned by this operation. The operation also returns a
NextTokenwhich you can use in a subsequent operation to retrieve the next set of results.NamePrefixSchedule name prefix to return the filtered list of resources.
NextTokenThe token returned by a previous call to retrieve the next set of results.
StateIf specified, only lists the schedules whose current state matches the given filter.
Value¶
A list with the following syntax:
list(
NextToken = "string",
Schedules = list(
list(
Arn = "string",
CreationDate = as.POSIXct(
"2015-01-01"
),
GroupName = "string",
LastModificationDate = as.POSIXct(
"2015-01-01"
),
Name = "string",
State = "ENABLED"|"DISABLED",
Target = list(
Arn = "string"
)
)
)
)