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:30.238Z") @Stability(Deprecated) @Deprecated public interface TriggerOptions extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) 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.alpha.*;
 Action action;
 TriggerOptions triggerOptions = TriggerOptions.builder()
         .actions(List.of(action))
         // the properties below are optional
         .description("description")
         .name("name")
         .build();
 
  • Method Details

    • getActions

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

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

      Default: - no description

    • getName

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

      Default: - no name is provided

    • builder

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