listFunctionDefinitionVersions method
Lists the versions of a Lambda function definition.
May throw BadRequestException.
Parameter functionDefinitionId
:
The ID of the Lambda function definition.
Parameter maxResults
:
The maximum number of results to be returned per request.
Parameter nextToken
:
The token for the next set of results, or ''null'' if there are no
additional results.
Implementation
Future<ListFunctionDefinitionVersionsResponse>
listFunctionDefinitionVersions({
required String functionDefinitionId,
String? maxResults,
String? nextToken,
}) async {
ArgumentError.checkNotNull(functionDefinitionId, 'functionDefinitionId');
final $query = <String, List<String>>{
if (maxResults != null) 'MaxResults': [maxResults],
if (nextToken != null) 'NextToken': [nextToken],
};
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/greengrass/definition/functions/${Uri.encodeComponent(functionDefinitionId)}/versions',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return ListFunctionDefinitionVersionsResponse.fromJson(response);
}