Interface TriggerOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
ConditionalTriggerOptions, EventTriggerOptions, OnDemandTriggerOptions, ScheduledTriggerOptions, StartableTriggerOptions
All Known Implementing Classes:
ConditionalTriggerOptions.Jsii$Proxy, EventTriggerOptions.Jsii$Proxy, OnDemandTriggerOptions.Jsii$Proxy, ScheduledTriggerOptions.Jsii$Proxy, StartableTriggerOptions.Jsii$Proxy, TriggerOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-17T14:54:05.118Z") @Stability(Stable) public interface TriggerOptions extends software.amazon.jsii.JsiiSerializable
Properties for configuring a Glue Trigger.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.glue.*;
 Action action;
 TriggerOptions triggerOptions = TriggerOptions.builder()
         .actions(List.of(action))
         // the properties below are optional
         .description("description")
         .name("name")
         .build();
 
  • Method Details

    • getActions

      @Stability(Stable) @NotNull List<Action> getActions()
      The actions initiated by this trigger.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      A description for the trigger.

      Default: - no description

    • getName

      @Stability(Stable) @Nullable default String getName()
      A name for the trigger.

      Default: - no name is provided

    • builder

      @Stability(Stable) static TriggerOptions.Builder builder()
      Returns:
      a TriggerOptions.Builder of TriggerOptions