This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 7fb98e9b1900c478f7ca97b26b18a5f02f4cabe6 Author: Andrea Cosentino <[email protected]> AuthorDate: Fri Jul 22 12:24:20 2022 +0200 CAMEL-18287 - Camel-AWS Eventbridge: Support operation putEvents to send custom event to Eventbridge --- .../dsl/EventbridgeEndpointBuilderFactory.java | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/EventbridgeEndpointBuilderFactory.java b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/EventbridgeEndpointBuilderFactory.java index 7bd08de39ad..0d5d110ae54 100644 --- a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/EventbridgeEndpointBuilderFactory.java +++ b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/EventbridgeEndpointBuilderFactory.java @@ -620,6 +620,46 @@ public interface EventbridgeEndpointBuilderFactory { public String awsEventbridgeTargetArn() { return "AwsEventbridgeTargetArn"; } + + /** + * Comma separated list of Amazon Resource Names (ARN) of the resources + * related to Event. + * + * The option is a: {@code String} type. + * + * Group: producer + * + * @return the name of the header {@code AwsEventbridgeResourcesArn}. + */ + public String awsEventbridgeResourcesArn() { + return "AwsEventbridgeResourcesArn"; + } + + /** + * The source related to Event. + * + * The option is a: {@code String} type. + * + * Group: producer + * + * @return the name of the header {@code AwsEventbridgeSource}. + */ + public String awsEventbridgeSource() { + return "AwsEventbridgeSource"; + } + + /** + * The detail type related to Event. + * + * The option is a: {@code String} type. + * + * Group: producer + * + * @return the name of the header {@code AwsEventbridgeDetailType}. + */ + public String awsEventbridgeDetailType() { + return "AwsEventbridgeDetailType"; + } } static EventbridgeEndpointBuilder endpointBuilder( String componentName,
