@aws-sdk/client-appintegrations 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/AppIntegrations.d.ts +259 -80
- package/dist-types/ts3.4/AppIntegrationsClient.d.ts +195 -88
- package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AppIntegrationsServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +322 -392
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-appintegrations
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-appintegrations
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-appintegrations
|
|
@@ -1,80 +1,259 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { AppIntegrationsClient } from "./AppIntegrationsClient";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AppIntegrationsClient } from "./AppIntegrationsClient";
|
|
3
|
+
import {
|
|
4
|
+
CreateDataIntegrationCommandInput,
|
|
5
|
+
CreateDataIntegrationCommandOutput,
|
|
6
|
+
} from "./commands/CreateDataIntegrationCommand";
|
|
7
|
+
import {
|
|
8
|
+
CreateEventIntegrationCommandInput,
|
|
9
|
+
CreateEventIntegrationCommandOutput,
|
|
10
|
+
} from "./commands/CreateEventIntegrationCommand";
|
|
11
|
+
import {
|
|
12
|
+
DeleteDataIntegrationCommandInput,
|
|
13
|
+
DeleteDataIntegrationCommandOutput,
|
|
14
|
+
} from "./commands/DeleteDataIntegrationCommand";
|
|
15
|
+
import {
|
|
16
|
+
DeleteEventIntegrationCommandInput,
|
|
17
|
+
DeleteEventIntegrationCommandOutput,
|
|
18
|
+
} from "./commands/DeleteEventIntegrationCommand";
|
|
19
|
+
import {
|
|
20
|
+
GetDataIntegrationCommandInput,
|
|
21
|
+
GetDataIntegrationCommandOutput,
|
|
22
|
+
} from "./commands/GetDataIntegrationCommand";
|
|
23
|
+
import {
|
|
24
|
+
GetEventIntegrationCommandInput,
|
|
25
|
+
GetEventIntegrationCommandOutput,
|
|
26
|
+
} from "./commands/GetEventIntegrationCommand";
|
|
27
|
+
import {
|
|
28
|
+
ListDataIntegrationAssociationsCommandInput,
|
|
29
|
+
ListDataIntegrationAssociationsCommandOutput,
|
|
30
|
+
} from "./commands/ListDataIntegrationAssociationsCommand";
|
|
31
|
+
import {
|
|
32
|
+
ListDataIntegrationsCommandInput,
|
|
33
|
+
ListDataIntegrationsCommandOutput,
|
|
34
|
+
} from "./commands/ListDataIntegrationsCommand";
|
|
35
|
+
import {
|
|
36
|
+
ListEventIntegrationAssociationsCommandInput,
|
|
37
|
+
ListEventIntegrationAssociationsCommandOutput,
|
|
38
|
+
} from "./commands/ListEventIntegrationAssociationsCommand";
|
|
39
|
+
import {
|
|
40
|
+
ListEventIntegrationsCommandInput,
|
|
41
|
+
ListEventIntegrationsCommandOutput,
|
|
42
|
+
} from "./commands/ListEventIntegrationsCommand";
|
|
43
|
+
import {
|
|
44
|
+
ListTagsForResourceCommandInput,
|
|
45
|
+
ListTagsForResourceCommandOutput,
|
|
46
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
47
|
+
import {
|
|
48
|
+
TagResourceCommandInput,
|
|
49
|
+
TagResourceCommandOutput,
|
|
50
|
+
} from "./commands/TagResourceCommand";
|
|
51
|
+
import {
|
|
52
|
+
UntagResourceCommandInput,
|
|
53
|
+
UntagResourceCommandOutput,
|
|
54
|
+
} from "./commands/UntagResourceCommand";
|
|
55
|
+
import {
|
|
56
|
+
UpdateDataIntegrationCommandInput,
|
|
57
|
+
UpdateDataIntegrationCommandOutput,
|
|
58
|
+
} from "./commands/UpdateDataIntegrationCommand";
|
|
59
|
+
import {
|
|
60
|
+
UpdateEventIntegrationCommandInput,
|
|
61
|
+
UpdateEventIntegrationCommandOutput,
|
|
62
|
+
} from "./commands/UpdateEventIntegrationCommand";
|
|
63
|
+
export declare class AppIntegrations extends AppIntegrationsClient {
|
|
64
|
+
createDataIntegration(
|
|
65
|
+
args: CreateDataIntegrationCommandInput,
|
|
66
|
+
options?: __HttpHandlerOptions
|
|
67
|
+
): Promise<CreateDataIntegrationCommandOutput>;
|
|
68
|
+
createDataIntegration(
|
|
69
|
+
args: CreateDataIntegrationCommandInput,
|
|
70
|
+
cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void
|
|
71
|
+
): void;
|
|
72
|
+
createDataIntegration(
|
|
73
|
+
args: CreateDataIntegrationCommandInput,
|
|
74
|
+
options: __HttpHandlerOptions,
|
|
75
|
+
cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void
|
|
76
|
+
): void;
|
|
77
|
+
createEventIntegration(
|
|
78
|
+
args: CreateEventIntegrationCommandInput,
|
|
79
|
+
options?: __HttpHandlerOptions
|
|
80
|
+
): Promise<CreateEventIntegrationCommandOutput>;
|
|
81
|
+
createEventIntegration(
|
|
82
|
+
args: CreateEventIntegrationCommandInput,
|
|
83
|
+
cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void
|
|
84
|
+
): void;
|
|
85
|
+
createEventIntegration(
|
|
86
|
+
args: CreateEventIntegrationCommandInput,
|
|
87
|
+
options: __HttpHandlerOptions,
|
|
88
|
+
cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void
|
|
89
|
+
): void;
|
|
90
|
+
deleteDataIntegration(
|
|
91
|
+
args: DeleteDataIntegrationCommandInput,
|
|
92
|
+
options?: __HttpHandlerOptions
|
|
93
|
+
): Promise<DeleteDataIntegrationCommandOutput>;
|
|
94
|
+
deleteDataIntegration(
|
|
95
|
+
args: DeleteDataIntegrationCommandInput,
|
|
96
|
+
cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void
|
|
97
|
+
): void;
|
|
98
|
+
deleteDataIntegration(
|
|
99
|
+
args: DeleteDataIntegrationCommandInput,
|
|
100
|
+
options: __HttpHandlerOptions,
|
|
101
|
+
cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void
|
|
102
|
+
): void;
|
|
103
|
+
deleteEventIntegration(
|
|
104
|
+
args: DeleteEventIntegrationCommandInput,
|
|
105
|
+
options?: __HttpHandlerOptions
|
|
106
|
+
): Promise<DeleteEventIntegrationCommandOutput>;
|
|
107
|
+
deleteEventIntegration(
|
|
108
|
+
args: DeleteEventIntegrationCommandInput,
|
|
109
|
+
cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void
|
|
110
|
+
): void;
|
|
111
|
+
deleteEventIntegration(
|
|
112
|
+
args: DeleteEventIntegrationCommandInput,
|
|
113
|
+
options: __HttpHandlerOptions,
|
|
114
|
+
cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void
|
|
115
|
+
): void;
|
|
116
|
+
getDataIntegration(
|
|
117
|
+
args: GetDataIntegrationCommandInput,
|
|
118
|
+
options?: __HttpHandlerOptions
|
|
119
|
+
): Promise<GetDataIntegrationCommandOutput>;
|
|
120
|
+
getDataIntegration(
|
|
121
|
+
args: GetDataIntegrationCommandInput,
|
|
122
|
+
cb: (err: any, data?: GetDataIntegrationCommandOutput) => void
|
|
123
|
+
): void;
|
|
124
|
+
getDataIntegration(
|
|
125
|
+
args: GetDataIntegrationCommandInput,
|
|
126
|
+
options: __HttpHandlerOptions,
|
|
127
|
+
cb: (err: any, data?: GetDataIntegrationCommandOutput) => void
|
|
128
|
+
): void;
|
|
129
|
+
getEventIntegration(
|
|
130
|
+
args: GetEventIntegrationCommandInput,
|
|
131
|
+
options?: __HttpHandlerOptions
|
|
132
|
+
): Promise<GetEventIntegrationCommandOutput>;
|
|
133
|
+
getEventIntegration(
|
|
134
|
+
args: GetEventIntegrationCommandInput,
|
|
135
|
+
cb: (err: any, data?: GetEventIntegrationCommandOutput) => void
|
|
136
|
+
): void;
|
|
137
|
+
getEventIntegration(
|
|
138
|
+
args: GetEventIntegrationCommandInput,
|
|
139
|
+
options: __HttpHandlerOptions,
|
|
140
|
+
cb: (err: any, data?: GetEventIntegrationCommandOutput) => void
|
|
141
|
+
): void;
|
|
142
|
+
listDataIntegrationAssociations(
|
|
143
|
+
args: ListDataIntegrationAssociationsCommandInput,
|
|
144
|
+
options?: __HttpHandlerOptions
|
|
145
|
+
): Promise<ListDataIntegrationAssociationsCommandOutput>;
|
|
146
|
+
listDataIntegrationAssociations(
|
|
147
|
+
args: ListDataIntegrationAssociationsCommandInput,
|
|
148
|
+
cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void
|
|
149
|
+
): void;
|
|
150
|
+
listDataIntegrationAssociations(
|
|
151
|
+
args: ListDataIntegrationAssociationsCommandInput,
|
|
152
|
+
options: __HttpHandlerOptions,
|
|
153
|
+
cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void
|
|
154
|
+
): void;
|
|
155
|
+
listDataIntegrations(
|
|
156
|
+
args: ListDataIntegrationsCommandInput,
|
|
157
|
+
options?: __HttpHandlerOptions
|
|
158
|
+
): Promise<ListDataIntegrationsCommandOutput>;
|
|
159
|
+
listDataIntegrations(
|
|
160
|
+
args: ListDataIntegrationsCommandInput,
|
|
161
|
+
cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void
|
|
162
|
+
): void;
|
|
163
|
+
listDataIntegrations(
|
|
164
|
+
args: ListDataIntegrationsCommandInput,
|
|
165
|
+
options: __HttpHandlerOptions,
|
|
166
|
+
cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void
|
|
167
|
+
): void;
|
|
168
|
+
listEventIntegrationAssociations(
|
|
169
|
+
args: ListEventIntegrationAssociationsCommandInput,
|
|
170
|
+
options?: __HttpHandlerOptions
|
|
171
|
+
): Promise<ListEventIntegrationAssociationsCommandOutput>;
|
|
172
|
+
listEventIntegrationAssociations(
|
|
173
|
+
args: ListEventIntegrationAssociationsCommandInput,
|
|
174
|
+
cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void
|
|
175
|
+
): void;
|
|
176
|
+
listEventIntegrationAssociations(
|
|
177
|
+
args: ListEventIntegrationAssociationsCommandInput,
|
|
178
|
+
options: __HttpHandlerOptions,
|
|
179
|
+
cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void
|
|
180
|
+
): void;
|
|
181
|
+
listEventIntegrations(
|
|
182
|
+
args: ListEventIntegrationsCommandInput,
|
|
183
|
+
options?: __HttpHandlerOptions
|
|
184
|
+
): Promise<ListEventIntegrationsCommandOutput>;
|
|
185
|
+
listEventIntegrations(
|
|
186
|
+
args: ListEventIntegrationsCommandInput,
|
|
187
|
+
cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void
|
|
188
|
+
): void;
|
|
189
|
+
listEventIntegrations(
|
|
190
|
+
args: ListEventIntegrationsCommandInput,
|
|
191
|
+
options: __HttpHandlerOptions,
|
|
192
|
+
cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void
|
|
193
|
+
): void;
|
|
194
|
+
listTagsForResource(
|
|
195
|
+
args: ListTagsForResourceCommandInput,
|
|
196
|
+
options?: __HttpHandlerOptions
|
|
197
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
198
|
+
listTagsForResource(
|
|
199
|
+
args: ListTagsForResourceCommandInput,
|
|
200
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
201
|
+
): void;
|
|
202
|
+
listTagsForResource(
|
|
203
|
+
args: ListTagsForResourceCommandInput,
|
|
204
|
+
options: __HttpHandlerOptions,
|
|
205
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
206
|
+
): void;
|
|
207
|
+
tagResource(
|
|
208
|
+
args: TagResourceCommandInput,
|
|
209
|
+
options?: __HttpHandlerOptions
|
|
210
|
+
): Promise<TagResourceCommandOutput>;
|
|
211
|
+
tagResource(
|
|
212
|
+
args: TagResourceCommandInput,
|
|
213
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
214
|
+
): void;
|
|
215
|
+
tagResource(
|
|
216
|
+
args: TagResourceCommandInput,
|
|
217
|
+
options: __HttpHandlerOptions,
|
|
218
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
219
|
+
): void;
|
|
220
|
+
untagResource(
|
|
221
|
+
args: UntagResourceCommandInput,
|
|
222
|
+
options?: __HttpHandlerOptions
|
|
223
|
+
): Promise<UntagResourceCommandOutput>;
|
|
224
|
+
untagResource(
|
|
225
|
+
args: UntagResourceCommandInput,
|
|
226
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
227
|
+
): void;
|
|
228
|
+
untagResource(
|
|
229
|
+
args: UntagResourceCommandInput,
|
|
230
|
+
options: __HttpHandlerOptions,
|
|
231
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
232
|
+
): void;
|
|
233
|
+
updateDataIntegration(
|
|
234
|
+
args: UpdateDataIntegrationCommandInput,
|
|
235
|
+
options?: __HttpHandlerOptions
|
|
236
|
+
): Promise<UpdateDataIntegrationCommandOutput>;
|
|
237
|
+
updateDataIntegration(
|
|
238
|
+
args: UpdateDataIntegrationCommandInput,
|
|
239
|
+
cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void
|
|
240
|
+
): void;
|
|
241
|
+
updateDataIntegration(
|
|
242
|
+
args: UpdateDataIntegrationCommandInput,
|
|
243
|
+
options: __HttpHandlerOptions,
|
|
244
|
+
cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void
|
|
245
|
+
): void;
|
|
246
|
+
updateEventIntegration(
|
|
247
|
+
args: UpdateEventIntegrationCommandInput,
|
|
248
|
+
options?: __HttpHandlerOptions
|
|
249
|
+
): Promise<UpdateEventIntegrationCommandOutput>;
|
|
250
|
+
updateEventIntegration(
|
|
251
|
+
args: UpdateEventIntegrationCommandInput,
|
|
252
|
+
cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void
|
|
253
|
+
): void;
|
|
254
|
+
updateEventIntegration(
|
|
255
|
+
args: UpdateEventIntegrationCommandInput,
|
|
256
|
+
options: __HttpHandlerOptions,
|
|
257
|
+
cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void
|
|
258
|
+
): void;
|
|
259
|
+
}
|
|
@@ -1,88 +1,195 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CreateDataIntegrationCommandInput,
|
|
47
|
+
CreateDataIntegrationCommandOutput,
|
|
48
|
+
} from "./commands/CreateDataIntegrationCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreateEventIntegrationCommandInput,
|
|
51
|
+
CreateEventIntegrationCommandOutput,
|
|
52
|
+
} from "./commands/CreateEventIntegrationCommand";
|
|
53
|
+
import {
|
|
54
|
+
DeleteDataIntegrationCommandInput,
|
|
55
|
+
DeleteDataIntegrationCommandOutput,
|
|
56
|
+
} from "./commands/DeleteDataIntegrationCommand";
|
|
57
|
+
import {
|
|
58
|
+
DeleteEventIntegrationCommandInput,
|
|
59
|
+
DeleteEventIntegrationCommandOutput,
|
|
60
|
+
} from "./commands/DeleteEventIntegrationCommand";
|
|
61
|
+
import {
|
|
62
|
+
GetDataIntegrationCommandInput,
|
|
63
|
+
GetDataIntegrationCommandOutput,
|
|
64
|
+
} from "./commands/GetDataIntegrationCommand";
|
|
65
|
+
import {
|
|
66
|
+
GetEventIntegrationCommandInput,
|
|
67
|
+
GetEventIntegrationCommandOutput,
|
|
68
|
+
} from "./commands/GetEventIntegrationCommand";
|
|
69
|
+
import {
|
|
70
|
+
ListDataIntegrationAssociationsCommandInput,
|
|
71
|
+
ListDataIntegrationAssociationsCommandOutput,
|
|
72
|
+
} from "./commands/ListDataIntegrationAssociationsCommand";
|
|
73
|
+
import {
|
|
74
|
+
ListDataIntegrationsCommandInput,
|
|
75
|
+
ListDataIntegrationsCommandOutput,
|
|
76
|
+
} from "./commands/ListDataIntegrationsCommand";
|
|
77
|
+
import {
|
|
78
|
+
ListEventIntegrationAssociationsCommandInput,
|
|
79
|
+
ListEventIntegrationAssociationsCommandOutput,
|
|
80
|
+
} from "./commands/ListEventIntegrationAssociationsCommand";
|
|
81
|
+
import {
|
|
82
|
+
ListEventIntegrationsCommandInput,
|
|
83
|
+
ListEventIntegrationsCommandOutput,
|
|
84
|
+
} from "./commands/ListEventIntegrationsCommand";
|
|
85
|
+
import {
|
|
86
|
+
ListTagsForResourceCommandInput,
|
|
87
|
+
ListTagsForResourceCommandOutput,
|
|
88
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
89
|
+
import {
|
|
90
|
+
TagResourceCommandInput,
|
|
91
|
+
TagResourceCommandOutput,
|
|
92
|
+
} from "./commands/TagResourceCommand";
|
|
93
|
+
import {
|
|
94
|
+
UntagResourceCommandInput,
|
|
95
|
+
UntagResourceCommandOutput,
|
|
96
|
+
} from "./commands/UntagResourceCommand";
|
|
97
|
+
import {
|
|
98
|
+
UpdateDataIntegrationCommandInput,
|
|
99
|
+
UpdateDataIntegrationCommandOutput,
|
|
100
|
+
} from "./commands/UpdateDataIntegrationCommand";
|
|
101
|
+
import {
|
|
102
|
+
UpdateEventIntegrationCommandInput,
|
|
103
|
+
UpdateEventIntegrationCommandOutput,
|
|
104
|
+
} from "./commands/UpdateEventIntegrationCommand";
|
|
105
|
+
export declare type ServiceInputTypes =
|
|
106
|
+
| CreateDataIntegrationCommandInput
|
|
107
|
+
| CreateEventIntegrationCommandInput
|
|
108
|
+
| DeleteDataIntegrationCommandInput
|
|
109
|
+
| DeleteEventIntegrationCommandInput
|
|
110
|
+
| GetDataIntegrationCommandInput
|
|
111
|
+
| GetEventIntegrationCommandInput
|
|
112
|
+
| ListDataIntegrationAssociationsCommandInput
|
|
113
|
+
| ListDataIntegrationsCommandInput
|
|
114
|
+
| ListEventIntegrationAssociationsCommandInput
|
|
115
|
+
| ListEventIntegrationsCommandInput
|
|
116
|
+
| ListTagsForResourceCommandInput
|
|
117
|
+
| TagResourceCommandInput
|
|
118
|
+
| UntagResourceCommandInput
|
|
119
|
+
| UpdateDataIntegrationCommandInput
|
|
120
|
+
| UpdateEventIntegrationCommandInput;
|
|
121
|
+
export declare type ServiceOutputTypes =
|
|
122
|
+
| CreateDataIntegrationCommandOutput
|
|
123
|
+
| CreateEventIntegrationCommandOutput
|
|
124
|
+
| DeleteDataIntegrationCommandOutput
|
|
125
|
+
| DeleteEventIntegrationCommandOutput
|
|
126
|
+
| GetDataIntegrationCommandOutput
|
|
127
|
+
| GetEventIntegrationCommandOutput
|
|
128
|
+
| ListDataIntegrationAssociationsCommandOutput
|
|
129
|
+
| ListDataIntegrationsCommandOutput
|
|
130
|
+
| ListEventIntegrationAssociationsCommandOutput
|
|
131
|
+
| ListEventIntegrationsCommandOutput
|
|
132
|
+
| ListTagsForResourceCommandOutput
|
|
133
|
+
| TagResourceCommandOutput
|
|
134
|
+
| UntagResourceCommandOutput
|
|
135
|
+
| UpdateDataIntegrationCommandOutput
|
|
136
|
+
| UpdateEventIntegrationCommandOutput;
|
|
137
|
+
export interface ClientDefaults
|
|
138
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
139
|
+
requestHandler?: __HttpHandler;
|
|
140
|
+
sha256?: __HashConstructor;
|
|
141
|
+
urlParser?: __UrlParser;
|
|
142
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
143
|
+
streamCollector?: __StreamCollector;
|
|
144
|
+
base64Decoder?: __Decoder;
|
|
145
|
+
base64Encoder?: __Encoder;
|
|
146
|
+
utf8Decoder?: __Decoder;
|
|
147
|
+
utf8Encoder?: __Encoder;
|
|
148
|
+
runtime?: string;
|
|
149
|
+
disableHostPrefix?: boolean;
|
|
150
|
+
maxAttempts?: number | __Provider<number>;
|
|
151
|
+
retryMode?: string | __Provider<string>;
|
|
152
|
+
logger?: __Logger;
|
|
153
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
154
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
155
|
+
serviceId?: string;
|
|
156
|
+
region?: string | __Provider<string>;
|
|
157
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
158
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
159
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
160
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
161
|
+
}
|
|
162
|
+
declare type AppIntegrationsClientConfigType = Partial<
|
|
163
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
164
|
+
> &
|
|
165
|
+
ClientDefaults &
|
|
166
|
+
RegionInputConfig &
|
|
167
|
+
EndpointsInputConfig &
|
|
168
|
+
RetryInputConfig &
|
|
169
|
+
HostHeaderInputConfig &
|
|
170
|
+
AwsAuthInputConfig &
|
|
171
|
+
UserAgentInputConfig;
|
|
172
|
+
export interface AppIntegrationsClientConfig
|
|
173
|
+
extends AppIntegrationsClientConfigType {}
|
|
174
|
+
declare type AppIntegrationsClientResolvedConfigType =
|
|
175
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
176
|
+
Required<ClientDefaults> &
|
|
177
|
+
RegionResolvedConfig &
|
|
178
|
+
EndpointsResolvedConfig &
|
|
179
|
+
RetryResolvedConfig &
|
|
180
|
+
HostHeaderResolvedConfig &
|
|
181
|
+
AwsAuthResolvedConfig &
|
|
182
|
+
UserAgentResolvedConfig;
|
|
183
|
+
export interface AppIntegrationsClientResolvedConfig
|
|
184
|
+
extends AppIntegrationsClientResolvedConfigType {}
|
|
185
|
+
export declare class AppIntegrationsClient extends __Client<
|
|
186
|
+
__HttpHandlerOptions,
|
|
187
|
+
ServiceInputTypes,
|
|
188
|
+
ServiceOutputTypes,
|
|
189
|
+
AppIntegrationsClientResolvedConfig
|
|
190
|
+
> {
|
|
191
|
+
readonly config: AppIntegrationsClientResolvedConfig;
|
|
192
|
+
constructor(configuration: AppIntegrationsClientConfig);
|
|
193
|
+
destroy(): void;
|
|
194
|
+
}
|
|
195
|
+
export {};
|