listVersions method
Retrieves an array of all the encoder engine versions that are available in this AWS account.
May throw BadGatewayException.
May throw BadRequestException.
May throw ConflictException.
May throw ForbiddenException.
May throw GatewayTimeoutException.
May throw InternalServerErrorException.
May throw NotFoundException.
May throw TooManyRequestsException.
Implementation
Future<ListVersionsResponse> listVersions() async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/prod/versions',
exceptionFnMap: _exceptionFns,
);
return ListVersionsResponse.fromJson(response);
}