Interface CustomScheduledTriggerOptions
- All Superinterfaces:
DailyScheduleTriggerOptions,software.amazon.jsii.JsiiSerializable,TriggerOptions,WeeklyScheduleTriggerOptions
- All Known Implementing Classes:
CustomScheduledTriggerOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:49.874Z")
@Stability(Experimental)
public interface CustomScheduledTriggerOptions
extends software.amazon.jsii.JsiiSerializable, WeeklyScheduleTriggerOptions
(experimental) Properties for configuring a custom-scheduled 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.*;
import software.amazon.awscdk.services.glue.*;
CfnCrawler cfnCrawler;
Job job;
SecurityConfiguration securityConfiguration;
TriggerSchedule triggerSchedule;
CustomScheduledTriggerOptions customScheduledTriggerOptions = CustomScheduledTriggerOptions.builder()
.actions(List.of(Action.builder()
.arguments(Map.of(
"argumentsKey", "arguments"))
.crawler(cfnCrawler)
.job(job)
.securityConfiguration(securityConfiguration)
.timeout(Duration.minutes(30))
.build()))
.schedule(triggerSchedule)
// the properties below are optional
.description("description")
.name("name")
.startOnCreation(false)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCustomScheduledTriggerOptionsstatic final classAn implementation forCustomScheduledTriggerOptions -
Method Summary
Methods inherited from interface software.amazon.awscdk.services.glue.alpha.DailyScheduleTriggerOptions
getStartOnCreationMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.glue.alpha.TriggerOptions
getActions, getDescription, getName
-
Method Details
-
getSchedule
(experimental) The custom schedule for the trigger. -
builder
-