deleteConfiguration method
Deletes an MSK Configuration.
May throw BadRequestException.
May throw ForbiddenException.
May throw InternalServerErrorException.
May throw NotFoundException.
Parameter arn :
The Amazon Resource Name (ARN) that uniquely identifies an MSK
configuration.
Implementation
Future<DeleteConfigurationResponse> deleteConfiguration({
required String arn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/v1/configurations/${Uri.encodeComponent(arn)}',
exceptionFnMap: _exceptionFns,
);
return DeleteConfigurationResponse.fromJson(response);
}