Exemplo n.º 1
0
        public void AppConfigGetHostedConfigurationVersion()
        {
            #region to-retrieve-hosted-configuration-details-1632267003527

            var client   = new AmazonAppConfigClient();
            var response = client.GetHostedConfigurationVersion(new GetHostedConfigurationVersionRequest
            {
                ApplicationId          = "339ohji",
                ConfigurationProfileId = "ur8hx2f",
                VersionNumber          = 1
            });

            string applicationId          = response.ApplicationId;
            string configurationProfileId = response.ConfigurationProfileId;
            string contentType            = response.ContentType;
            int    versionNumber          = response.VersionNumber;

            #endregion
        }