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