public void RedshiftCreateHsmClientCertificate()
        {
            #region to-create-a-new-hsm-certificate-1482359863292

            var response = client.CreateHsmClientCertificate(new CreateHsmClientCertificateRequest
            {
                HsmClientCertificateIdentifier = "my-hsm"
            });


            #endregion
        }
 private Amazon.Redshift.Model.CreateHsmClientCertificateResponse CallAWSServiceOperation(IAmazonRedshift client, Amazon.Redshift.Model.CreateHsmClientCertificateRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Redshift", "CreateHsmClientCertificate");
     try
     {
         #if DESKTOP
         return(client.CreateHsmClientCertificate(request));
         #elif CORECLR
         return(client.CreateHsmClientCertificateAsync(request).GetAwaiter().GetResult());
         #else
                 #error "Unknown build edition"
         #endif
     }
     catch (AmazonServiceException exc)
     {
         var webException = exc.InnerException as System.Net.WebException;
         if (webException != null)
         {
             throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException);
         }
         throw;
     }
 }