TriggerOptions

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

Bases: object

(deprecated) Properties for configuring a Glue Trigger.

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

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

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

Stability:

deprecated

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

(deprecated) The actions initiated by this trigger.

Stability:

deprecated

description

(deprecated) A description for the trigger.

Default:
  • no description

Stability:

deprecated

name

(deprecated) A name for the trigger.

Default:
  • no name is provided

Stability:

deprecated