Exemple #1
0
        public void AppConfigUpdateDeploymentStrategy()
        {
            #region to-update-a-deployment-strategy-1632330896602

            var client   = new AmazonAppConfigClient();
            var response = client.UpdateDeploymentStrategy(new UpdateDeploymentStrategyRequest
            {
                DeploymentStrategyId   = "1225qzk",
                FinalBakeTimeInMinutes = 20
            });

            int    deploymentDurationInMinutes = response.DeploymentDurationInMinutes;
            int    finalBakeTimeInMinutes      = response.FinalBakeTimeInMinutes;
            float  growthFactor = response.GrowthFactor;
            string growthType   = response.GrowthType;
            string id           = response.Id;
            string name         = response.Name;
            string replicateTo  = response.ReplicateTo;

            #endregion
        }