interface TriggerPropertiesProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnIntegration.TriggerPropertiesProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnIntegration.TriggerPropertiesProperty |
Python | aws_cdk.aws_customerprofiles.CfnIntegration.TriggerPropertiesProperty |
TypeScript | @aws-cdk/aws-customerprofiles » CfnIntegration » TriggerPropertiesProperty |
Specifies the configuration details that control the trigger for a flow.
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 * as customerprofiles from '@aws-cdk/aws-customerprofiles';
const triggerPropertiesProperty: customerprofiles.CfnIntegration.TriggerPropertiesProperty = {
scheduled: {
scheduleExpression: 'scheduleExpression',
// the properties below are optional
dataPullMode: 'dataPullMode',
firstExecutionFrom: 123,
scheduleEndTime: 123,
scheduleOffset: 123,
scheduleStartTime: 123,
timezone: 'timezone',
},
};
Properties
Name | Type | Description |
---|---|---|
scheduled? | IResolvable | Scheduled | Specifies the configuration details of a schedule-triggered flow that you define. |
scheduled?
Type:
IResolvable
|
Scheduled
(optional)
Specifies the configuration details of a schedule-triggered flow that you define.