This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 7ec72e257fa78f8d5c9a9aa3d422ee6be17fce68 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Mar 2 08:55:08 2021 +0100 CAMEL-16171 - Add uri-endpoint-override options to all AWS2 components - AWS2-Lambda component --- .../aws2/lambda/Lambda2Configuration.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/components/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Configuration.java b/components/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Configuration.java index 6873aad..893df4a 100644 --- a/components/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Configuration.java +++ b/components/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Configuration.java @@ -47,6 +47,10 @@ public class Lambda2Configuration implements Cloneable { private boolean pojoRequest; @UriParam(defaultValue = "false") private boolean trustAllCertificates; + @UriParam(defaultValue = "false") + private boolean overrideEndpoint; + @UriParam + private String uriEndpointOverride; public LambdaClient getAwsLambdaClient() { return awsLambdaClient; @@ -159,6 +163,29 @@ public class Lambda2Configuration implements Cloneable { this.trustAllCertificates = trustAllCertificates; } + public boolean isOverrideEndpoint() { + return overrideEndpoint; + } + + /** + * Set the need for overidding the endpoint. This option needs to be used in combination with uriEndpointOverride + * option + */ + public void setOverrideEndpoint(boolean overrideEndpoint) { + this.overrideEndpoint = overrideEndpoint; + } + + public String getUriEndpointOverride() { + return uriEndpointOverride; + } + + /** + * Set the overriding uri endpoint. This option needs to be used in combination with overrideEndpoint option + */ + public void setUriEndpointOverride(String uriEndpointOverride) { + this.uriEndpointOverride = uriEndpointOverride; + } + // ************************************************* // // *************************************************
