public void SimpleEmailServiceGetAccountSendingEnabled()
        {
            #region getaccountsendingenabled-1469047741333

            var response = client.GetAccountSendingEnabled(new GetAccountSendingEnabledRequest
            {
            });

            bool enabled = response.Enabled;

            #endregion
        }
Example #2
0
 private Amazon.SimpleEmail.Model.GetAccountSendingEnabledResponse CallAWSServiceOperation(IAmazonSimpleEmailService client, Amazon.SimpleEmail.Model.GetAccountSendingEnabledRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Simple Email Service (SES)", "GetAccountSendingEnabled");
     try
     {
         #if DESKTOP
         return(client.GetAccountSendingEnabled(request));
         #elif CORECLR
         return(client.GetAccountSendingEnabledAsync(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;
     }
 }