public void NeptuneApplyPendingMaintenanceAction()
        {
            #region apply-pending-maintenance-action-2a026047-8bbb-47fc-b695-abad9f308c24

            var response = client.ApplyPendingMaintenanceAction(new ApplyPendingMaintenanceActionRequest
            {
                ApplyAction        = "system-update",
                OptInType          = "immediate",
                ResourceIdentifier = "arn:aws:rds:us-east-1:992648334831:db:mymysqlinstance"
            });

            ResourcePendingMaintenanceActions resourcePendingMaintenanceActions = response.ResourcePendingMaintenanceActions;

            #endregion
        }
 private Amazon.Neptune.Model.ApplyPendingMaintenanceActionResponse CallAWSServiceOperation(IAmazonNeptune client, Amazon.Neptune.Model.ApplyPendingMaintenanceActionRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Neptune", "ApplyPendingMaintenanceAction");
     try
     {
         #if DESKTOP
         return(client.ApplyPendingMaintenanceAction(request));
         #elif CORECLR
         return(client.ApplyPendingMaintenanceActionAsync(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;
     }
 }