Hi,
Denodo provides a way to access the view as “**REST**” or “**RESTful**” API from an end consuming application.
To access the views of Denodo from AWS Lambda other than “**JDBC**” or “**ODBC**” connections, I would make a call to the [**RESTful web service**](https://community.denodo.com/docs/html/browse/8.0/en/vdp/administration/restful_architecture/restful_web_service/restful_web_service) which is an HTTP service auto-deployed in Denodo that publishes the contents of the entire Virtual DataPort server or access the views published as the [**REST web service**](https://community.denodo.com/docs/html/browse/8.0/en/vdp/administration/publication_of_web_services/publishing_rest_web_services/publishing_rest_web_services) of Denodo from AWS Lambda.
For instance, to get the view using the web services I would provide “**HTTP method**” as “**GET**” and “**URI**” as mentioned below in the lambda function built on AWS Lambda:
For "**RESTful**" web service, the “**URI**” to access the view is http://localhost:9090/denodo-restfulws/<database_name>/<view_name>.
whereas for "**REST**" web service, the “URI” to access the view is http://localhost:9090/server/<database_name>/<webservice_name>/views/<view_name>.
Hope this helps!