public void SecretsManagerGetRandomPassword()
        {
            #region to-generate-a-random-password-1524000546092

            var response = client.GetRandomPassword(new GetRandomPasswordRequest
            {
                IncludeSpace            = true,
                PasswordLength          = 20,
                RequireEachIncludedType = true
            });

            string randomPassword = response.RandomPassword;

            #endregion
        }
 private Amazon.SecretsManager.Model.GetRandomPasswordResponse CallAWSServiceOperation(IAmazonSecretsManager client, Amazon.SecretsManager.Model.GetRandomPasswordRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Secrets Manager", "GetRandomPassword");
     try
     {
         #if DESKTOP
         return(client.GetRandomPassword(request));
         #elif CORECLR
         return(client.GetRandomPasswordAsync(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;
     }
 }