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

Destiantion Kinesis: add required fields #16952

Merged
merged 2 commits into from
Sep 22, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ ENV APPLICATION destination-kinesis

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.1.4
LABEL io.airbyte.version=0.1.5
LABEL io.airbyte.name=airbyte/destination-kinesis
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,21 @@
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Kinesis Destination Spec",
"type": "object",
"required": ["shardCount", "accessKey", "privateKey", "bufferSize"],
"required": ["endpoint", "region", "shardCount", "accessKey", "privateKey", "bufferSize"],
"additionalProperties": true,
"properties": {
"endpoint": {
"title": "Endpoint",
"description": "AWS Kinesis endpoint.",
"type": "string",
"examples": ["kinesis.us‑west‑1.amazonaws.com"],
"order": 0
},
"region": {
"title": "Region",
"description": "AWS region. Your account determines the Regions that are available to you.",
"type": "string",
"examples": ["us‑west‑1"],
"order": 1
},
"shardCount": {
Expand Down
4 changes: 2 additions & 2 deletions docs/integrations/destinations/kinesis.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ The connector buffer size should also be tweaked according to your data size and

* The connector is compatible with the latest Kinesis service version at the time of this writing.
* Configuration
* **_Endpoint_**(`Optional`): Aws Kinesis endpoint to connect to. Default endpoint if not provided
alexandr-shegeda marked this conversation as resolved.
Show resolved Hide resolved
* **_Region_**(`Optional`): Aws Kinesis region to connect to. Default region if not provided.
* **_Endpoint_**: Aws Kinesis endpoint to connect to. Default endpoint if not provided
* **_Region_**: Aws Kinesis region to connect to. Default region if not provided.
* **_shardCount_**: The number of shards with which the stream should be created. The amount of shards affects the throughput of your stream.
* **_accessKey_**: Access key credential for authenticating with the service.
* **_privateKey_**: Private key credential for authenticating with the service.
Expand Down