Interface LambdaEndpointBuilderFactory.AdvancedLambdaEndpointBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- Enclosing interface:
- LambdaEndpointBuilderFactory
public static interface LambdaEndpointBuilderFactory.AdvancedLambdaEndpointBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint for the AWS Lambda component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default LambdaEndpointBuilderFactory.AdvancedLambdaEndpointBuilder
awsLambdaClient(Object awsLambdaClient)
To use a existing configured AwsLambdaClient as client.default LambdaEndpointBuilderFactory.AdvancedLambdaEndpointBuilder
awsLambdaClient(String awsLambdaClient)
To use a existing configured AwsLambdaClient as client.default LambdaEndpointBuilderFactory.LambdaEndpointBuilder
basic()
default LambdaEndpointBuilderFactory.AdvancedLambdaEndpointBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default LambdaEndpointBuilderFactory.AdvancedLambdaEndpointBuilder
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 LambdaEndpointBuilderFactory.LambdaEndpointBuilder basic()
-
awsLambdaClient
default LambdaEndpointBuilderFactory.AdvancedLambdaEndpointBuilder awsLambdaClient(Object awsLambdaClient)
To use a existing configured AwsLambdaClient as client. The option is a:com.amazonaws.services.lambda.AWSLambda
type. Group: advanced
-
awsLambdaClient
default LambdaEndpointBuilderFactory.AdvancedLambdaEndpointBuilder awsLambdaClient(String awsLambdaClient)
To use a existing configured AwsLambdaClient as client. The option will be converted to acom.amazonaws.services.lambda.AWSLambda
type. Group: advanced
-
synchronous
default LambdaEndpointBuilderFactory.AdvancedLambdaEndpointBuilder 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 LambdaEndpointBuilderFactory.AdvancedLambdaEndpointBuilder 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
-
-