List Schedules
gluedatabrew_list_schedules | R Documentation |
Lists the DataBrew schedules that are defined¶
Description¶
Lists the DataBrew schedules that are defined.
Usage¶
Arguments¶
JobName
The name of the job that these schedules apply to.
MaxResults
The maximum number of results to return in this request.
NextToken
The 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"
)