Beispiel #1
0
        public void AppConfigCreateEnvironment()
        {
            #region to-create-an-environment-1632265124975

            var client   = new AmazonAppConfigClient();
            var response = client.CreateEnvironment(new CreateEnvironmentRequest
            {
                ApplicationId = "339ohji",
                Name          = "Example-Environment"
            });

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

            #endregion
        }