Skip to content

Commit

Permalink
chore: Fix AWS SQS source optional parameters
Browse files Browse the repository at this point in the history
(cherry picked from commit f2ad155)
  • Loading branch information
christophd committed Sep 17, 2024
1 parent 3939a34 commit 2e51d71
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions kamelets/aws-sqs-source.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ spec:
enum: ["ap-south-1", "eu-south-1", "us-gov-east-1", "me-central-1", "ca-central-1", "eu-central-1", "us-iso-west-1", "us-west-1", "us-west-2", "af-south-1", "eu-north-1", "eu-west-3", "eu-west-2", "eu-west-1", "ap-northeast-3", "ap-northeast-2", "ap-northeast-1", "me-south-1", "sa-east-1", "ap-east-1", "cn-north-1", "us-gov-west-1", "ap-southeast-1", "ap-southeast-2", "us-iso-east-1", "ap-southeast-3", "us-east-1", "us-east-2", "cn-northwest-1", "us-isob-east-1", "aws-global", "aws-cn-global", "aws-us-gov-global", "aws-iso-global", "aws-iso-b-global"]
autoCreateQueue:
title: Autocreate Queue
description: Setting the autocreation of the SQS queue.
description: Setting the autocreation of the SQS queue.
type: boolean
default: false
amazonAWSHost:
title: AWS Host
description: The hostname of the Amazon AWS cloud.
description: The hostname of the Amazon AWS cloud.
type: string
default: amazonaws.com
protocol:
Expand Down Expand Up @@ -250,7 +250,7 @@ spec:
delay: "{{delay}}"
greedy: "{{greedy}}"
maxMessagesPerPoll: "{{maxMessagesPerPoll}}"
waitTimeSeconds: "{{waitTimeSeconds}}"
visibilityTimeout: "{{visibilityTimeout}}"
waitTimeSeconds: "{{?waitTimeSeconds}}"
visibilityTimeout: "{{?visibilityTimeout}}"
steps:
- to: "kamelet:sink"
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ spec:
enum: ["ap-south-1", "eu-south-1", "us-gov-east-1", "me-central-1", "ca-central-1", "eu-central-1", "us-iso-west-1", "us-west-1", "us-west-2", "af-south-1", "eu-north-1", "eu-west-3", "eu-west-2", "eu-west-1", "ap-northeast-3", "ap-northeast-2", "ap-northeast-1", "me-south-1", "sa-east-1", "ap-east-1", "cn-north-1", "us-gov-west-1", "ap-southeast-1", "ap-southeast-2", "us-iso-east-1", "ap-southeast-3", "us-east-1", "us-east-2", "cn-northwest-1", "us-isob-east-1", "aws-global", "aws-cn-global", "aws-us-gov-global", "aws-iso-global", "aws-iso-b-global"]
autoCreateQueue:
title: Autocreate Queue
description: Setting the autocreation of the SQS queue.
description: Setting the autocreation of the SQS queue.
type: boolean
default: false
amazonAWSHost:
title: AWS Host
description: The hostname of the Amazon AWS cloud.
description: The hostname of the Amazon AWS cloud.
type: string
default: amazonaws.com
protocol:
Expand Down Expand Up @@ -250,7 +250,7 @@ spec:
delay: "{{delay}}"
greedy: "{{greedy}}"
maxMessagesPerPoll: "{{maxMessagesPerPoll}}"
waitTimeSeconds: "{{waitTimeSeconds}}"
visibilityTimeout: "{{visibilityTimeout}}"
waitTimeSeconds: "{{?waitTimeSeconds}}"
visibilityTimeout: "{{?visibilityTimeout}}"
steps:
- to: "kamelet:sink"

0 comments on commit 2e51d71

Please sign in to comment.