@Stability(value=Stable)
public static interface CfnIntegration.TriggerConfigProperty
extends software.amazon.jsii.JsiiSerializable
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.customerprofiles.*;
TriggerConfigProperty triggerConfigProperty = TriggerConfigProperty.builder()
.triggerType("triggerType")
// the properties below are optional
.triggerProperties(TriggerPropertiesProperty.builder()
.scheduled(ScheduledTriggerPropertiesProperty.builder()
.scheduleExpression("scheduleExpression")
// the properties below are optional
.dataPullMode("dataPullMode")
.firstExecutionFrom(123)
.scheduleEndTime(123)
.scheduleOffset(123)
.scheduleStartTime(123)
.timezone("timezone")
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnIntegration.TriggerConfigProperty.Builder
A builder for
CfnIntegration.TriggerConfigProperty |
static class |
CfnIntegration.TriggerConfigProperty.Jsii$Proxy
An implementation for
CfnIntegration.TriggerConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnIntegration.TriggerConfigProperty.Builder |
builder() |
default Object |
getTriggerProperties()
Specifies the configuration details of a schedule-triggered flow that you define.
|
String |
getTriggerType()
Specifies the type of flow trigger.
|
@Stability(value=Stable) @NotNull String getTriggerType()
It can be OnDemand, Scheduled, or Event.
@Stability(value=Stable) @Nullable default Object getTriggerProperties()
Currently, these settings only apply to the Scheduled trigger type.
@Stability(value=Stable) static CfnIntegration.TriggerConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.