public void NeptuneCopyDBClusterSnapshot()
        {
            #region to-copy-a-db-cluster-snapshot-1473879770564

            var response = client.CopyDBClusterSnapshot(new CopyDBClusterSnapshotRequest
            {
                SourceDBClusterSnapshotIdentifier = "rds:sample-cluster-2016-09-14-10-38",
                TargetDBClusterSnapshotIdentifier = "cluster-snapshot-copy-1"
            });

            DBClusterSnapshot dbClusterSnapshot = response.DBClusterSnapshot;

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