public void NeptuneCreateDBClusterSnapshot()
        {
            #region create-db-cluster-snapshot-

            var response = client.CreateDBClusterSnapshot(new CreateDBClusterSnapshotRequest
            {
                DBClusterIdentifier         = "mydbcluster",
                DBClusterSnapshotIdentifier = "mydbclustersnapshot"
            });

            DBClusterSnapshot dbClusterSnapshot = response.DBClusterSnapshot;

            #endregion
        }
Beispiel #2
0
 private Amazon.Neptune.Model.CreateDBClusterSnapshotResponse CallAWSServiceOperation(IAmazonNeptune client, Amazon.Neptune.Model.CreateDBClusterSnapshotRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Neptune", "CreateDBClusterSnapshot");
     try
     {
         #if DESKTOP
         return(client.CreateDBClusterSnapshot(request));
         #elif CORECLR
         return(client.CreateDBClusterSnapshotAsync(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;
     }
 }