Show / Hide Table of Contents

Class CfnIntegrationPropsMixin.TriggerConfigProperty

The trigger settings that determine how and when Amazon AppFlow runs the specified flow.

Inheritance
object
CfnIntegrationPropsMixin.TriggerConfigProperty
Implements
CfnIntegrationPropsMixin.ITriggerConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-triggerconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-triggerconfig.html

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

object

Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-triggerconfig.html#cfn-customerprofiles-integration-triggerconfig-triggerproperties

Type union: either IResolvable or CfnIntegrationPropsMixin.ITriggerPropertiesProperty

TriggerType

Specifies the type of flow trigger.

public string? TriggerType { get; set; }
Property Value

string

Remarks

It can be OnDemand, Scheduled, or Event.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-triggerconfig.html#cfn-customerprofiles-integration-triggerconfig-triggertype

Implements

CfnIntegrationPropsMixin.ITriggerConfigProperty
Back to top Generated by DocFX