getImage method
Gets an image.
May throw CallRateLimitExceededException.
May throw ClientException.
May throw ForbiddenException.
May throw InvalidRequestException.
May throw ServiceException.
May throw ServiceUnavailableException.
Parameter imageBuildVersionArn :
The Amazon Resource Name (ARN) of the image that you want to get.
Implementation
Future<GetImageResponse> getImage({
required String imageBuildVersionArn,
}) async {
final $query = <String, List<String>>{
'imageBuildVersionArn': [imageBuildVersionArn],
};
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/GetImage',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return GetImageResponse.fromJson(response);
}