aws-cdk-lib.aws_appflow.CfnFlow.TriggerConfigProperty

interface TriggerConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.AppFlow.CfnFlow.TriggerConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnFlow_TriggerConfigProperty
Javasoftware.amazon.awscdk.services.appflow.CfnFlow.TriggerConfigProperty
Pythonaws_cdk.aws_appflow.CfnFlow.TriggerConfigProperty
TypeScript aws-cdk-lib » aws_appflow » CfnFlow » 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_appflow as appflow } from 'aws-cdk-lib';
const triggerConfigProperty: appflow.CfnFlow.TriggerConfigProperty = {
  triggerType: 'triggerType',

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

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

Properties

NameTypeDescription
triggerTypestringSpecifies the type of flow trigger.
triggerProperties?IResolvable | ScheduledTriggerPropertiesPropertySpecifies the configuration details of a schedule-triggered flow as defined by the user.

triggerType

Type: string

Specifies the type of flow trigger.

This can be OnDemand , Scheduled , or Event .


triggerProperties?

Type: IResolvable | ScheduledTriggerPropertiesProperty (optional)

Specifies the configuration details of a schedule-triggered flow as defined by the user.

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