describeAddon method
Describes an Amazon EKS add-on.
May throw ClientException.
May throw InvalidParameterException.
May throw InvalidRequestException.
May throw ResourceNotFoundException.
May throw ServerException.
Parameter addonName :
The name of the add-on. The name must match one of the names returned by
ListAddons .
Parameter clusterName :
The name of your cluster.
Implementation
Future<DescribeAddonResponse> describeAddon({
required String addonName,
required String clusterName,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/clusters/${Uri.encodeComponent(clusterName)}/addons/${Uri.encodeComponent(addonName)}',
exceptionFnMap: _exceptionFns,
);
return DescribeAddonResponse.fromJson(response);
}