@Stability(value=Stable)
public static interface CfnIntegration.TriggerPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
Currently, these settings only apply to the Scheduled trigger type.
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.*;
TriggerPropertiesProperty triggerPropertiesProperty = 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnIntegration.TriggerPropertiesProperty.Builder
A builder for
CfnIntegration.TriggerPropertiesProperty |
static class |
CfnIntegration.TriggerPropertiesProperty.Jsii$Proxy
An implementation for
CfnIntegration.TriggerPropertiesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnIntegration.TriggerPropertiesProperty.Builder |
builder() |
default Object |
getScheduled()
Specifies the configuration details of a schedule-triggered flow that you define.
|
@Stability(value=Stable) @Nullable default Object getScheduled()
@Stability(value=Stable) static CfnIntegration.TriggerPropertiesProperty.Builder builder()
Copyright © 2022. All rights reserved.