public void AppConfigGetConfiguration() { #region to-retrieve-configuration-details-1632265954314 var client = new AmazonAppConfigClient(); var response = client.GetConfiguration(new GetConfigurationRequest { Application = "example-application", ClientId = "example-id", Configuration = "Example-Configuration-Profile", Environment = "Example-Environment" }); string configurationVersion = response.ConfigurationVersion; string contentType = response.ContentType; #endregion }