interface TriggerPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnIntegrationPropsMixin.TriggerPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnIntegrationPropsMixin_TriggerPropertiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnIntegrationPropsMixin.TriggerPropertiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnIntegrationPropsMixin.TriggerPropertiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » 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 { aws_customerprofiles as customerprofiles } from '@aws-cdk/cfn-property-mixins';
const triggerPropertiesProperty: customerprofiles.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