/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the appflow-2020-08-23.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.Appflow.Model { /// /// Specifies the configuration details of a schedule-triggered flow as defined by the /// user. Currently, these settings only apply to the Scheduled trigger type. /// public partial class ScheduledTriggerProperties { private DataPullMode _dataPullMode; private DateTime? _firstExecutionFrom; private int? _flowErrorDeactivationThreshold; private DateTime? _scheduleEndTime; private string _scheduleExpression; private long? _scheduleOffset; private DateTime? _scheduleStartTime; private string _timezone; /// /// Gets and sets the property DataPullMode. /// /// Specifies whether a scheduled flow has an incremental data transfer or a complete /// data transfer for each flow run. /// /// public DataPullMode DataPullMode { get { return this._dataPullMode; } set { this._dataPullMode = value; } } // Check to see if DataPullMode property is set internal bool IsSetDataPullMode() { return this._dataPullMode != null; } /// /// Gets and sets the property FirstExecutionFrom. /// /// Specifies the date range for the records to import from the connector in the first /// flow run. /// /// public DateTime FirstExecutionFrom { get { return this._firstExecutionFrom.GetValueOrDefault(); } set { this._firstExecutionFrom = value; } } // Check to see if FirstExecutionFrom property is set internal bool IsSetFirstExecutionFrom() { return this._firstExecutionFrom.HasValue; } /// /// Gets and sets the property FlowErrorDeactivationThreshold. /// /// Defines how many times a scheduled flow fails consecutively before Amazon AppFlow /// deactivates it. /// /// [AWSProperty(Min=1, Max=100)] public int FlowErrorDeactivationThreshold { get { return this._flowErrorDeactivationThreshold.GetValueOrDefault(); } set { this._flowErrorDeactivationThreshold = value; } } // Check to see if FlowErrorDeactivationThreshold property is set internal bool IsSetFlowErrorDeactivationThreshold() { return this._flowErrorDeactivationThreshold.HasValue; } /// /// Gets and sets the property ScheduleEndTime. /// /// The time at which the scheduled flow ends. The time is formatted as a timestamp that /// follows the ISO 8601 standard, such as 2022-04-27T13:00:00-07:00. /// /// public DateTime ScheduleEndTime { get { return this._scheduleEndTime.GetValueOrDefault(); } set { this._scheduleEndTime = value; } } // Check to see if ScheduleEndTime property is set internal bool IsSetScheduleEndTime() { return this._scheduleEndTime.HasValue; } /// /// Gets and sets the property ScheduleExpression. /// /// The scheduling expression that determines the rate at which the schedule will run, /// for example rate(5minutes). /// /// [AWSProperty(Required=true, Max=256)] public string ScheduleExpression { get { return this._scheduleExpression; } set { this._scheduleExpression = value; } } // Check to see if ScheduleExpression property is set internal bool IsSetScheduleExpression() { return this._scheduleExpression != null; } /// /// Gets and sets the property ScheduleOffset. /// /// Specifies the optional offset that is added to the time interval for a schedule-triggered /// flow. /// /// [AWSProperty(Min=0, Max=36000)] public long ScheduleOffset { get { return this._scheduleOffset.GetValueOrDefault(); } set { this._scheduleOffset = value; } } // Check to see if ScheduleOffset property is set internal bool IsSetScheduleOffset() { return this._scheduleOffset.HasValue; } /// /// Gets and sets the property ScheduleStartTime. /// /// The time at which the scheduled flow starts. The time is formatted as a timestamp /// that follows the ISO 8601 standard, such as 2022-04-26T13:00:00-07:00. /// /// public DateTime ScheduleStartTime { get { return this._scheduleStartTime.GetValueOrDefault(); } set { this._scheduleStartTime = value; } } // Check to see if ScheduleStartTime property is set internal bool IsSetScheduleStartTime() { return this._scheduleStartTime.HasValue; } /// /// Gets and sets the property Timezone. /// /// Specifies the time zone used when referring to the dates and times of a scheduled /// flow, such as America/New_York. This time zone is only a descriptive /// label. It doesn't affect how Amazon AppFlow interprets the timestamps that you specify /// to schedule the flow. /// /// /// /// If you want to schedule a flow by using times in a particular time zone, indicate /// the time zone as a UTC offset in your timestamps. For example, the UTC offsets for /// the America/New_York timezone are -04:00 EDT and -05:00 /// EST. /// /// [AWSProperty(Max=256)] public string Timezone { get { return this._timezone; } set { this._timezone = value; } } // Check to see if Timezone property is set internal bool IsSetTimezone() { return this._timezone != null; } } }