interface TriggerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.TriggerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_TriggerConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.TriggerConfigProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.TriggerConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » TriggerConfigProperty |
The trigger settings that determine how and when Amazon AppFlow runs the specified flow.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const triggerConfigProperty: appflow_mixins.CfnFlowPropsMixin.TriggerConfigProperty = {
triggerProperties: {
dataPullMode: 'dataPullMode',
firstExecutionFrom: 123,
flowErrorDeactivationThreshold: 123,
scheduleEndTime: 123,
scheduleExpression: 'scheduleExpression',
scheduleOffset: 123,
scheduleStartTime: 123,
timeZone: 'timeZone',
},
triggerType: 'triggerType',
};
Properties
| Name | Type | Description |
|---|---|---|
| trigger | IResolvable | Scheduled | Specifies the configuration details of a schedule-triggered flow as defined by the user. |
| trigger | string | Specifies the type of flow trigger. |
triggerProperties?
Type:
IResolvable | Scheduled
(optional)
Specifies the configuration details of a schedule-triggered flow as defined by the user.
Currently, these settings only apply to the Scheduled trigger type.
triggerType?
Type:
string
(optional)
Specifies the type of flow trigger.
This can be OnDemand , Scheduled , or Event .

.NET
Go
Java
Python
TypeScript