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