Show / Hide Table of Contents

Class CfnIntegration.ScheduledTriggerPropertiesProperty

Specifies the configuration details of a scheduled-trigger flow that you define.

Inheritance
object
CfnIntegration.ScheduledTriggerPropertiesProperty
Implements
CfnIntegration.IScheduledTriggerPropertiesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnIntegration.ScheduledTriggerPropertiesProperty : CfnIntegration.IScheduledTriggerPropertiesProperty
Syntax (vb)
Public Class CfnIntegration.ScheduledTriggerPropertiesProperty Implements CfnIntegration.IScheduledTriggerPropertiesProperty
Remarks

Currently, these settings only apply to the scheduled-trigger type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-scheduledtriggerproperties.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.AWS.CustomerProfiles;

             var scheduledTriggerPropertiesProperty = new ScheduledTriggerPropertiesProperty {
                 ScheduleExpression = "scheduleExpression",

                 // the properties below are optional
                 DataPullMode = "dataPullMode",
                 FirstExecutionFrom = 123,
                 ScheduleEndTime = 123,
                 ScheduleOffset = 123,
                 ScheduleStartTime = 123,
                 Timezone = "timezone"
             };

Synopsis

Constructors

ScheduledTriggerPropertiesProperty()

Specifies the configuration details of a scheduled-trigger flow that you define.

Properties

DataPullMode

Specifies whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run.

FirstExecutionFrom

Specifies the date range for the records to import from the connector in the first flow run.

ScheduleEndTime

Specifies the scheduled end time for a scheduled-trigger flow.

ScheduleExpression

The scheduling expression that determines the rate at which the schedule will run, for example rate (5 minutes).

ScheduleOffset

Specifies the optional offset that is added to the time interval for a schedule-triggered flow.

ScheduleStartTime

Specifies the scheduled start time for a scheduled-trigger flow.

Timezone

Specifies the time zone used when referring to the date and time of a scheduled-triggered flow, such as America/New_York.

Constructors

ScheduledTriggerPropertiesProperty()

Specifies the configuration details of a scheduled-trigger flow that you define.

public ScheduledTriggerPropertiesProperty()
Remarks

Currently, these settings only apply to the scheduled-trigger type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-scheduledtriggerproperties.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.AWS.CustomerProfiles;

             var scheduledTriggerPropertiesProperty = new ScheduledTriggerPropertiesProperty {
                 ScheduleExpression = "scheduleExpression",

                 // the properties below are optional
                 DataPullMode = "dataPullMode",
                 FirstExecutionFrom = 123,
                 ScheduleEndTime = 123,
                 ScheduleOffset = 123,
                 ScheduleStartTime = 123,
                 Timezone = "timezone"
             };

Properties

DataPullMode

Specifies whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run.

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

string

Remarks

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

FirstExecutionFrom

Specifies the date range for the records to import from the connector in the first flow run.

public double? FirstExecutionFrom { get; set; }
Property Value

double?

Remarks

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

ScheduleEndTime

Specifies the scheduled end time for a scheduled-trigger flow.

public double? ScheduleEndTime { get; set; }
Property Value

double?

Remarks

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

ScheduleExpression

The scheduling expression that determines the rate at which the schedule will run, for example rate (5 minutes).

public string ScheduleExpression { get; set; }
Property Value

string

Remarks

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

ScheduleOffset

Specifies the optional offset that is added to the time interval for a schedule-triggered flow.

public double? ScheduleOffset { get; set; }
Property Value

double?

Remarks

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

ScheduleStartTime

Specifies the scheduled start time for a scheduled-trigger flow.

public double? ScheduleStartTime { get; set; }
Property Value

double?

Remarks

The value must be a date/time value in EPOCH format.

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

Timezone

Specifies the time zone used when referring to the date and time of a scheduled-triggered flow, such as America/New_York.

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

string

Remarks

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

Implements

CfnIntegration.IScheduledTriggerPropertiesProperty
Back to top Generated by DocFX