List Schedules
| gluedatabrew_list_schedules | R Documentation |
Lists the DataBrew schedules that are defined¶
Description¶
Lists the DataBrew schedules that are defined.
Usage¶
Arguments¶
JobNameThe name of the job that these schedules apply to.
MaxResultsThe maximum number of results to return in this request.
NextTokenThe token returned by a previous call to retrieve the next set of results.
Value¶
A list with the following syntax:
list(
Schedules = list(
list(
AccountId = "string",
CreatedBy = "string",
CreateDate = as.POSIXct(
"2015-01-01"
),
JobNames = list(
"string"
),
LastModifiedBy = "string",
LastModifiedDate = as.POSIXct(
"2015-01-01"
),
ResourceArn = "string",
CronExpression = "string",
Tags = list(
"string"
),
Name = "string"
)
),
NextToken = "string"
)