Interface StartableTriggerOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,TriggerOptions
- All Known Subinterfaces:
ConditionalTriggerOptions,ScheduledTriggerOptions
- All Known Implementing Classes:
ConditionalTriggerOptions.Jsii$Proxy,ScheduledTriggerOptions.Jsii$Proxy,StartableTriggerOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:30.197Z")
@Stability(Deprecated)
@Deprecated
public interface StartableTriggerOptions
extends software.amazon.jsii.JsiiSerializable, TriggerOptions
Deprecated.
(deprecated) Base options for triggers that can be started when they are created.
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;
StartableTriggerOptions startableTriggerOptions = StartableTriggerOptions.builder()
.actions(List.of(action))
// the properties below are optional
.description("description")
.name("name")
.startOnCreation(false)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
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
-
getStartOnCreation
Deprecated.(deprecated) Whether to start the trigger on creation or not.Default: - false
-
builder
Deprecated.- Returns:
- a
StartableTriggerOptions.BuilderofStartableTriggerOptions
-