aws-cdk-lib.aws_customerprofiles.CfnIntegration.TriggerPropertiesProperty

interface TriggerPropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.CustomerProfiles.CfnIntegration.TriggerPropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnIntegration_TriggerPropertiesProperty
Javasoftware.amazon.awscdk.services.customerprofiles.CfnIntegration.TriggerPropertiesProperty
Pythonaws_cdk.aws_customerprofiles.CfnIntegration.TriggerPropertiesProperty
TypeScript aws-cdk-lib » 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 { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
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

NameTypeDescription
scheduled?IResolvable | ScheduledTriggerPropertiesPropertySpecifies the configuration details of a schedule-triggered flow that you define.

scheduled?

Type: IResolvable | ScheduledTriggerPropertiesProperty (optional)

Specifies the configuration details of a schedule-triggered flow that you define.