@aws-sdk/client-appintegrations 3.300.0 → 3.303.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 +8 -8
- package/dist-types/commands/CreateEventIntegrationCommand.d.ts +3 -3
- package/dist-types/commands/DeleteDataIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEventIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/GetDataIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/GetEventIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/ListDataIntegrationAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListDataIntegrationsCommand.d.ts +1 -1
- package/dist-types/commands/ListEventIntegrationAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListEventIntegrationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDataIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEventIntegrationCommand.d.ts +1 -1
- package/package.json +34 -34
|
@@ -31,31 +31,31 @@ 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 = {
|
|
34
|
+
* const input = { // CreateDataIntegrationRequest
|
|
35
35
|
* Name: "STRING_VALUE", // required
|
|
36
36
|
* Description: "STRING_VALUE",
|
|
37
37
|
* KmsKey: "STRING_VALUE", // required
|
|
38
38
|
* SourceURI: "STRING_VALUE", // required
|
|
39
|
-
* ScheduleConfig: {
|
|
39
|
+
* ScheduleConfig: { // ScheduleConfiguration
|
|
40
40
|
* FirstExecutionFrom: "STRING_VALUE",
|
|
41
41
|
* Object: "STRING_VALUE",
|
|
42
42
|
* ScheduleExpression: "STRING_VALUE", // required
|
|
43
43
|
* },
|
|
44
|
-
* Tags: {
|
|
44
|
+
* Tags: { // TagMap
|
|
45
45
|
* "<keys>": "STRING_VALUE",
|
|
46
46
|
* },
|
|
47
47
|
* ClientToken: "STRING_VALUE",
|
|
48
|
-
* FileConfiguration: {
|
|
49
|
-
* Folders: [ // required
|
|
48
|
+
* FileConfiguration: { // FileConfiguration
|
|
49
|
+
* Folders: [ // FolderList // required
|
|
50
50
|
* "STRING_VALUE",
|
|
51
51
|
* ],
|
|
52
|
-
* Filters: {
|
|
53
|
-
* "<keys>": [
|
|
52
|
+
* Filters: { // FieldsMap
|
|
53
|
+
* "<keys>": [ // FieldsList
|
|
54
54
|
* "STRING_VALUE",
|
|
55
55
|
* ],
|
|
56
56
|
* },
|
|
57
57
|
* },
|
|
58
|
-
* ObjectConfiguration: {
|
|
58
|
+
* ObjectConfiguration: { // ObjectConfiguration
|
|
59
59
|
* "<keys>": {
|
|
60
60
|
* "<keys>": [
|
|
61
61
|
* "STRING_VALUE",
|
|
@@ -29,15 +29,15 @@ 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 = {
|
|
32
|
+
* const input = { // CreateEventIntegrationRequest
|
|
33
33
|
* Name: "STRING_VALUE", // required
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
35
|
-
* EventFilter: {
|
|
35
|
+
* EventFilter: { // EventFilter
|
|
36
36
|
* Source: "STRING_VALUE", // required
|
|
37
37
|
* },
|
|
38
38
|
* EventBridgeBus: "STRING_VALUE", // required
|
|
39
39
|
* ClientToken: "STRING_VALUE",
|
|
40
|
-
* Tags: {
|
|
40
|
+
* Tags: { // TagMap
|
|
41
41
|
* "<keys>": "STRING_VALUE",
|
|
42
42
|
* },
|
|
43
43
|
* };
|
|
@@ -33,7 +33,7 @@ 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 = {
|
|
36
|
+
* const input = { // DeleteDataIntegrationRequest
|
|
37
37
|
* DataIntegrationIdentifier: "STRING_VALUE", // required
|
|
38
38
|
* };
|
|
39
39
|
* const command = new DeleteDataIntegrationCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteEventIntegrationRequest
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteEventIntegrationCommand(input);
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // GetDataIntegrationRequest
|
|
35
35
|
* Identifier: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new GetDataIntegrationCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetEventIntegrationRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetEventIntegrationCommand(input);
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // ListDataIntegrationAssociationsRequest
|
|
35
35
|
* DataIntegrationIdentifier: "STRING_VALUE", // required
|
|
36
36
|
* NextToken: "STRING_VALUE",
|
|
37
37
|
* MaxResults: Number("int"),
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // ListDataIntegrationsRequest
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
36
36
|
* MaxResults: Number("int"),
|
|
37
37
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListEventIntegrationAssociationsRequest
|
|
30
30
|
* EventIntegrationName: "STRING_VALUE", // required
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListEventIntegrationsRequest
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tags: { // required
|
|
31
|
+
* tags: { // TagMap // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // UpdateDataIntegrationRequest
|
|
35
35
|
* Identifier: "STRING_VALUE", // required
|
|
36
36
|
* Name: "STRING_VALUE",
|
|
37
37
|
* Description: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateEventIntegrationRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* Description: "STRING_VALUE",
|
|
32
32
|
* };
|
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.303.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,43 +21,43 @@
|
|
|
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.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|