Skip to content

Commit

Permalink
chore: update AWS descriptions and add keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
philippfromme committed Nov 4, 2024
1 parent 99ddcb4 commit 463aa59
Show file tree
Hide file tree
Showing 10 changed files with 71 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,14 @@
type = "io.camunda:aws-bedrock:1")
@ElementTemplate(
id = "io.camunda.connectors.aws.bedrock.v1",
name = "AWS BedRock Outbound Connector",
description = "Execute bedrock requests",
name = "AWS Bedrock Outbound Connector",
description = "Invoke models and converse using AWS Bedrock.",
metadata = @ElementTemplate.Metadata(keywords = {
"invoke model",
"run inference",
"invokemodel API",
"converse API"
}),
inputDataClass = BedrockRequest.class,
version = 1,
propertyGroups = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,18 @@
id = "io.camunda.connectors.AWSDynamoDB.v1",
name = "AWS DynamoDB Outbound Connector",
version = 7,
description = "Work with tables and items using AWS DynamoDB service",
description = "Manage tables and items with AWS DynamoDB.",
metadata = @ElementTemplate.Metadata(keywords = {
"create table",
"delete table",
"update table",
"describe table",
"scan table",
"add item",
"delete item",
"get item",
"update item"
}),
documentationRef =
"https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/aws-dynamodb/",
propertyGroups = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,18 @@
id = "io.camunda.connectors.AWSEventBridge.v1",
name = "Amazon EventBridge Outbound Connector",
description = "Send events to AWS EventBridge",
metadata = @ElementTemplate.Metadata(keywords = {
"emit event",
"publish event",
"send event",
"trigger event"
}),
inputDataClass = AwsEventBridgeRequest.class,
version = 5,
propertyGroups = {
@ElementTemplate.PropertyGroup(id = "authentication", label = "Authentication"),
@ElementTemplate.PropertyGroup(id = "configuration", label = "Queue properties"),
@ElementTemplate.PropertyGroup(id = "eventDetails", label = "eventDetails"),
@ElementTemplate.PropertyGroup(id = "eventDetails", label = "Event Details"),
@ElementTemplate.PropertyGroup(id = "eventPayload", label = "Event Payload")
},
documentationRef =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@
@ElementTemplate(
id = "io.camunda.connectors.AWSLAMBDA.v2",
name = "AWS Lambda Outbound Connector",
description = "Invoke a function",
description = "Invoke AWS Lambda functions.",
metadata = @ElementTemplate.Metadata(keywords = {
"invoke function",
"run function"
}),
inputDataClass = AwsLambdaRequest.class,
version = 5,
propertyGroups = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@
@ElementTemplate(
id = "io.camunda.connectors.AWSSAGEMAKER.v1",
name = "AWS SageMaker Outbound Connector",
description = "Execute SageMaker models",
description = "Run inferences using AWS SageMaker.",
metadata = @ElementTemplate.Metadata(keywords = {
"run inference",
"perform asynchronous inference",
"perform real-time inference"
}),
inputDataClass = SageMakerRequest.class,
version = 1,
propertyGroups = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,15 @@
@InboundConnector(name = "AWS SNS Inbound", type = "io.camunda:aws-sns-webhook:1")
@ElementTemplate(
id = "io.camunda.connectors.AWSSNS.inbound.v1",
name = "SNS HTTPS Connectorr",
name = "SNS HTTPS Connector",
icon = "icon.svg",
version = 4,
inputDataClass = SnsWebhookConnectorPropertiesWrapper.class,
description = "Receive events from AWS SNS",
description = "Receive messages from AWS SNS via HTTPS.",
metadata = @ElementTemplate.Metadata(keywords = {
"receive event",
"receive message"
}),
documentationRef =
"https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/amazon-sns/?amazonsns=inbound",
propertyGroups = {@PropertyGroup(id = "subscription", label = "Subscription Configuration")},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@
@ElementTemplate(
id = "io.camunda.connectors.AWSSNS.v1",
name = "Amazon SNS Outbound connector",
description = "Send message to topic",
description = "Send messages to Amazon SNS.",
metadata = @ElementTemplate.Metadata(keywords = {
"send message",
"publish message"
}),
inputDataClass = SnsConnectorRequest.class,
version = 7,
propertyGroups = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,13 @@
icon = "icon.svg",
version = 9,
inputDataClass = SqsInboundProperties.class,
description = "Receive message from a queue",
description = "Receive messages from Amazon SQS.",
metadata = @ElementTemplate.Metadata(keywords = {
"receive message",
"receive event",
"receive message from queue",
"receive event from queue"
}),
documentationRef =
"https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/amazon-sqs/?amazonsqs=inbound",
propertyGroups = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@
@ElementTemplate(
id = "io.camunda.connectors.AWSSQS.v1",
name = "Amazon SQS Outbound Connector",
description = "Send message to queue",
description = "Send messages to Amazon SQS.",
metadata = @ElementTemplate.Metadata(keywords = {
"send message",
"publish message",
"send message to queue"
"publish message to queue"
}),
inputDataClass = SqsConnectorRequest.class,
version = 10,
propertyGroups = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,14 @@
@ElementTemplate(
id = "io.camunda.connectors.AWSTEXTRACT.v1",
name = "AWS Textract Outbound Connector",
description =
"Automatically extract printed text, handwriting, layout elements, and data from any document",
description = "Extract text and data using AWS Textract.",
metadata = @ElementTemplate.Metadata(keywords = {
"extract text",
"extract data",
"extract text from image",
"extract data from image",
"ocr"
}),
inputDataClass = TextractRequest.class,
version = 1,
propertyGroups = {
Expand Down

0 comments on commit 463aa59

Please sign in to comment.