Class Lambda2Configuration
java.lang.Object
org.apache.camel.component.aws2.lambda.Lambda2Configuration
- All Implemented Interfaces:
Cloneable
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncopy()
software.amazon.awssdk.services.lambda.LambdaClient
software.amazon.awssdk.core.Protocol
boolean
boolean
boolean
boolean
void
setAccessKey
(String accessKey) Amazon AWS Access Keyvoid
setAwsLambdaClient
(software.amazon.awssdk.services.lambda.LambdaClient awsLambdaClient) To use a existing configured AwsLambdaClient as clientvoid
setOperation
(Lambda2Operations operation) The operation to perform.void
setOverrideEndpoint
(boolean overrideEndpoint) Set the need for overidding the endpoint.void
setPojoRequest
(boolean pojoRequest) If we want to use a POJO request as body or notvoid
setProfileCredentialsName
(String profileCredentialsName) If using a profile credentials provider this parameter will set the profile namevoid
setProxyHost
(String proxyHost) To define a proxy host when instantiating the Lambda clientvoid
setProxyPort
(Integer proxyPort) To define a proxy port when instantiating the Lambda clientvoid
setProxyProtocol
(software.amazon.awssdk.core.Protocol proxyProtocol) To define a proxy protocol when instantiating the Lambda clientvoid
The region in which Lambda client needs to work.void
setSecretKey
(String secretKey) Amazon AWS Secret Keyvoid
setTrustAllCertificates
(boolean trustAllCertificates) If we want to trust all certificates in case of overriding the endpointvoid
setUriEndpointOverride
(String uriEndpointOverride) Set the overriding uri endpoint.void
setUseDefaultCredentialsProvider
(Boolean useDefaultCredentialsProvider) Set whether the Lambda client should expect to load credentials through a default credentials provider or to expect static credentials to be passed in.void
setUseProfileCredentialsProvider
(boolean useProfileCredentialsProvider) Set whether the Lambda client should expect to load credentials through a profile credentials provider.
-
Constructor Details
-
Lambda2Configuration
public Lambda2Configuration()
-
-
Method Details
-
getAwsLambdaClient
public software.amazon.awssdk.services.lambda.LambdaClient getAwsLambdaClient() -
setAwsLambdaClient
public void setAwsLambdaClient(software.amazon.awssdk.services.lambda.LambdaClient awsLambdaClient) To use a existing configured AwsLambdaClient as client -
getAccessKey
-
setAccessKey
Amazon AWS Access Key -
getSecretKey
-
setSecretKey
Amazon AWS Secret Key -
getRegion
-
setRegion
The region in which Lambda client needs to work. When using this parameter, the configuration will expect the lowercase name of the region (for example ap-east-1) You'll need to use the name Region.EU_WEST_1.id() -
getOperation
-
setOperation
The operation to perform. It can be listFunctions, getFunction, createFunction, deleteFunction or invokeFunction -
getProxyProtocol
public software.amazon.awssdk.core.Protocol getProxyProtocol() -
setProxyProtocol
public void setProxyProtocol(software.amazon.awssdk.core.Protocol proxyProtocol) To define a proxy protocol when instantiating the Lambda client -
getProxyHost
-
setProxyHost
To define a proxy host when instantiating the Lambda client -
getProxyPort
-
setProxyPort
To define a proxy port when instantiating the Lambda client -
isPojoRequest
public boolean isPojoRequest() -
setPojoRequest
public void setPojoRequest(boolean pojoRequest) If we want to use a POJO request as body or not -
isTrustAllCertificates
public boolean isTrustAllCertificates() -
setTrustAllCertificates
public void setTrustAllCertificates(boolean trustAllCertificates) If we want to trust all certificates in case of overriding the endpoint -
isOverrideEndpoint
public boolean isOverrideEndpoint() -
setOverrideEndpoint
public void setOverrideEndpoint(boolean overrideEndpoint) Set the need for overidding the endpoint. This option needs to be used in combination with uriEndpointOverride option -
getUriEndpointOverride
-
setUriEndpointOverride
Set the overriding uri endpoint. This option needs to be used in combination with overrideEndpoint option -
setUseDefaultCredentialsProvider
Set whether the Lambda client should expect to load credentials through a default credentials provider or to expect static credentials to be passed in. -
isUseDefaultCredentialsProvider
-
isUseProfileCredentialsProvider
public boolean isUseProfileCredentialsProvider() -
setUseProfileCredentialsProvider
public void setUseProfileCredentialsProvider(boolean useProfileCredentialsProvider) Set whether the Lambda client should expect to load credentials through a profile credentials provider. -
getProfileCredentialsName
-
setProfileCredentialsName
If using a profile credentials provider this parameter will set the profile name -
copy
-