TriggerOptions

class aws_cdk.aws_glue.TriggerOptions(*, actions, description=None, name=None)

Bases: object

Properties for configuring a Glue Trigger.

Parameters:
  • actions (Sequence[Action]) – The actions initiated by this trigger.

  • description (Optional[str]) – A description for the trigger. Default: - no description

  • name (Optional[str]) – A name for the trigger. Default: - no name is provided

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_glue as glue

# action: glue.Action

trigger_options = glue.TriggerOptions(
    actions=[action],

    # the properties below are optional
    description="description",
    name="name"
)

Attributes

actions

The actions initiated by this trigger.

description

A description for the trigger.

Default:
  • no description

name

A name for the trigger.

Default:
  • no name is provided