describeConfiguration method
Returns information about the specified configuration.
May throw BadRequestException.
May throw ForbiddenException.
May throw InternalServerErrorException.
May throw NotFoundException.
Parameter configurationId :
The unique ID that Amazon MQ generates for the configuration.
Implementation
Future<DescribeConfigurationResponse> describeConfiguration({
required String configurationId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/v1/configurations/${Uri.encodeComponent(configurationId)}',
exceptionFnMap: _exceptionFns,
);
return DescribeConfigurationResponse.fromJson(response);
}