Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AWS2-SQS: Expose Kamelet data type information #1640

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions kamelets/aws-sqs-source.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,65 @@ spec:
x-descriptors:
- 'urn:alm:descriptor:com.tectonic.ui:checkbox'
default: false
dataTypes:
out:
default: text
headers:
CamelAwsSqsMessageId:
title: The SQS Message Id
description: The Amazon SQS message ID
type: string
CamelAwsSqsReceiptHandle:
title: The SQS Message Receipt Handle
description: The Amazon SQS message receipt handle.
type: string
CamelAwsSqsMD5OfBody:
title: The SQS Message MD5 Checksum
description: The content type of the retrieved object.
default: application/octet-stream
type: string
CamelAwsSqsAttributes:
title: The SQS Message System Attributes
description: |-
A map of the attributes requested in ReceiveMessage to their respective values, the Map type is Map<MessageSystemAttributeName, String>
type: object
CamelAwsSqsMessageAttributes:
title: The SQS Message Attributes
description: |-
The Amazon SQS message attributes, the Map type is Map<String, MessageAttributeValue>
type: object
types:
text:
format: "text-plain"
description: Default String representation of the SQS message received from the queue.
mediaType: text/plain
cloudevents:
format: "aws2-sqs:application-cloudevents"
description: |-
Output data type represents AWS SQS receive message response as CloudEvent V1. The data type sets Camel specific CloudEvent headers on the exchange with
respective data from the SQS message and its derived object.
headers:
CamelCloudEventID:
title: CloudEvent ID
description: The Camel exchange id set as event id
type: string
CamelCloudEventType:
title: CloudEvent Type
description: The event type
default: "org.apache.camel.event.aws.sqs.receiveMessage"
type: string
CamelCloudEventSource:
title: CloudEvent Source
description: The event source. By default, the SQS Received message receipt handle with prefix "aws.sqs.queue.".
type: string
CamelCloudEventSubject:
title: CloudEvent Subject
description: The event subject. The SQS message ID
type: string
CamelCloudEventTime:
title: CloudEvent Time
description: The exchange creation timestamp as event time.
type: string
dependencies:
- "camel:core"
- "camel:aws2-sqs"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,65 @@ spec:
x-descriptors:
- 'urn:alm:descriptor:com.tectonic.ui:checkbox'
default: false
dataTypes:
out:
default: text
headers:
CamelAwsSqsMessageId:
title: The SQS Message Id
description: The Amazon SQS message ID
type: string
CamelAwsSqsReceiptHandle:
title: The SQS Message Receipt Handle
description: The Amazon SQS message receipt handle.
type: string
CamelAwsSqsMD5OfBody:
title: The SQS Message MD5 Checksum
description: The content type of the retrieved object.
default: application/octet-stream
type: string
CamelAwsSqsAttributes:
title: The SQS Message System Attributes
description: |-
A map of the attributes requested in ReceiveMessage to their respective values, the Map type is Map<MessageSystemAttributeName, String>
type: object
CamelAwsSqsMessageAttributes:
title: The SQS Message Attributes
description: |-
The Amazon SQS message attributes, the Map type is Map<String, MessageAttributeValue>
type: object
types:
text:
format: "text-plain"
description: Default String representation of the SQS message received from the queue.
mediaType: text/plain
cloudevents:
format: "aws2-sqs:application-cloudevents"
description: |-
Output data type represents AWS SQS receive message response as CloudEvent V1. The data type sets Camel specific CloudEvent headers on the exchange with
respective data from the SQS message and its derived object.
headers:
CamelCloudEventID:
title: CloudEvent ID
description: The Camel exchange id set as event id
type: string
CamelCloudEventType:
title: CloudEvent Type
description: The event type
default: "org.apache.camel.event.aws.sqs.receiveMessage"
type: string
CamelCloudEventSource:
title: CloudEvent Source
description: The event source. By default, the SQS Received message receipt handle with prefix "aws.sqs.queue.".
type: string
CamelCloudEventSubject:
title: CloudEvent Subject
description: The event subject. The SQS message ID
type: string
CamelCloudEventTime:
title: CloudEvent Time
description: The exchange creation timestamp as event time.
type: string
dependencies:
- "camel:core"
- "camel:aws2-sqs"
Expand Down
Loading