-
Notifications
You must be signed in to change notification settings - Fork 189
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
docs(aws-s3): add documentation for the new aws s3 connector #4746
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,200 @@ | ||
--- | ||
id: amazon-s3 | ||
sidebar_label: AWS S3 Connector | ||
title: Amazon S3 Connector | ||
description: Interact with Amazon S3 services from your BPMN process. | ||
--- | ||
|
||
The **Amazon S3 Connector** is an outbound Connector that allows you to interact with [Amazon Simple Storage Service (Amazon S3)](https://aws.amazon.com/S3/) from your BPMN process. | ||
|
||
## Prerequisites | ||
|
||
To use the **Amazon S3 Connector**, you will need an AWS account with an access key and secret key. | ||
|
||
The key will need the following permissions: | ||
|
||
- `GetObject` | ||
- `DeleteObject` | ||
- `PutObject` | ||
|
||
Learn more about Amazon S3 in the [Amazon Simple Storage Service Documentation](https://docs.aws.amazon.com/s3/). | ||
|
||
:::note | ||
Use Camunda secrets to store credentials and avoid exposing sensitive information from the process. See [managing secrets](/components/console/manage-clusters/manage-secrets.md). | ||
::: | ||
|
||
## Create an Amazon Bedrock Connector task | ||
|
||
import ConnectorTask from '../../../components/react-components/connector-task.md' | ||
|
||
<ConnectorTask/> | ||
|
||
## Authentication | ||
|
||
Select an authentication type from the **Authentication** dropdown. | ||
|
||
- **Credentials** (SaaS/Self-Managed): Select this option if you have a valid pair of access and secret keys provided by your AWS account administrator. This option is supported for both SaaS and Self-Managed users. | ||
|
||
- **Default Credentials Chain** (Hybrid/Self-Managed only): Select this option if your system is | ||
configured as an implicit authentication mechanism, such as role-based authentication, credentials supplied via | ||
environment variables, or files on target host. This option is only supported for Self-Managed or hybrid | ||
distributions. This approach uses | ||
the [Default Credential Provider Chain](https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/credentials.html) | ||
to resolve required credentials. | ||
|
||
If you select **Credentials**, you must supply the appropriate | ||
credentials: | ||
|
||
- **Access key**: Provide an access key of a user with permissions to the Amazon S3 actions. | ||
- **Secret key**: Provide the secret key of the user with the access key provided above. | ||
|
||
:::note | ||
The **Access key** and the **Secret key** are required properties and must be provided to use the Connector. | ||
::: | ||
|
||
## Region | ||
|
||
In the **Region** field, enter the region of the deployed endpoint. | ||
|
||
## Action | ||
|
||
The Amazon S3 Connector supports the following actions: | ||
|
||
- `Upload Document` | ||
- `Download Document` | ||
- `Delete Document` | ||
|
||
### Upload Document | ||
|
||
Upload a document. The incoming document must be a reference from the previous process. | ||
|
||
#### Parameters | ||
|
||
| Parameter | Description | | ||
| :----------- | :----------------------------------------------------------------------------------------------------- | | ||
| `AWS bucket` | The targeted AWS S3 bucket where the document should be uploaded. | | ||
| `AWS key` | The key of the document that uniquely identifies the object in an Amazon S3 bucket. | | ||
| `Document` | The document that should be uploaded to S3, provided as a FEEL expression with the document reference. | | ||
|
||
:::info | ||
To learn more about Friendly Enough Expression Language (FEEL) expressions, | ||
see [what is FEEL?](/components/modeler/feel/what-is-feel.md). | ||
::: | ||
|
||
#### Response Structure | ||
|
||
The following JSON response is returned after a successful document upload operation: | ||
|
||
- `bucket`: Echoes back the bucket of the uploaded document. | ||
- `key`: Echoes back the unique key of the uploaded document. | ||
- `link`: The document link. | ||
|
||
#### Example Response | ||
|
||
The following example shows a successful send upload operation response: | ||
|
||
```json | ||
{ | ||
"bucket": "Example Subject", | ||
"key": true, | ||
"link": "https://mybucket.s3.amazonaws.com/test" | ||
} | ||
``` | ||
|
||
### Download Document | ||
|
||
Download the document from AWS S3. | ||
|
||
#### Parameters | ||
|
||
| Parameter | Description | | ||
| :---------------- | :-------------------------------------------------------------------------------------------------------------------------- | | ||
| `AWS bucket` | The targeted AWS S3 bucket that the document should be downloaded from. | | ||
| `AWS key` | The key of the document that uniquely identifies the object in an Amazon S3 bucket. | | ||
| `Create document` | Either `false` or `true`. If `false`, no document is created and the output is inserted as JSON, text, or base64 raw bytes. | | ||
|
||
:::info | ||
To learn more about Friendly Enough Expression Language (FEEL) expressions, | ||
see [what is FEEL?](/components/modeler/feel/what-is-feel.md). | ||
::: | ||
|
||
#### Response Structure | ||
|
||
The following JSON response is returned after a successful document download operation: | ||
|
||
- `bucket`: Echoes back the bucket of the uploaded document. | ||
- `key`: Echoes back the unique key of the uploaded document. | ||
- `document`: The document. This is always null if `Create document` is set to `false`, as no document reference is created. | ||
- `content`: The content of the downloaded document, shown as JSON, text, or base64 raw bytes depending on | ||
the content-type. | ||
|
||
#### Example Response | ||
|
||
The following examples show a successful download operation response: | ||
|
||
```json | ||
{ | ||
"bucket": "Example Subject", | ||
"key": true, | ||
"document": { | ||
"storeId": "in-memory", | ||
"documentId": "20f1fd6a-d8ea-403b-813c-e281c1193495", | ||
"metadata": { | ||
"contentType": "image/webp; name=305a4816-b3df-4724-acd3-010478a54add.webp", | ||
"size": 311032, | ||
"fileName": "305a4816-b3df-4724-acd3-010478a54add.webp" | ||
}, | ||
"documentType": "camunda" | ||
}, | ||
"content": null | ||
} | ||
``` | ||
|
||
or | ||
|
||
```json | ||
{ | ||
"bucket": "Example Subject", | ||
"key": true, | ||
"document": null, | ||
"content": { | ||
"json": { | ||
"testKey": "testValue" | ||
} | ||
} | ||
} | ||
``` | ||
|
||
### Delete Document | ||
|
||
Delete the document from AWS S3. | ||
|
||
#### Parameters | ||
|
||
| Parameter | Description | | ||
| :----------- | :---------------------------------------------------------------------------------- | | ||
| `AWS bucket` | The targeted AWS S3 bucket that the document should be deleted from. | | ||
| `AWS key` | The key of the document that uniquely identifies the object in an Amazon S3 bucket. | | ||
|
||
:::info | ||
To learn more about Friendly Enough Expression Language (FEEL) expressions, | ||
see [what is FEEL?](/components/modeler/feel/what-is-feel.md). | ||
::: | ||
|
||
#### Response Structure | ||
|
||
The following JSON response is returned after a successful document deletion operation: | ||
|
||
- `bucket`: Echoes back the bucket of the uploaded document. | ||
- `key`: Echoes back the unique key of the uploaded document. | ||
|
||
#### Example Response | ||
|
||
The following example shows a successful deletion operation response: | ||
|
||
```json | ||
{ | ||
"bucket": "Example Subject", | ||
"key": "document.txt" | ||
} | ||
``` |
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -250,8 +250,9 @@ export class TasklistModule implements OnModuleInit { | |||||||||||
logger.log("Tasklist credentials fetched"); | ||||||||||||
|
||||||||||||
axiosRef.defaults.baseURL = config.get("TASKLIST_API_ADDRESS"); | ||||||||||||
axiosRef.defaults.headers["Authorization"] = | ||||||||||||
`Bearer ${credentials.access_token}`; | ||||||||||||
axiosRef.defaults.headers[ | ||||||||||||
"Authorization" | ||||||||||||
] = `Bearer ${credentials.access_token}`; | ||||||||||||
Comment on lines
+253
to
+255
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [prettier] reported by reviewdog 🐶
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mathias-vandaele Is this Prettier suggestion okay to commit - looks ok, but want to check 👍 |
||||||||||||
axiosRef.defaults.headers["Content-Type"] = "application/json"; | ||||||||||||
setTimeout(this.onModuleInit.bind(this), credentials.expires_in * 1000); // we need convert minutes to milliseconds | ||||||||||||
} | ||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -250,8 +250,9 @@ export class TasklistModule implements OnModuleInit { | |||||||||||
logger.log("Tasklist credentials fetched"); | ||||||||||||
|
||||||||||||
axiosRef.defaults.baseURL = config.get("TASKLIST_API_ADDRESS"); | ||||||||||||
axiosRef.defaults.headers["Authorization"] = | ||||||||||||
`Bearer ${credentials.access_token}`; | ||||||||||||
axiosRef.defaults.headers[ | ||||||||||||
"Authorization" | ||||||||||||
] = `Bearer ${credentials.access_token}`; | ||||||||||||
Comment on lines
+253
to
+255
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [prettier] reported by reviewdog 🐶
Suggested change
|
||||||||||||
axiosRef.defaults.headers["Content-Type"] = "application/json"; | ||||||||||||
setTimeout(this.onModuleInit.bind(this), credentials.expires_in * 1000); // we need convert minutes to milliseconds | ||||||||||||
} | ||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -250,8 +250,9 @@ export class TasklistModule implements OnModuleInit { | |||||||||||
logger.log("Tasklist credentials fetched"); | ||||||||||||
|
||||||||||||
axiosRef.defaults.baseURL = config.get("TASKLIST_API_ADDRESS"); | ||||||||||||
axiosRef.defaults.headers["Authorization"] = | ||||||||||||
`Bearer ${credentials.access_token}`; | ||||||||||||
axiosRef.defaults.headers[ | ||||||||||||
"Authorization" | ||||||||||||
] = `Bearer ${credentials.access_token}`; | ||||||||||||
Comment on lines
+253
to
+255
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [prettier] reported by reviewdog 🐶
Suggested change
|
||||||||||||
axiosRef.defaults.headers["Content-Type"] = "application/json"; | ||||||||||||
setTimeout(this.onModuleInit.bind(this), credentials.expires_in * 1000); // we need convert minutes to milliseconds | ||||||||||||
} | ||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -250,8 +250,9 @@ export class TasklistModule implements OnModuleInit { | |||||||||||
logger.log("Tasklist credentials fetched"); | ||||||||||||
|
||||||||||||
axiosRef.defaults.baseURL = config.get("TASKLIST_API_ADDRESS"); | ||||||||||||
axiosRef.defaults.headers["Authorization"] = | ||||||||||||
`Bearer ${credentials.access_token}`; | ||||||||||||
axiosRef.defaults.headers[ | ||||||||||||
"Authorization" | ||||||||||||
] = `Bearer ${credentials.access_token}`; | ||||||||||||
Comment on lines
+253
to
+255
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [prettier] reported by reviewdog 🐶
Suggested change
|
||||||||||||
axiosRef.defaults.headers["Content-Type"] = "application/json"; | ||||||||||||
setTimeout(this.onModuleInit.bind(this), credentials.expires_in * 1000); // we need convert minutes to milliseconds | ||||||||||||
} | ||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[prettier] reported by reviewdog 🐶