This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch aws-sns-sink-fix-825 in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 75e3c866ef7ec81624d738d1b11e02cfd9aaf86f Author: Andrea Cosentino <[email protected]> AuthorDate: Wed Mar 16 15:27:06 2022 +0100 AWS SNS Kamelet: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose --- .../src/main/resources/kamelets/aws-sns-sink.kamelet.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/library/camel-kamelets/src/main/resources/kamelets/aws-sns-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/aws-sns-sink.kamelet.yaml index 3a01ddf..20bf8d8 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/aws-sns-sink.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/aws-sns-sink.kamelet.yaml @@ -84,6 +84,17 @@ spec: x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:checkbox' default: false + uriEndpointOverride: + title: Overwritte Endpoint URI + description: Set the overriding endpoint URI. This option needs to be used in combination with overrideEndpoint option. + type: string + overrideEndpoint: + title: Endpoint Overwrite + description: Set the need for overiding the endpoint URI. This option needs to be used in combination with uriEndpointOverride setting. + type: boolean + x-descriptors: + - 'urn:alm:descriptor:com.tectonic.ui:checkbox' + default: false dependencies: - "camel:core" - "camel:aws2-sns" @@ -112,3 +123,5 @@ spec: secretKey: "{{?secretKey}}" region: "{{region}}" useDefaultCredentialsProvider: "{{useDefaultCredentialsProvider}}" + uriEndpointOverride: "{{?uriEndpointOverride}}" + overrideEndpoint: "{{overrideEndpoint}}"
