describeAcceleratorTypes method

Future<DescribeAcceleratorTypesResponse> describeAcceleratorTypes()

Describes the accelerator types available in a given region, as well as their characteristics, such as memory and throughput.

May throw InternalServerException.

Implementation

Future<DescribeAcceleratorTypesResponse> describeAcceleratorTypes() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/describe-accelerator-types',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeAcceleratorTypesResponse.fromJson(response);
}