@aws-sdk/client-appintegrations 3.299.0 → 3.301.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/CreateDataIntegrationCommand.d.ts +32 -0
- package/dist-types/commands/CreateEventIntegrationCommand.d.ts +12 -0
- package/dist-types/commands/DeleteDataIntegrationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteEventIntegrationCommand.d.ts +3 -0
- package/dist-types/commands/GetDataIntegrationCommand.d.ts +3 -0
- package/dist-types/commands/GetEventIntegrationCommand.d.ts +3 -0
- package/dist-types/commands/ListDataIntegrationAssociationsCommand.d.ts +5 -0
- package/dist-types/commands/ListDataIntegrationsCommand.d.ts +4 -0
- package/dist-types/commands/ListEventIntegrationAssociationsCommand.d.ts +5 -0
- package/dist-types/commands/ListEventIntegrationsCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDataIntegrationCommand.d.ts +5 -0
- package/dist-types/commands/UpdateEventIntegrationCommand.d.ts +4 -0
- package/package.json +8 -8
|
@@ -31,6 +31,38 @@ export interface CreateDataIntegrationCommandOutput extends CreateDataIntegratio
|
|
|
31
31
|
* import { AppIntegrationsClient, CreateDataIntegrationCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
32
32
|
* // const { AppIntegrationsClient, CreateDataIntegrationCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
33
33
|
* const client = new AppIntegrationsClient(config);
|
|
34
|
+
* const input = { // CreateDataIntegrationRequest
|
|
35
|
+
* Name: "STRING_VALUE", // required
|
|
36
|
+
* Description: "STRING_VALUE",
|
|
37
|
+
* KmsKey: "STRING_VALUE", // required
|
|
38
|
+
* SourceURI: "STRING_VALUE", // required
|
|
39
|
+
* ScheduleConfig: { // ScheduleConfiguration
|
|
40
|
+
* FirstExecutionFrom: "STRING_VALUE",
|
|
41
|
+
* Object: "STRING_VALUE",
|
|
42
|
+
* ScheduleExpression: "STRING_VALUE", // required
|
|
43
|
+
* },
|
|
44
|
+
* Tags: { // TagMap
|
|
45
|
+
* "<keys>": "STRING_VALUE",
|
|
46
|
+
* },
|
|
47
|
+
* ClientToken: "STRING_VALUE",
|
|
48
|
+
* FileConfiguration: { // FileConfiguration
|
|
49
|
+
* Folders: [ // FolderList // required
|
|
50
|
+
* "STRING_VALUE",
|
|
51
|
+
* ],
|
|
52
|
+
* Filters: { // FieldsMap
|
|
53
|
+
* "<keys>": [ // FieldsList
|
|
54
|
+
* "STRING_VALUE",
|
|
55
|
+
* ],
|
|
56
|
+
* },
|
|
57
|
+
* },
|
|
58
|
+
* ObjectConfiguration: { // ObjectConfiguration
|
|
59
|
+
* "<keys>": {
|
|
60
|
+
* "<keys>": [
|
|
61
|
+
* "STRING_VALUE",
|
|
62
|
+
* ],
|
|
63
|
+
* },
|
|
64
|
+
* },
|
|
65
|
+
* };
|
|
34
66
|
* const command = new CreateDataIntegrationCommand(input);
|
|
35
67
|
* const response = await client.send(command);
|
|
36
68
|
* ```
|
|
@@ -29,6 +29,18 @@ export interface CreateEventIntegrationCommandOutput extends CreateEventIntegrat
|
|
|
29
29
|
* import { AppIntegrationsClient, CreateEventIntegrationCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
30
30
|
* // const { AppIntegrationsClient, CreateEventIntegrationCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
31
31
|
* const client = new AppIntegrationsClient(config);
|
|
32
|
+
* const input = { // CreateEventIntegrationRequest
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* Description: "STRING_VALUE",
|
|
35
|
+
* EventFilter: { // EventFilter
|
|
36
|
+
* Source: "STRING_VALUE", // required
|
|
37
|
+
* },
|
|
38
|
+
* EventBridgeBus: "STRING_VALUE", // required
|
|
39
|
+
* ClientToken: "STRING_VALUE",
|
|
40
|
+
* Tags: { // TagMap
|
|
41
|
+
* "<keys>": "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* };
|
|
32
44
|
* const command = new CreateEventIntegrationCommand(input);
|
|
33
45
|
* const response = await client.send(command);
|
|
34
46
|
* ```
|
|
@@ -33,6 +33,9 @@ export interface DeleteDataIntegrationCommandOutput extends DeleteDataIntegratio
|
|
|
33
33
|
* import { AppIntegrationsClient, DeleteDataIntegrationCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
34
34
|
* // const { AppIntegrationsClient, DeleteDataIntegrationCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
35
35
|
* const client = new AppIntegrationsClient(config);
|
|
36
|
+
* const input = { // DeleteDataIntegrationRequest
|
|
37
|
+
* DataIntegrationIdentifier: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
36
39
|
* const command = new DeleteDataIntegrationCommand(input);
|
|
37
40
|
* const response = await client.send(command);
|
|
38
41
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DeleteEventIntegrationCommandOutput extends DeleteEventIntegrat
|
|
|
27
27
|
* import { AppIntegrationsClient, DeleteEventIntegrationCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
28
28
|
* // const { AppIntegrationsClient, DeleteEventIntegrationCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
29
29
|
* const client = new AppIntegrationsClient(config);
|
|
30
|
+
* const input = { // DeleteEventIntegrationRequest
|
|
31
|
+
* Name: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DeleteEventIntegrationCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -31,6 +31,9 @@ export interface GetDataIntegrationCommandOutput extends GetDataIntegrationRespo
|
|
|
31
31
|
* import { AppIntegrationsClient, GetDataIntegrationCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
32
32
|
* // const { AppIntegrationsClient, GetDataIntegrationCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
33
33
|
* const client = new AppIntegrationsClient(config);
|
|
34
|
+
* const input = { // GetDataIntegrationRequest
|
|
35
|
+
* Identifier: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
34
37
|
* const command = new GetDataIntegrationCommand(input);
|
|
35
38
|
* const response = await client.send(command);
|
|
36
39
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetEventIntegrationCommandOutput extends GetEventIntegrationRes
|
|
|
26
26
|
* import { AppIntegrationsClient, GetEventIntegrationCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
27
27
|
* // const { AppIntegrationsClient, GetEventIntegrationCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
28
28
|
* const client = new AppIntegrationsClient(config);
|
|
29
|
+
* const input = { // GetEventIntegrationRequest
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetEventIntegrationCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -31,6 +31,11 @@ export interface ListDataIntegrationAssociationsCommandOutput extends ListDataIn
|
|
|
31
31
|
* import { AppIntegrationsClient, ListDataIntegrationAssociationsCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
32
32
|
* // const { AppIntegrationsClient, ListDataIntegrationAssociationsCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
33
33
|
* const client = new AppIntegrationsClient(config);
|
|
34
|
+
* const input = { // ListDataIntegrationAssociationsRequest
|
|
35
|
+
* DataIntegrationIdentifier: "STRING_VALUE", // required
|
|
36
|
+
* NextToken: "STRING_VALUE",
|
|
37
|
+
* MaxResults: Number("int"),
|
|
38
|
+
* };
|
|
34
39
|
* const command = new ListDataIntegrationAssociationsCommand(input);
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
@@ -31,6 +31,10 @@ export interface ListDataIntegrationsCommandOutput extends ListDataIntegrationsR
|
|
|
31
31
|
* import { AppIntegrationsClient, ListDataIntegrationsCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
32
32
|
* // const { AppIntegrationsClient, ListDataIntegrationsCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
33
33
|
* const client = new AppIntegrationsClient(config);
|
|
34
|
+
* const input = { // ListDataIntegrationsRequest
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* MaxResults: Number("int"),
|
|
37
|
+
* };
|
|
34
38
|
* const command = new ListDataIntegrationsCommand(input);
|
|
35
39
|
* const response = await client.send(command);
|
|
36
40
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListEventIntegrationAssociationsCommandOutput extends ListEvent
|
|
|
26
26
|
* import { AppIntegrationsClient, ListEventIntegrationAssociationsCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
27
27
|
* // const { AppIntegrationsClient, ListEventIntegrationAssociationsCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
28
28
|
* const client = new AppIntegrationsClient(config);
|
|
29
|
+
* const input = { // ListEventIntegrationAssociationsRequest
|
|
30
|
+
* EventIntegrationName: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListEventIntegrationAssociationsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListEventIntegrationsCommandOutput extends ListEventIntegration
|
|
|
26
26
|
* import { AppIntegrationsClient, ListEventIntegrationsCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
27
27
|
* // const { AppIntegrationsClient, ListEventIntegrationsCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
28
28
|
* const client = new AppIntegrationsClient(config);
|
|
29
|
+
* const input = { // ListEventIntegrationsRequest
|
|
30
|
+
* NextToken: "STRING_VALUE",
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListEventIntegrationsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { AppIntegrationsClient, ListTagsForResourceCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
27
27
|
* // const { AppIntegrationsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
28
28
|
* const client = new AppIntegrationsClient(config);
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { AppIntegrationsClient, TagResourceCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
27
27
|
* // const { AppIntegrationsClient, TagResourceCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
28
28
|
* const client = new AppIntegrationsClient(config);
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tags: { // TagMap // required
|
|
32
|
+
* "<keys>": "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* };
|
|
29
35
|
* const command = new TagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { AppIntegrationsClient, UntagResourceCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
27
27
|
* // const { AppIntegrationsClient, UntagResourceCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
28
28
|
* const client = new AppIntegrationsClient(config);
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tagKeys: [ // TagKeyList // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -31,6 +31,11 @@ export interface UpdateDataIntegrationCommandOutput extends UpdateDataIntegratio
|
|
|
31
31
|
* import { AppIntegrationsClient, UpdateDataIntegrationCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
32
32
|
* // const { AppIntegrationsClient, UpdateDataIntegrationCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
33
33
|
* const client = new AppIntegrationsClient(config);
|
|
34
|
+
* const input = { // UpdateDataIntegrationRequest
|
|
35
|
+
* Identifier: "STRING_VALUE", // required
|
|
36
|
+
* Name: "STRING_VALUE",
|
|
37
|
+
* Description: "STRING_VALUE",
|
|
38
|
+
* };
|
|
34
39
|
* const command = new UpdateDataIntegrationCommand(input);
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface UpdateEventIntegrationCommandOutput extends UpdateEventIntegrat
|
|
|
26
26
|
* import { AppIntegrationsClient, UpdateEventIntegrationCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
27
27
|
* // const { AppIntegrationsClient, UpdateEventIntegrationCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
28
28
|
* const client = new AppIntegrationsClient(config);
|
|
29
|
+
* const input = { // UpdateEventIntegrationRequest
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* Description: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new UpdateEventIntegrationCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appintegrations",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appintegrations Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|