Describe Schedule
gluedatabrew_describe_schedule | R Documentation |
Returns the definition of a specific DataBrew schedule¶
Description¶
Returns the definition of a specific DataBrew schedule.
Usage¶
gluedatabrew_describe_schedule(Name)
Arguments¶
Name |
[required] The name of the schedule to be described. |
Value¶
A list with the following syntax:
list(
CreateDate = as.POSIXct(
"2015-01-01"
),
CreatedBy = "string",
JobNames = list(
"string"
),
LastModifiedBy = "string",
LastModifiedDate = as.POSIXct(
"2015-01-01"
),
ResourceArn = "string",
CronExpression = "string",
Tags = list(
"string"
),
Name = "string"
)
Request syntax¶
svc$describe_schedule(
Name = "string"
)