Beispiel #1
0
        public void AppConfigUpdateEnvironment()
        {
            #region to-update-an-environment-1632331382428

            var client   = new AmazonAppConfigClient();
            var response = client.UpdateEnvironment(new UpdateEnvironmentRequest
            {
                ApplicationId = "339ohji",
                Description   = "An environment for examples.",
                EnvironmentId = "54j1r29"
            });

            string applicationId = response.ApplicationId;
            string description   = response.Description;
            string id            = response.Id;
            string name          = response.Name;
            string state         = response.State;

            #endregion
        }