Class CfnIntegrationPropsMixin.TriggerConfigProperty
The trigger settings that determine how and when Amazon AppFlow runs the specified flow.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnIntegrationPropsMixin.TriggerConfigProperty : CfnIntegrationPropsMixin.ITriggerConfigProperty
Syntax (vb)
Public Class CfnIntegrationPropsMixin.TriggerConfigProperty Implements CfnIntegrationPropsMixin.ITriggerConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles;
var triggerConfigProperty = new TriggerConfigProperty {
TriggerProperties = new TriggerPropertiesProperty {
Scheduled = new ScheduledTriggerPropertiesProperty {
DataPullMode = "dataPullMode",
FirstExecutionFrom = 123,
ScheduleEndTime = 123,
ScheduleExpression = "scheduleExpression",
ScheduleOffset = 123,
ScheduleStartTime = 123,
Timezone = "timezone"
}
},
TriggerType = "triggerType"
};
Synopsis
Constructors
| TriggerConfigProperty() | The trigger settings that determine how and when Amazon AppFlow runs the specified flow. |
Properties
| TriggerProperties | Specifies the configuration details of a schedule-triggered flow that you define. |
| TriggerType | Specifies the type of flow trigger. |
Constructors
TriggerConfigProperty()
The trigger settings that determine how and when Amazon AppFlow runs the specified flow.
public TriggerConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles;
var triggerConfigProperty = new TriggerConfigProperty {
TriggerProperties = new TriggerPropertiesProperty {
Scheduled = new ScheduledTriggerPropertiesProperty {
DataPullMode = "dataPullMode",
FirstExecutionFrom = 123,
ScheduleEndTime = 123,
ScheduleExpression = "scheduleExpression",
ScheduleOffset = 123,
ScheduleStartTime = 123,
Timezone = "timezone"
}
},
TriggerType = "triggerType"
};
Properties
TriggerProperties
Specifies the configuration details of a schedule-triggered flow that you define.
public object? TriggerProperties { get; set; }
Property Value
Remarks
Currently, these settings only apply to the Scheduled trigger type.
Type union: either IResolvable or CfnIntegrationPropsMixin.ITriggerPropertiesProperty
TriggerType
Specifies the type of flow trigger.
public string? TriggerType { get; set; }
Property Value
Remarks
It can be OnDemand, Scheduled, or Event.