Skip to content

Commit 26b2da6

Browse files
authored
[Components] Amazon Redshift - new components (#17457)
1 parent 32a419b commit 26b2da6

File tree

39 files changed

+1972
-144
lines changed

39 files changed

+1972
-144
lines changed

components/aws/actions/cloudwatch-logs-put-log-event/cloudwatch-logs-put-log-event.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
Uploads a log event to the specified log stream.
1010
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-cloudwatch-logs/classes/putlogeventscommand.html)
1111
`),
12-
version: "0.1.1",
12+
version: "0.1.2",
1313
type: "action",
1414
props: {
1515
aws: common.props.aws,

components/aws/actions/dynamodb-create-table/dynamodb-create-table.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default {
1010
Creates a new table to your account.
1111
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/createtablecommand.html)
1212
`),
13-
version: "0.2.1",
13+
version: "0.2.2",
1414
type: "action",
1515
props: {
1616
aws: common.props.aws,

components/aws/actions/dynamodb-execute-statement/dynamodb-execute-statement.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
This operation allows you to perform transactional reads or writes on data stored in DynamoDB, using PartiQL.
1010
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/executestatementcommand.html)
1111
`),
12-
version: "0.2.1",
12+
version: "0.2.2",
1313
type: "action",
1414
props: {
1515
aws: common.props.aws,

components/aws/actions/dynamodb-get-item/dynamodb-get-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default {
1010
If there is no matching item, Get Item does not return any data and there will be no Item element in the response.
1111
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/getitemcommand.html)
1212
`),
13-
version: "0.2.1",
13+
version: "0.2.2",
1414
type: "action",
1515
props: {
1616
aws: common.props.aws,

components/aws/actions/dynamodb-put-item/dynamodb-put-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default {
1515
the new item completely replaces the existing item.
1616
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/putitemcommand.html)
1717
`),
18-
version: "0.2.1",
18+
version: "0.2.2",
1919
type: "action",
2020
props: {
2121
aws: common.props.aws,

components/aws/actions/dynamodb-query/dynamodb-query.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default {
1212
The query operation finds items based on primary key values.
1313
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/querycommand.html)
1414
`),
15-
version: "0.5.1",
15+
version: "0.5.2",
1616
type: "action",
1717
props: {
1818
aws: common.props.aws,

components/aws/actions/dynamodb-scan/dynamodb-scan.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default {
1212
The Scan operation returns one or more items and item attributes by accessing every item in a table.
1313
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/scancommand.html)
1414
`),
15-
version: "0.2.1",
15+
version: "0.2.2",
1616
type: "action",
1717
props: {
1818
aws: common.props.aws,

components/aws/actions/dynamodb-update-item/dynamodb-update-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default {
1313
Updates an existing item's attributes, or adds a new item to the table if it does not already exist.
1414
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/updateitemcommand.html)
1515
`),
16-
version: "0.2.1",
16+
version: "0.2.2",
1717
type: "action",
1818
props: {
1919
aws: common.props.aws,

components/aws/actions/dynamodb-update-table/dynamodb-update-table.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default {
1010
Modifies the settings for a given table. Only one type of modification is permitted per request.
1111
[See docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/updatetablecommand.html)
1212
`),
13-
version: "0.2.1",
13+
version: "0.2.2",
1414
type: "action",
1515
props: {
1616
aws: common.props.aws,

components/aws/actions/eventbridge-send-event/eventbridge-send-event.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "aws-eventbridge-send-event",
77
name: "EventBridge - Send Event to Event Bus",
88
description: "Sends an event to an EventBridge event bus. [See documentation](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/eventbridge/command/PutEventsCommand/)",
9-
version: "0.4.2",
9+
version: "0.4.3",
1010
type: "action",
1111
props: {
1212
aws: common.props.aws,

0 commit comments

Comments
 (0)