describeCustomPlugin method

Future<DescribeCustomPluginResponse> describeCustomPlugin({
  1. required String customPluginArn,
})

A summary description of the custom plugin.

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

Parameter customPluginArn : Returns information about a custom plugin.

Implementation

Future<DescribeCustomPluginResponse> describeCustomPlugin({
  required String customPluginArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/v1/custom-plugins/${Uri.encodeComponent(customPluginArn)}',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeCustomPluginResponse.fromJson(response);
}