deleteConfiguration method

Future<DeleteConfigurationResponse> deleteConfiguration({
  1. required String configurationId,
})

Deletes the specified configuration.

May throw BadRequestException. May throw ConflictException. May throw ForbiddenException. May throw InternalServerErrorException. May throw NotFoundException.

Parameter configurationId : The unique ID that Amazon MQ generates for the configuration.

Implementation

Future<DeleteConfigurationResponse> deleteConfiguration({
  required String configurationId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/v1/configurations/${Uri.encodeComponent(configurationId)}',
    exceptionFnMap: _exceptionFns,
  );
  return DeleteConfigurationResponse.fromJson(response);
}