Interface Lambda2EndpointBuilderFactory.AdvancedLambda2EndpointBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- Enclosing interface:
- Lambda2EndpointBuilderFactory
public static interface Lambda2EndpointBuilderFactory.AdvancedLambda2EndpointBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint for the AWS 2 Lambda component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Lambda2EndpointBuilderFactory.AdvancedLambda2EndpointBuilder
awsLambdaClient(Object awsLambdaClient)
To use a existing configured AwsLambdaClient as client.default Lambda2EndpointBuilderFactory.AdvancedLambda2EndpointBuilder
awsLambdaClient(String awsLambdaClient)
To use a existing configured AwsLambdaClient as client.default Lambda2EndpointBuilderFactory.Lambda2EndpointBuilder
basic()
default Lambda2EndpointBuilderFactory.AdvancedLambda2EndpointBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default Lambda2EndpointBuilderFactory.AdvancedLambda2EndpointBuilder
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).
-
-
-
Method Detail
-
basic
default Lambda2EndpointBuilderFactory.Lambda2EndpointBuilder basic()
-
awsLambdaClient
default Lambda2EndpointBuilderFactory.AdvancedLambda2EndpointBuilder awsLambdaClient(Object awsLambdaClient)
To use a existing configured AwsLambdaClient as client. The option is a:software.amazon.awssdk.services.lambda.LambdaClient
type. Group: advanced
-
awsLambdaClient
default Lambda2EndpointBuilderFactory.AdvancedLambda2EndpointBuilder awsLambdaClient(String awsLambdaClient)
To use a existing configured AwsLambdaClient as client. The option will be converted to asoftware.amazon.awssdk.services.lambda.LambdaClient
type. Group: advanced
-
synchronous
default Lambda2EndpointBuilderFactory.AdvancedLambda2EndpointBuilder synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). The option is a:boolean
type. Default: false Group: advanced
-
synchronous
default Lambda2EndpointBuilderFactory.AdvancedLambda2EndpointBuilder synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). The option will be converted to aboolean
type. Default: false Group: advanced
-
-