/* * 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 greengrassv2-2020-11-30.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.GreengrassV2.Model { /// /// Contains information about an IoT job configuration. /// public partial class DeploymentIoTJobConfiguration { private IoTJobAbortConfig _abortConfig; private IoTJobExecutionsRolloutConfig _jobExecutionsRolloutConfig; private IoTJobTimeoutConfig _timeoutConfig; /// /// Gets and sets the property AbortConfig. /// /// The stop configuration for the job. This configuration defines when and how to stop /// a job rollout. /// /// public IoTJobAbortConfig AbortConfig { get { return this._abortConfig; } set { this._abortConfig = value; } } // Check to see if AbortConfig property is set internal bool IsSetAbortConfig() { return this._abortConfig != null; } /// /// Gets and sets the property JobExecutionsRolloutConfig. /// /// The rollout configuration for the job. This configuration defines the rate at which /// the job rolls out to the fleet of target devices. /// /// public IoTJobExecutionsRolloutConfig JobExecutionsRolloutConfig { get { return this._jobExecutionsRolloutConfig; } set { this._jobExecutionsRolloutConfig = value; } } // Check to see if JobExecutionsRolloutConfig property is set internal bool IsSetJobExecutionsRolloutConfig() { return this._jobExecutionsRolloutConfig != null; } /// /// Gets and sets the property TimeoutConfig. /// /// The timeout configuration for the job. This configuration defines the amount of time /// each device has to complete the job. /// /// public IoTJobTimeoutConfig TimeoutConfig { get { return this._timeoutConfig; } set { this._timeoutConfig = value; } } // Check to see if TimeoutConfig property is set internal bool IsSetTimeoutConfig() { return this._timeoutConfig != null; } } }