/*
* 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 appconfig-2019-10-09.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.AppConfig.Model
{
///
/// Container for the parameters to the UpdateDeploymentStrategy operation.
/// Updates a deployment strategy.
///
public partial class UpdateDeploymentStrategyRequest : AmazonAppConfigRequest
{
private int? _deploymentDurationInMinutes;
private string _deploymentStrategyId;
private string _description;
private int? _finalBakeTimeInMinutes;
private float? _growthFactor;
private GrowthType _growthType;
///
/// Gets and sets the property DeploymentDurationInMinutes.
///
/// Total amount of time for a deployment to last.
///
///
[AWSProperty(Min=0, Max=1440)]
public int DeploymentDurationInMinutes
{
get { return this._deploymentDurationInMinutes.GetValueOrDefault(); }
set { this._deploymentDurationInMinutes = value; }
}
// Check to see if DeploymentDurationInMinutes property is set
internal bool IsSetDeploymentDurationInMinutes()
{
return this._deploymentDurationInMinutes.HasValue;
}
///
/// Gets and sets the property DeploymentStrategyId.
///
/// The deployment strategy ID.
///
///
[AWSProperty(Required=true)]
public string DeploymentStrategyId
{
get { return this._deploymentStrategyId; }
set { this._deploymentStrategyId = value; }
}
// Check to see if DeploymentStrategyId property is set
internal bool IsSetDeploymentStrategyId()
{
return this._deploymentStrategyId != null;
}
///
/// Gets and sets the property Description.
///
/// A description of the deployment strategy.
///
///
[AWSProperty(Min=0, Max=1024)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
///
/// Gets and sets the property FinalBakeTimeInMinutes.
///
/// The amount of time that AppConfig monitors for alarms before considering the deployment
/// to be complete and no longer eligible for automatic rollback.
///
///
[AWSProperty(Min=0, Max=1440)]
public int FinalBakeTimeInMinutes
{
get { return this._finalBakeTimeInMinutes.GetValueOrDefault(); }
set { this._finalBakeTimeInMinutes = value; }
}
// Check to see if FinalBakeTimeInMinutes property is set
internal bool IsSetFinalBakeTimeInMinutes()
{
return this._finalBakeTimeInMinutes.HasValue;
}
///
/// Gets and sets the property GrowthFactor.
///
/// The percentage of targets to receive a deployed configuration during each interval.
///
///
[AWSProperty(Min=1, Max=100)]
public float GrowthFactor
{
get { return this._growthFactor.GetValueOrDefault(); }
set { this._growthFactor = value; }
}
// Check to see if GrowthFactor property is set
internal bool IsSetGrowthFactor()
{
return this._growthFactor.HasValue;
}
///
/// Gets and sets the property GrowthType.
///
/// The algorithm used to define how percentage grows over time. AppConfig supports the
/// following growth types:
///
///
///
/// Linear: For this type, AppConfig processes the deployment by increments of
/// the growth factor evenly distributed over the deployment time. For example, a linear
/// deployment that uses a growth factor of 20 initially makes the configuration available
/// to 20 percent of the targets. After 1/5th of the deployment time has passed, the system
/// updates the percentage to 40 percent. This continues until 100% of the targets are
/// set to receive the deployed configuration.
///
///
///
/// Exponential: For this type, AppConfig processes the deployment exponentially
/// using the following formula: G*(2^N)
. In this formula, G
/// is the growth factor specified by the user and N
is the number of steps
/// until the configuration is deployed to all targets. For example, if you specify a
/// growth factor of 2, then the system rolls out the configuration as follows:
///
///
///
/// 2*(2^0)
///
///
///
/// 2*(2^1)
///
///
///
/// 2*(2^2)
///
///
///
/// Expressed numerically, the deployment rolls out as follows: 2% of the targets, 4%
/// of the targets, 8% of the targets, and continues until the configuration has been
/// deployed to all targets.
///
///
public GrowthType GrowthType
{
get { return this._growthType; }
set { this._growthType = value; }
}
// Check to see if GrowthType property is set
internal bool IsSetGrowthType()
{
return this._growthType != null;
}
}
}