describeConfiguration method

Future<DescribeConfigurationResponse> describeConfiguration({
  1. required String arn,
})

Returns a description of this MSK configuration.

May throw BadRequestException. May throw ForbiddenException. May throw InternalServerErrorException. May throw NotFoundException. May throw ServiceUnavailableException. May throw UnauthorizedException.

Parameter arn : The Amazon Resource Name (ARN) that uniquely identifies an MSK configuration and all of its revisions.

Implementation

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