示例#1
0
        public void AppConfigStopDeployment()
        {
            #region to-stop-configuration-deployment-1632329139126

            var client   = new AmazonAppConfigClient();
            var response = client.StopDeployment(new StopDeploymentRequest
            {
                ApplicationId    = "339ohji",
                DeploymentNumber = 2,
                EnvironmentId    = "54j1r29"
            });

            int   deploymentDurationInMinutes = response.DeploymentDurationInMinutes;
            int   deploymentNumber            = response.DeploymentNumber;
            int   finalBakeTimeInMinutes      = response.FinalBakeTimeInMinutes;
            float growthFactor       = response.GrowthFactor;
            float percentageComplete = response.PercentageComplete;

            #endregion
        }