Interface EventTriggerOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,TriggerOptions
- All Known Implementing Classes:
EventTriggerOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-10T17:52:11.259Z")
@Stability(Experimental)
public interface EventTriggerOptions
extends software.amazon.jsii.JsiiSerializable, TriggerOptions
(experimental) Properties for configuring an Event Bridge based 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.*;
import software.amazon.awscdk.*;
Action action;
EventTriggerOptions eventTriggerOptions = EventTriggerOptions.builder()
.actions(List.of(action))
// the properties below are optional
.description("description")
.eventBatchingCondition(EventBatchingCondition.builder()
.batchSize(123)
// the properties below are optional
.batchWindow(Duration.minutes(30))
.build())
.name("name")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEventTriggerOptionsstatic final classAn implementation forEventTriggerOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic EventTriggerOptions.Builderbuilder()default EventBatchingCondition(experimental) Batch condition for the trigger.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.glue.alpha.TriggerOptions
getActions, getDescription, getName
-
Method Details
-
getEventBatchingCondition
(experimental) Batch condition for the trigger.Default: - no batch condition
-
builder
- Returns:
- a
EventTriggerOptions.BuilderofEventTriggerOptions
-