public static interface CfnFlow.TriggerConfigProperty
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.appflow.*; TriggerConfigProperty triggerConfigProperty = TriggerConfigProperty.builder() .triggerType("triggerType") // the properties below are optional .triggerProperties(ScheduledTriggerPropertiesProperty.builder() .scheduleExpression("scheduleExpression") // the properties below are optional .dataPullMode("dataPullMode") .firstExecutionFrom(123) .flowErrorDeactivationThreshold(123) .scheduleEndTime(123) .scheduleOffset(123) .scheduleStartTime(123) .timeZone("timeZone") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnFlow.TriggerConfigProperty.Builder
A builder for
CfnFlow.TriggerConfigProperty |
static class |
CfnFlow.TriggerConfigProperty.Jsii$Proxy
An implementation for
CfnFlow.TriggerConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnFlow.TriggerConfigProperty.Builder |
builder() |
default java.lang.Object |
getTriggerProperties()
Specifies the configuration details of a schedule-triggered flow as defined by the user.
|
java.lang.String |
getTriggerType()
Specifies the type of flow trigger.
|
java.lang.String getTriggerType()
This can be OnDemand
, Scheduled
, or Event
.
default java.lang.Object getTriggerProperties()
Currently, these settings only apply to the Scheduled
trigger type.
static CfnFlow.TriggerConfigProperty.Builder builder()