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 4526c46f67a8bfc400f6cb89e0ddd3cd677a7388 Author: Andrea Cosentino <[email protected]> AuthorDate: Mon Mar 1 14:21:53 2021 +0100 CAMEL-16171 - Add uri-endpoint-override options to all AWS2 components - AWS2-IAM component --- .../component/aws2/iam/IAM2Configuration.java | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/components/camel-aws2-iam/src/main/java/org/apache/camel/component/aws2/iam/IAM2Configuration.java b/components/camel-aws2-iam/src/main/java/org/apache/camel/component/aws2/iam/IAM2Configuration.java index c0ea361..b6b16d1 100644 --- a/components/camel-aws2-iam/src/main/java/org/apache/camel/component/aws2/iam/IAM2Configuration.java +++ b/components/camel-aws2-iam/src/main/java/org/apache/camel/component/aws2/iam/IAM2Configuration.java @@ -52,6 +52,10 @@ public class IAM2Configuration implements Cloneable { private boolean pojoRequest; @UriParam(defaultValue = "false") private boolean trustAllCertificates; + @UriParam(defaultValue = "false") + private boolean overrideEndpoint; + @UriParam + private String uriEndpointOverride; public IamClient getIamClient() { return iamClient; @@ -167,6 +171,30 @@ public class IAM2Configuration 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; + } + + // ************************************************* // // *************************************************
