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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forTriggerOptionsstatic final classAn implementation forTriggerOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic TriggerOptions.Builderbuilder()The actions initiated by this trigger.default StringA description for the trigger.default StringgetName()A name for the trigger.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActions
The actions initiated by this trigger. -
getDescription
A description for the trigger.Default: - no description
-
getName
A name for the trigger.Default: - no name is provided
-
builder
- Returns:
- a
TriggerOptions.BuilderofTriggerOptions
-