Example #1
0
        public void AppConfigGetDeploymentStrategy()
        {
            #region to-retrieve-details-of-a-deployment-strategy-1632266385805

            var client   = new AmazonAppConfigClient();
            var response = client.GetDeploymentStrategy(new GetDeploymentStrategyRequest
            {
                DeploymentStrategyId = "1225qzk"
            });

            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
        }