Get Triggers
| glue_get_triggers | R Documentation |
Gets all the triggers associated with a job¶
Description¶
Gets all the triggers associated with a job.
Usage¶
Arguments¶
NextTokenA continuation token, if this is a continuation call.
DependentJobNameThe name of the job to retrieve triggers for. The trigger that can start this job is returned, and if there is no such trigger, all triggers are returned.
MaxResultsThe maximum size of the response.
Value¶
A list with the following syntax:
list(
Triggers = list(
list(
Name = "string",
WorkflowName = "string",
Id = "string",
Type = "SCHEDULED"|"CONDITIONAL"|"ON_DEMAND"|"EVENT",
State = "CREATING"|"CREATED"|"ACTIVATING"|"ACTIVATED"|"DEACTIVATING"|"DEACTIVATED"|"DELETING"|"UPDATING",
Description = "string",
Schedule = "string",
Actions = list(
list(
JobName = "string",
Arguments = list(
"string"
),
Timeout = 123,
SecurityConfiguration = "string",
NotificationProperty = list(
NotifyDelayAfter = 123
),
CrawlerName = "string"
)
),
Predicate = list(
Logical = "AND"|"ANY",
Conditions = list(
list(
LogicalOperator = "EQUALS",
JobName = "string",
State = "STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"|"TIMEOUT"|"ERROR"|"WAITING"|"EXPIRED",
CrawlerName = "string",
CrawlState = "RUNNING"|"CANCELLING"|"CANCELLED"|"SUCCEEDED"|"FAILED"|"ERROR"
)
)
),
EventBatchingCondition = list(
BatchSize = 123,
BatchWindow = 123
)
)
),
NextToken = "string"
)