@aws-sdk/client-appintegrations 3.312.0 → 3.316.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-cjs/AppIntegrations.js +19 -210
- package/dist-cjs/protocols/Aws_restJson1.js +164 -438
- package/dist-es/AppIntegrations.js +19 -210
- package/dist-es/protocols/Aws_restJson1.js +138 -412
- package/dist-types/AppIntegrations.d.ts +28 -77
- package/dist-types/ts3.4/AppIntegrations.d.ts +4 -1
- package/package.json +6 -6
|
@@ -15,156 +15,107 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
15
15
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
16
16
|
import { UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput } from "./commands/UpdateDataIntegrationCommand";
|
|
17
17
|
import { UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput } from "./commands/UpdateEventIntegrationCommand";
|
|
18
|
-
|
|
19
|
-
* @public
|
|
20
|
-
* <p>The Amazon AppIntegrations service enables you to configure and reuse connections to external
|
|
21
|
-
* applications.</p>
|
|
22
|
-
* <p>For information about how you can use external applications with Amazon Connect, see
|
|
23
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/crm.html">Set up pre-built
|
|
24
|
-
* integrations</a> and <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-wisdom.html">Deliver information to agents
|
|
25
|
-
* using Amazon Connect Wisdom</a> in the <i>Amazon Connect Administrator
|
|
26
|
-
* Guide</i>.</p>
|
|
27
|
-
*/
|
|
28
|
-
export declare class AppIntegrations extends AppIntegrationsClient {
|
|
18
|
+
export interface AppIntegrations {
|
|
29
19
|
/**
|
|
30
|
-
* @
|
|
31
|
-
* <p>Creates and persists a DataIntegration resource.</p>
|
|
32
|
-
* <note>
|
|
33
|
-
* <p>You cannot create a DataIntegration association for a DataIntegration that has been
|
|
34
|
-
* previously associated. Use a different DataIntegration, or recreate the DataIntegration
|
|
35
|
-
* using the <code>CreateDataIntegration</code> API.</p>
|
|
36
|
-
* </note>
|
|
20
|
+
* @see {@link CreateDataIntegrationCommand}
|
|
37
21
|
*/
|
|
38
22
|
createDataIntegration(args: CreateDataIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataIntegrationCommandOutput>;
|
|
39
23
|
createDataIntegration(args: CreateDataIntegrationCommandInput, cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void): void;
|
|
40
24
|
createDataIntegration(args: CreateDataIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void): void;
|
|
41
25
|
/**
|
|
42
|
-
* @
|
|
43
|
-
* <p>Creates an EventIntegration, given a specified name, description, and a reference to an
|
|
44
|
-
* Amazon EventBridge bus in your account and a partner event source that pushes events to
|
|
45
|
-
* that bus. No objects are created in the your account, only metadata that is persisted on the
|
|
46
|
-
* EventIntegration control plane.</p>
|
|
26
|
+
* @see {@link CreateEventIntegrationCommand}
|
|
47
27
|
*/
|
|
48
28
|
createEventIntegration(args: CreateEventIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<CreateEventIntegrationCommandOutput>;
|
|
49
29
|
createEventIntegration(args: CreateEventIntegrationCommandInput, cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void): void;
|
|
50
30
|
createEventIntegration(args: CreateEventIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void): void;
|
|
51
31
|
/**
|
|
52
|
-
* @
|
|
53
|
-
* <p>Deletes the DataIntegration. Only DataIntegrations that don't have any
|
|
54
|
-
* DataIntegrationAssociations can be deleted. Deleting a DataIntegration also deletes the
|
|
55
|
-
* underlying Amazon AppFlow flow and service linked role. </p>
|
|
56
|
-
* <note>
|
|
57
|
-
* <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
|
|
58
|
-
* Use a different DataIntegration, or recreate the DataIntegration using the
|
|
59
|
-
* <a href="https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html">CreateDataIntegration</a> API.</p>
|
|
60
|
-
* </note>
|
|
32
|
+
* @see {@link DeleteDataIntegrationCommand}
|
|
61
33
|
*/
|
|
62
34
|
deleteDataIntegration(args: DeleteDataIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataIntegrationCommandOutput>;
|
|
63
35
|
deleteDataIntegration(args: DeleteDataIntegrationCommandInput, cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void): void;
|
|
64
36
|
deleteDataIntegration(args: DeleteDataIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void): void;
|
|
65
37
|
/**
|
|
66
|
-
* @
|
|
67
|
-
* <p>Deletes the specified existing event integration. If the event integration is associated
|
|
68
|
-
* with clients, the request is rejected.</p>
|
|
38
|
+
* @see {@link DeleteEventIntegrationCommand}
|
|
69
39
|
*/
|
|
70
40
|
deleteEventIntegration(args: DeleteEventIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEventIntegrationCommandOutput>;
|
|
71
41
|
deleteEventIntegration(args: DeleteEventIntegrationCommandInput, cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void): void;
|
|
72
42
|
deleteEventIntegration(args: DeleteEventIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void): void;
|
|
73
43
|
/**
|
|
74
|
-
* @
|
|
75
|
-
* <p>Returns information about the DataIntegration.</p>
|
|
76
|
-
* <note>
|
|
77
|
-
* <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
|
|
78
|
-
* Use a different DataIntegration, or recreate the DataIntegration using the
|
|
79
|
-
* <a href="https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html">CreateDataIntegration</a> API.</p>
|
|
80
|
-
* </note>
|
|
44
|
+
* @see {@link GetDataIntegrationCommand}
|
|
81
45
|
*/
|
|
82
46
|
getDataIntegration(args: GetDataIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<GetDataIntegrationCommandOutput>;
|
|
83
47
|
getDataIntegration(args: GetDataIntegrationCommandInput, cb: (err: any, data?: GetDataIntegrationCommandOutput) => void): void;
|
|
84
48
|
getDataIntegration(args: GetDataIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataIntegrationCommandOutput) => void): void;
|
|
85
49
|
/**
|
|
86
|
-
* @
|
|
87
|
-
* <p>Returns information about the event integration.</p>
|
|
50
|
+
* @see {@link GetEventIntegrationCommand}
|
|
88
51
|
*/
|
|
89
52
|
getEventIntegration(args: GetEventIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<GetEventIntegrationCommandOutput>;
|
|
90
53
|
getEventIntegration(args: GetEventIntegrationCommandInput, cb: (err: any, data?: GetEventIntegrationCommandOutput) => void): void;
|
|
91
54
|
getEventIntegration(args: GetEventIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventIntegrationCommandOutput) => void): void;
|
|
92
55
|
/**
|
|
93
|
-
* @
|
|
94
|
-
* <p>Returns a paginated list of DataIntegration associations in the account.</p>
|
|
95
|
-
* <note>
|
|
96
|
-
* <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
|
|
97
|
-
* Use a different DataIntegration, or recreate the DataIntegration using the
|
|
98
|
-
* <a href="https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html">CreateDataIntegration</a> API.</p>
|
|
99
|
-
* </note>
|
|
56
|
+
* @see {@link ListDataIntegrationAssociationsCommand}
|
|
100
57
|
*/
|
|
101
58
|
listDataIntegrationAssociations(args: ListDataIntegrationAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataIntegrationAssociationsCommandOutput>;
|
|
102
59
|
listDataIntegrationAssociations(args: ListDataIntegrationAssociationsCommandInput, cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void): void;
|
|
103
60
|
listDataIntegrationAssociations(args: ListDataIntegrationAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void): void;
|
|
104
61
|
/**
|
|
105
|
-
* @
|
|
106
|
-
* <p>Returns a paginated list of DataIntegrations in the account.</p>
|
|
107
|
-
* <note>
|
|
108
|
-
* <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
|
|
109
|
-
* Use a different DataIntegration, or recreate the DataIntegration using the
|
|
110
|
-
* <a href="https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html">CreateDataIntegration</a> API.</p>
|
|
111
|
-
* </note>
|
|
62
|
+
* @see {@link ListDataIntegrationsCommand}
|
|
112
63
|
*/
|
|
113
64
|
listDataIntegrations(args: ListDataIntegrationsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataIntegrationsCommandOutput>;
|
|
114
65
|
listDataIntegrations(args: ListDataIntegrationsCommandInput, cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void): void;
|
|
115
66
|
listDataIntegrations(args: ListDataIntegrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void): void;
|
|
116
67
|
/**
|
|
117
|
-
* @
|
|
118
|
-
* <p>Returns a paginated list of event integration associations in the account. </p>
|
|
68
|
+
* @see {@link ListEventIntegrationAssociationsCommand}
|
|
119
69
|
*/
|
|
120
70
|
listEventIntegrationAssociations(args: ListEventIntegrationAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventIntegrationAssociationsCommandOutput>;
|
|
121
71
|
listEventIntegrationAssociations(args: ListEventIntegrationAssociationsCommandInput, cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void): void;
|
|
122
72
|
listEventIntegrationAssociations(args: ListEventIntegrationAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void): void;
|
|
123
73
|
/**
|
|
124
|
-
* @
|
|
125
|
-
* <p>Returns a paginated list of event integrations in the account.</p>
|
|
74
|
+
* @see {@link ListEventIntegrationsCommand}
|
|
126
75
|
*/
|
|
127
76
|
listEventIntegrations(args: ListEventIntegrationsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventIntegrationsCommandOutput>;
|
|
128
77
|
listEventIntegrations(args: ListEventIntegrationsCommandInput, cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void): void;
|
|
129
78
|
listEventIntegrations(args: ListEventIntegrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void): void;
|
|
130
79
|
/**
|
|
131
|
-
* @
|
|
132
|
-
* <p>Lists the tags for the specified resource.</p>
|
|
80
|
+
* @see {@link ListTagsForResourceCommand}
|
|
133
81
|
*/
|
|
134
82
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
135
83
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
136
84
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
137
85
|
/**
|
|
138
|
-
* @
|
|
139
|
-
* <p>Adds the specified tags to the specified resource.</p>
|
|
86
|
+
* @see {@link TagResourceCommand}
|
|
140
87
|
*/
|
|
141
88
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
142
89
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
143
90
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
144
91
|
/**
|
|
145
|
-
* @
|
|
146
|
-
* <p>Removes the specified tags from the specified resource.</p>
|
|
92
|
+
* @see {@link UntagResourceCommand}
|
|
147
93
|
*/
|
|
148
94
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
149
95
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
150
96
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
151
97
|
/**
|
|
152
|
-
* @
|
|
153
|
-
* <p>Updates the description of a DataIntegration.</p>
|
|
154
|
-
* <note>
|
|
155
|
-
* <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
|
|
156
|
-
* Use a different DataIntegration, or recreate the DataIntegration using the
|
|
157
|
-
* <a href="https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html">CreateDataIntegration</a> API.</p>
|
|
158
|
-
* </note>
|
|
98
|
+
* @see {@link UpdateDataIntegrationCommand}
|
|
159
99
|
*/
|
|
160
100
|
updateDataIntegration(args: UpdateDataIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDataIntegrationCommandOutput>;
|
|
161
101
|
updateDataIntegration(args: UpdateDataIntegrationCommandInput, cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void): void;
|
|
162
102
|
updateDataIntegration(args: UpdateDataIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void): void;
|
|
163
103
|
/**
|
|
164
|
-
* @
|
|
165
|
-
* <p>Updates the description of an event integration.</p>
|
|
104
|
+
* @see {@link UpdateEventIntegrationCommand}
|
|
166
105
|
*/
|
|
167
106
|
updateEventIntegration(args: UpdateEventIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEventIntegrationCommandOutput>;
|
|
168
107
|
updateEventIntegration(args: UpdateEventIntegrationCommandInput, cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void): void;
|
|
169
108
|
updateEventIntegration(args: UpdateEventIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void): void;
|
|
170
109
|
}
|
|
110
|
+
/**
|
|
111
|
+
* @public
|
|
112
|
+
* <p>The Amazon AppIntegrations service enables you to configure and reuse connections to external
|
|
113
|
+
* applications.</p>
|
|
114
|
+
* <p>For information about how you can use external applications with Amazon Connect, see
|
|
115
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/crm.html">Set up pre-built
|
|
116
|
+
* integrations</a> and <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-wisdom.html">Deliver information to agents
|
|
117
|
+
* using Amazon Connect Wisdom</a> in the <i>Amazon Connect Administrator
|
|
118
|
+
* Guide</i>.</p>
|
|
119
|
+
*/
|
|
120
|
+
export declare class AppIntegrations extends AppIntegrationsClient implements AppIntegrations {
|
|
121
|
+
}
|
|
@@ -60,7 +60,7 @@ import {
|
|
|
60
60
|
UpdateEventIntegrationCommandInput,
|
|
61
61
|
UpdateEventIntegrationCommandOutput,
|
|
62
62
|
} from "./commands/UpdateEventIntegrationCommand";
|
|
63
|
-
export
|
|
63
|
+
export interface AppIntegrations {
|
|
64
64
|
createDataIntegration(
|
|
65
65
|
args: CreateDataIntegrationCommandInput,
|
|
66
66
|
options?: __HttpHandlerOptions
|
|
@@ -257,3 +257,6 @@ export declare class AppIntegrations extends AppIntegrationsClient {
|
|
|
257
257
|
cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void
|
|
258
258
|
): void;
|
|
259
259
|
}
|
|
260
|
+
export declare class AppIntegrations
|
|
261
|
+
extends AppIntegrationsClient
|
|
262
|
+
implements AppIntegrations {}
|
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.316.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|