aws-cdk-lib.aws_customerprofiles.CfnIntegration.TriggerConfigProperty

interface TriggerConfigProperty

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

  // the properties below are optional
  triggerProperties: {
    scheduled: {
      scheduleExpression: 'scheduleExpression',

      // the properties below are optional
      dataPullMode: 'dataPullMode',
      firstExecutionFrom: 123,
      scheduleEndTime: 123,
      scheduleOffset: 123,
      scheduleStartTime: 123,
      timezone: 'timezone',
    },
  },
};

Properties

NameTypeDescription
triggerTypestringSpecifies the type of flow trigger.
triggerProperties?IResolvable | TriggerPropertiesPropertySpecifies the configuration details of a schedule-triggered flow that you define.

triggerType

Type: string

Specifies the type of flow trigger.

It can be OnDemand, Scheduled, or Event.


triggerProperties?

Type: IResolvable | TriggerPropertiesProperty (optional)

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

Currently, these settings only apply to the Scheduled trigger type.