TriggerOptions

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

Bases: object

(experimental) Properties for configuring a Glue Trigger.

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

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

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

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

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

# action: glue_alpha.Action

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

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

Attributes

actions

(experimental) The actions initiated by this trigger.

Stability:

experimental

description

(experimental) A description for the trigger.

Default:
  • no description

Stability:

experimental

name

(experimental) A name for the trigger.

Default:
  • no name is provided

Stability:

experimental