/* * 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 codedeploy-2014-10-06.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.CodeDeploy.Model { /// /// Information about how traffic is rerouted to instances in a replacement environment /// in a blue/green deployment. /// public partial class DeploymentReadyOption { private DeploymentReadyAction _actionOnTimeout; private int? _waitTimeInMinutes; /// /// Gets and sets the property ActionOnTimeout. /// /// Information about when to reroute traffic from an original environment to a replacement /// environment in a blue/green deployment. /// /// /// public DeploymentReadyAction ActionOnTimeout { get { return this._actionOnTimeout; } set { this._actionOnTimeout = value; } } // Check to see if ActionOnTimeout property is set internal bool IsSetActionOnTimeout() { return this._actionOnTimeout != null; } /// /// Gets and sets the property WaitTimeInMinutes. /// /// The number of minutes to wait before the status of a blue/green deployment is changed /// to Stopped if rerouting is not started manually. Applies only to the STOP_DEPLOYMENT /// option for actionOnTimeout. /// /// public int WaitTimeInMinutes { get { return this._waitTimeInMinutes.GetValueOrDefault(); } set { this._waitTimeInMinutes = value; } } // Check to see if WaitTimeInMinutes property is set internal bool IsSetWaitTimeInMinutes() { return this._waitTimeInMinutes.HasValue; } } }