Batch Delete Cluster Snapshots
redshift_batch_delete_cluster_snapshots | R Documentation |
Deletes a set of cluster snapshots¶
Description¶
Deletes a set of cluster snapshots.
Usage¶
redshift_batch_delete_cluster_snapshots(Identifiers)
Arguments¶
Identifiers |
[required] A list of identifiers for the snapshots that you want to delete. |
Value¶
A list with the following syntax:
list(
Resources = list(
"string"
),
Errors = list(
list(
SnapshotIdentifier = "string",
SnapshotClusterIdentifier = "string",
FailureCode = "string",
FailureReason = "string"
)
)
)
Request syntax¶
svc$batch_delete_cluster_snapshots(
Identifiers = list(
list(
SnapshotIdentifier = "string",
SnapshotClusterIdentifier = "string"
)
)
)