deleteSourceServer method
Deletes a single Source Server by ID. The Source Server must be disconnected first.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw UninitializedAccountException.
Parameter sourceServerID :
The ID of the Source Server to be deleted.
Implementation
Future<void> deleteSourceServer({
required String sourceServerID,
}) async {
final $payload = <String, dynamic>{
'sourceServerID': sourceServerID,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/DeleteSourceServer',
exceptionFnMap: _exceptionFns,
);
}