interface TriggerPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnIntegrationPropsMixin.TriggerPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnIntegrationPropsMixin_TriggerPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnIntegrationPropsMixin.TriggerPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnIntegrationPropsMixin.TriggerPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnIntegrationPropsMixin » 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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const triggerPropertiesProperty: customerprofiles_mixins.CfnIntegrationPropsMixin.TriggerPropertiesProperty = {
scheduled: {
dataPullMode: 'dataPullMode',
firstExecutionFrom: 123,
scheduleEndTime: 123,
scheduleExpression: 'scheduleExpression',
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.

.NET
Go
Java
Python
TypeScript