Ce contenu n'est pas disponible dans la langue sélectionnée.
Chapter 6. AWS 2 Lambda
Manage and invoke AWS Lambda functions using AWS SDK version 2.x.
6.1. What’s inside Copier lienLien copié sur presse-papiers!
-
AWS Lambda component, URI syntax:
aws2-lambda:function
Please refer to the above link for usage and configuration details.
6.2. Maven coordinates Copier lienLien copié sur presse-papiers!
Create a new project with this extension on code.quarkus.redhat.com
Or add the coordinates to your existing project:
<dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-aws2-lambda</artifactId> </dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-aws2-lambda</artifactId>
</dependency>
6.3. SSL in native mode Copier lienLien copié sur presse-papiers!
This extension auto-enables SSL support in native mode. Hence you do not need to add quarkus.ssl.native=true
to your application.properties
yourself. See also Quarkus SSL guide.
6.4. Additional Camel Quarkus configuration Copier lienLien copié sur presse-papiers!
6.4.1. Not possible to leverage quarkus-amazon-lambda by Camel aws2-lambda extension Copier lienLien copié sur presse-papiers!
Quarkus-amazon-lambda extension allows you to use Quarkus to build your AWS Lambdas, whereas Camel component manages (deploy, undeploy, …) existing functions. Therefore, it is not possible to use quarkus-amazon-lambda
as a client for Camel aws2-lambda
extension.