describeFlowSourceThumbnail method

Future<DescribeFlowSourceThumbnailResponse> describeFlowSourceThumbnail({
  1. required String flowArn,
})

Describes the thumbnail for the flow source.

May throw BadRequestException. May throw ForbiddenException. May throw InternalServerErrorException. May throw NotFoundException. May throw ServiceUnavailableException. May throw TooManyRequestsException.

Parameter flowArn : The Amazon Resource Name (ARN) of the flow.

Implementation

Future<DescribeFlowSourceThumbnailResponse> describeFlowSourceThumbnail({
  required String flowArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/v1/flows/${Uri.encodeComponent(flowArn)}/source-thumbnail',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeFlowSourceThumbnailResponse.fromJson(response);
}