public void NeptuneDeleteDBClusterSnapshot() { #region delete-db-cluster-snapshot-c67e0d95-670e-4fb5-af90-6d9a70a91b07 var response = client.DeleteDBClusterSnapshot(new DeleteDBClusterSnapshotRequest { DBClusterSnapshotIdentifier = "mydbclustersnapshot" }); DBClusterSnapshot dbClusterSnapshot = response.DBClusterSnapshot; #endregion }
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 }
public void NeptuneCreateDBClusterSnapshot() { #region create-db-cluster-snapshot- var response = client.CreateDBClusterSnapshot(new CreateDBClusterSnapshotRequest { DBClusterIdentifier = "mydbcluster", DBClusterSnapshotIdentifier = "mydbclustersnapshot" }); DBClusterSnapshot dbClusterSnapshot = response.DBClusterSnapshot; #endregion }