interface TriggerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnIntegrationPropsMixin.TriggerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnIntegrationPropsMixin_TriggerConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnIntegrationPropsMixin.TriggerConfigProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnIntegrationPropsMixin.TriggerConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnIntegrationPropsMixin » 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 customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const triggerConfigProperty: customerprofiles_mixins.CfnIntegrationPropsMixin.TriggerConfigProperty = {
triggerProperties: {
scheduled: {
dataPullMode: 'dataPullMode',
firstExecutionFrom: 123,
scheduleEndTime: 123,
scheduleExpression: 'scheduleExpression',
scheduleOffset: 123,
scheduleStartTime: 123,
timezone: 'timezone',
},
},
triggerType: 'triggerType',
};
Properties
| Name | Type | Description |
|---|---|---|
| trigger | IResolvable | Trigger | Specifies the configuration details of a schedule-triggered flow that you define. |
| trigger | string | Specifies the type of flow trigger. |
triggerProperties?
Type:
IResolvable | Trigger
(optional)
Specifies the configuration details of a schedule-triggered flow that you define.
Currently, these settings only apply to the Scheduled trigger type.
triggerType?
Type:
string
(optional)
Specifies the type of flow trigger.
It can be OnDemand, Scheduled, or Event.

.NET
Go
Java
Python
TypeScript