paws.analytics (version 0.1.0)

glue_create_trigger: Creates a new trigger

Description

Creates a new trigger.

Usage

glue_create_trigger(Name, Type, Schedule, Predicate, Actions,
  Description, StartOnCreation, Tags)

Arguments

Name

[required] The name of the trigger.

Type

[required] The type of the new trigger.

Schedule

A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

This field is required when the trigger type is SCHEDULED.

Predicate

A predicate to specify when the new trigger should fire.

This field is required when the trigger type is CONDITIONAL.

Actions

[required] The actions initiated by this trigger when it fires.

Description

A description of the new trigger.

StartOnCreation

Set to true to start SCHEDULED and CONDITIONAL triggers when created. True not supported for ON\_DEMAND triggers.

Tags

The tags to use with this trigger. You may use tags to limit access to the trigger. For more information about tags in AWS Glue, see AWS Tags in AWS Glue in the developer guide.

Request syntax

svc$create_trigger(
  Name = "string",
  Type = "SCHEDULED"|"CONDITIONAL"|"ON_DEMAND",
  Schedule = "string",
  Predicate = list(
    Logical = "AND"|"ANY",
    Conditions = list(
      list(
        LogicalOperator = "EQUALS",
        JobName = "string",
        State = "STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"|"TIMEOUT"
      )
    )
  ),
  Actions = list(
    list(
      JobName = "string",
      Arguments = list(
        "string"
      ),
      Timeout = 123,
      NotificationProperty = list(
        NotifyDelayAfter = 123
      ),
      SecurityConfiguration = "string"
    )
  ),
  Description = "string",
  StartOnCreation = TRUE|FALSE,
  Tags = list(
    "string"
  )
)