deleteSnapshot method
Deletes a snapshot from Amazon Redshift Serverless.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter snapshotName :
The name of the snapshot to be deleted.
Implementation
Future<DeleteSnapshotResponse> deleteSnapshot({
required String snapshotName,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'RedshiftServerless.DeleteSnapshot'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'snapshotName': snapshotName,
},
);
return DeleteSnapshotResponse.fromJson(jsonResponse.body);
}