@aws-sdk/client-appintegrations 3.533.0 → 3.535.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/AppIntegrations.d.ts +4 -1
- package/dist-types/AppIntegrationsClient.d.ts +1 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +2 -1
- package/dist-types/commands/CreateDataIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/CreateEventIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteApplicationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDataIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteEventIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +2 -1
- package/dist-types/commands/GetDataIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/GetEventIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/ListApplicationAssociationsCommand.d.ts +2 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +2 -1
- package/dist-types/commands/ListDataIntegrationAssociationsCommand.d.ts +2 -1
- package/dist-types/commands/ListDataIntegrationsCommand.d.ts +2 -1
- package/dist-types/commands/ListEventIntegrationAssociationsCommand.d.ts +2 -1
- package/dist-types/commands/ListEventIntegrationsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDataIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/UpdateEventIntegrationCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +179 -179
- package/dist-types/ts3.4/AppIntegrations.d.ts +3 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListApplicationAssociationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { AppIntegrationsServiceException as __BaseException } from "./AppIntegrationsServiceException";
|
|
3
3
|
/**
|
|
4
|
-
* @public
|
|
5
4
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
@@ -14,66 +14,66 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
14
14
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* @public
|
|
18
17
|
* <p>The external URL source for the application.</p>
|
|
18
|
+
* @public
|
|
19
19
|
*/
|
|
20
20
|
export interface ExternalUrlConfig {
|
|
21
21
|
/**
|
|
22
|
-
* @public
|
|
23
22
|
* <p>The URL to access the application.</p>
|
|
23
|
+
* @public
|
|
24
24
|
*/
|
|
25
25
|
AccessUrl: string | undefined;
|
|
26
26
|
/**
|
|
27
|
-
* @public
|
|
28
27
|
* <p>Additional URLs to allow list if different than the access URL.</p>
|
|
28
|
+
* @public
|
|
29
29
|
*/
|
|
30
30
|
ApprovedOrigins?: string[];
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
|
-
* @public
|
|
34
33
|
* <p>The configuration for where the application should be loaded from.</p>
|
|
34
|
+
* @public
|
|
35
35
|
*/
|
|
36
36
|
export interface ApplicationSourceConfig {
|
|
37
37
|
/**
|
|
38
|
-
* @public
|
|
39
38
|
* <p>The external URL source for the application.</p>
|
|
39
|
+
* @public
|
|
40
40
|
*/
|
|
41
41
|
ExternalUrlConfig?: ExternalUrlConfig;
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
|
-
* @public
|
|
45
44
|
* <p>The configuration of an event that the application publishes.</p>
|
|
45
|
+
* @public
|
|
46
46
|
*/
|
|
47
47
|
export interface Publication {
|
|
48
48
|
/**
|
|
49
|
-
* @public
|
|
50
49
|
* <p>The name of the publication.</p>
|
|
50
|
+
* @public
|
|
51
51
|
*/
|
|
52
52
|
Event: string | undefined;
|
|
53
53
|
/**
|
|
54
|
-
* @public
|
|
55
54
|
* <p>The JSON schema of the publication event.</p>
|
|
55
|
+
* @public
|
|
56
56
|
*/
|
|
57
57
|
Schema: string | undefined;
|
|
58
58
|
/**
|
|
59
|
-
* @public
|
|
60
59
|
* <p>The description of the publication.</p>
|
|
60
|
+
* @public
|
|
61
61
|
*/
|
|
62
62
|
Description?: string;
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
65
|
-
* @public
|
|
66
65
|
* <p>The configuration of an event that the application subscribes.</p>
|
|
66
|
+
* @public
|
|
67
67
|
*/
|
|
68
68
|
export interface Subscription {
|
|
69
69
|
/**
|
|
70
|
-
* @public
|
|
71
70
|
* <p>The name of the subscription.</p>
|
|
71
|
+
* @public
|
|
72
72
|
*/
|
|
73
73
|
Event: string | undefined;
|
|
74
74
|
/**
|
|
75
|
-
* @public
|
|
76
75
|
* <p>The description of the subscription.</p>
|
|
76
|
+
* @public
|
|
77
77
|
*/
|
|
78
78
|
Description?: string;
|
|
79
79
|
}
|
|
@@ -82,55 +82,55 @@ export interface Subscription {
|
|
|
82
82
|
*/
|
|
83
83
|
export interface CreateApplicationRequest {
|
|
84
84
|
/**
|
|
85
|
-
* @public
|
|
86
85
|
* <p>The name of the application.</p>
|
|
86
|
+
* @public
|
|
87
87
|
*/
|
|
88
88
|
Name: string | undefined;
|
|
89
89
|
/**
|
|
90
|
-
* @public
|
|
91
90
|
* <p>The namespace of the application.</p>
|
|
91
|
+
* @public
|
|
92
92
|
*/
|
|
93
93
|
Namespace: string | undefined;
|
|
94
94
|
/**
|
|
95
|
-
* @public
|
|
96
95
|
* <p>The description of the application.</p>
|
|
96
|
+
* @public
|
|
97
97
|
*/
|
|
98
98
|
Description?: string;
|
|
99
99
|
/**
|
|
100
|
-
* @public
|
|
101
100
|
* <p>The configuration for where the application should be loaded from.</p>
|
|
101
|
+
* @public
|
|
102
102
|
*/
|
|
103
103
|
ApplicationSourceConfig: ApplicationSourceConfig | undefined;
|
|
104
104
|
/**
|
|
105
|
-
* @public
|
|
106
105
|
* @deprecated
|
|
107
106
|
*
|
|
108
107
|
* <p>The events that the application subscribes.</p>
|
|
108
|
+
* @public
|
|
109
109
|
*/
|
|
110
110
|
Subscriptions?: Subscription[];
|
|
111
111
|
/**
|
|
112
|
-
* @public
|
|
113
112
|
* @deprecated
|
|
114
113
|
*
|
|
115
114
|
* <p>The events that the application publishes.</p>
|
|
115
|
+
* @public
|
|
116
116
|
*/
|
|
117
117
|
Publications?: Publication[];
|
|
118
118
|
/**
|
|
119
|
-
* @public
|
|
120
119
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
121
120
|
* request. If not provided, the Amazon Web Services
|
|
122
121
|
* SDK populates this field. For more information about idempotency, see
|
|
123
122
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
123
|
+
* @public
|
|
124
124
|
*/
|
|
125
125
|
ClientToken?: string;
|
|
126
126
|
/**
|
|
127
|
-
* @public
|
|
128
127
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
128
|
+
* @public
|
|
129
129
|
*/
|
|
130
130
|
Tags?: Record<string, string>;
|
|
131
131
|
/**
|
|
132
|
-
* @public
|
|
133
132
|
* <p>The configuration of events or requests that the application has access to.</p>
|
|
133
|
+
* @public
|
|
134
134
|
*/
|
|
135
135
|
Permissions?: string[];
|
|
136
136
|
}
|
|
@@ -139,19 +139,19 @@ export interface CreateApplicationRequest {
|
|
|
139
139
|
*/
|
|
140
140
|
export interface CreateApplicationResponse {
|
|
141
141
|
/**
|
|
142
|
-
* @public
|
|
143
142
|
* <p>The Amazon Resource Name (ARN) of the Application.</p>
|
|
143
|
+
* @public
|
|
144
144
|
*/
|
|
145
145
|
Arn?: string;
|
|
146
146
|
/**
|
|
147
|
-
* @public
|
|
148
147
|
* <p>A unique identifier for the Application.</p>
|
|
148
|
+
* @public
|
|
149
149
|
*/
|
|
150
150
|
Id?: string;
|
|
151
151
|
}
|
|
152
152
|
/**
|
|
153
|
-
* @public
|
|
154
153
|
* <p>A resource with the specified name already exists.</p>
|
|
154
|
+
* @public
|
|
155
155
|
*/
|
|
156
156
|
export declare class DuplicateResourceException extends __BaseException {
|
|
157
157
|
readonly name: "DuplicateResourceException";
|
|
@@ -163,8 +163,8 @@ export declare class DuplicateResourceException extends __BaseException {
|
|
|
163
163
|
constructor(opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>);
|
|
164
164
|
}
|
|
165
165
|
/**
|
|
166
|
-
* @public
|
|
167
166
|
* <p>Request processing failed due to an error or failure with the service.</p>
|
|
167
|
+
* @public
|
|
168
168
|
*/
|
|
169
169
|
export declare class InternalServiceError extends __BaseException {
|
|
170
170
|
readonly name: "InternalServiceError";
|
|
@@ -176,8 +176,8 @@ export declare class InternalServiceError extends __BaseException {
|
|
|
176
176
|
constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
|
|
177
177
|
}
|
|
178
178
|
/**
|
|
179
|
-
* @public
|
|
180
179
|
* <p>The request is not valid. </p>
|
|
180
|
+
* @public
|
|
181
181
|
*/
|
|
182
182
|
export declare class InvalidRequestException extends __BaseException {
|
|
183
183
|
readonly name: "InvalidRequestException";
|
|
@@ -189,8 +189,8 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
189
189
|
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
190
190
|
}
|
|
191
191
|
/**
|
|
192
|
-
* @public
|
|
193
192
|
* <p>The allowed quota for the resource has been exceeded.</p>
|
|
193
|
+
* @public
|
|
194
194
|
*/
|
|
195
195
|
export declare class ResourceQuotaExceededException extends __BaseException {
|
|
196
196
|
readonly name: "ResourceQuotaExceededException";
|
|
@@ -202,8 +202,8 @@ export declare class ResourceQuotaExceededException extends __BaseException {
|
|
|
202
202
|
constructor(opts: __ExceptionOptionType<ResourceQuotaExceededException, __BaseException>);
|
|
203
203
|
}
|
|
204
204
|
/**
|
|
205
|
-
* @public
|
|
206
205
|
* <p>The throttling limit has been exceeded.</p>
|
|
206
|
+
* @public
|
|
207
207
|
*/
|
|
208
208
|
export declare class ThrottlingException extends __BaseException {
|
|
209
209
|
readonly name: "ThrottlingException";
|
|
@@ -215,8 +215,8 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
215
215
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
216
216
|
}
|
|
217
217
|
/**
|
|
218
|
-
* @public
|
|
219
218
|
* <p>The operation is not supported.</p>
|
|
219
|
+
* @public
|
|
220
220
|
*/
|
|
221
221
|
export declare class UnsupportedOperationException extends __BaseException {
|
|
222
222
|
readonly name: "UnsupportedOperationException";
|
|
@@ -228,40 +228,40 @@ export declare class UnsupportedOperationException extends __BaseException {
|
|
|
228
228
|
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
229
229
|
}
|
|
230
230
|
/**
|
|
231
|
-
* @public
|
|
232
231
|
* <p>The configuration for what files should be pulled from the source.</p>
|
|
232
|
+
* @public
|
|
233
233
|
*/
|
|
234
234
|
export interface FileConfiguration {
|
|
235
235
|
/**
|
|
236
|
-
* @public
|
|
237
236
|
* <p>Identifiers for the source folders to pull all files from recursively.</p>
|
|
237
|
+
* @public
|
|
238
238
|
*/
|
|
239
239
|
Folders: string[] | undefined;
|
|
240
240
|
/**
|
|
241
|
-
* @public
|
|
242
241
|
* <p>Restrictions for what files should be pulled from the source.</p>
|
|
242
|
+
* @public
|
|
243
243
|
*/
|
|
244
244
|
Filters?: Record<string, string[]>;
|
|
245
245
|
}
|
|
246
246
|
/**
|
|
247
|
-
* @public
|
|
248
247
|
* <p>The name of the data and how often it should be pulled from the source.</p>
|
|
248
|
+
* @public
|
|
249
249
|
*/
|
|
250
250
|
export interface ScheduleConfiguration {
|
|
251
251
|
/**
|
|
252
|
-
* @public
|
|
253
252
|
* <p>The start date for objects to import in the first flow run as an Unix/epoch timestamp in
|
|
254
253
|
* milliseconds or in ISO-8601 format.</p>
|
|
254
|
+
* @public
|
|
255
255
|
*/
|
|
256
256
|
FirstExecutionFrom?: string;
|
|
257
257
|
/**
|
|
258
|
-
* @public
|
|
259
258
|
* <p>The name of the object to pull from the data source.</p>
|
|
259
|
+
* @public
|
|
260
260
|
*/
|
|
261
261
|
Object?: string;
|
|
262
262
|
/**
|
|
263
|
-
* @public
|
|
264
263
|
* <p>How often the data should be pulled from data source.</p>
|
|
264
|
+
* @public
|
|
265
265
|
*/
|
|
266
266
|
ScheduleExpression: string | undefined;
|
|
267
267
|
}
|
|
@@ -270,51 +270,51 @@ export interface ScheduleConfiguration {
|
|
|
270
270
|
*/
|
|
271
271
|
export interface CreateDataIntegrationRequest {
|
|
272
272
|
/**
|
|
273
|
-
* @public
|
|
274
273
|
* <p>The name of the DataIntegration.</p>
|
|
274
|
+
* @public
|
|
275
275
|
*/
|
|
276
276
|
Name: string | undefined;
|
|
277
277
|
/**
|
|
278
|
-
* @public
|
|
279
278
|
* <p>A description of the DataIntegration.</p>
|
|
279
|
+
* @public
|
|
280
280
|
*/
|
|
281
281
|
Description?: string;
|
|
282
282
|
/**
|
|
283
|
-
* @public
|
|
284
283
|
* <p>The KMS key for the DataIntegration.</p>
|
|
284
|
+
* @public
|
|
285
285
|
*/
|
|
286
286
|
KmsKey: string | undefined;
|
|
287
287
|
/**
|
|
288
|
-
* @public
|
|
289
288
|
* <p>The URI of the data source.</p>
|
|
289
|
+
* @public
|
|
290
290
|
*/
|
|
291
291
|
SourceURI: string | undefined;
|
|
292
292
|
/**
|
|
293
|
-
* @public
|
|
294
293
|
* <p>The name of the data and how often it should be pulled from the source.</p>
|
|
294
|
+
* @public
|
|
295
295
|
*/
|
|
296
296
|
ScheduleConfig?: ScheduleConfiguration;
|
|
297
297
|
/**
|
|
298
|
-
* @public
|
|
299
298
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
299
|
+
* @public
|
|
300
300
|
*/
|
|
301
301
|
Tags?: Record<string, string>;
|
|
302
302
|
/**
|
|
303
|
-
* @public
|
|
304
303
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
305
304
|
* request. If not provided, the Amazon Web Services
|
|
306
305
|
* SDK populates this field. For more information about idempotency, see
|
|
307
306
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
307
|
+
* @public
|
|
308
308
|
*/
|
|
309
309
|
ClientToken?: string;
|
|
310
310
|
/**
|
|
311
|
-
* @public
|
|
312
311
|
* <p>The configuration for what files should be pulled from the source.</p>
|
|
312
|
+
* @public
|
|
313
313
|
*/
|
|
314
314
|
FileConfiguration?: FileConfiguration;
|
|
315
315
|
/**
|
|
316
|
-
* @public
|
|
317
316
|
* <p>The configuration for what data should be pulled from the source.</p>
|
|
317
|
+
* @public
|
|
318
318
|
*/
|
|
319
319
|
ObjectConfiguration?: Record<string, Record<string, string[]>>;
|
|
320
320
|
}
|
|
@@ -323,72 +323,72 @@ export interface CreateDataIntegrationRequest {
|
|
|
323
323
|
*/
|
|
324
324
|
export interface CreateDataIntegrationResponse {
|
|
325
325
|
/**
|
|
326
|
-
* @public
|
|
327
326
|
* <p>The Amazon Resource Name (ARN)</p>
|
|
327
|
+
* @public
|
|
328
328
|
*/
|
|
329
329
|
Arn?: string;
|
|
330
330
|
/**
|
|
331
|
-
* @public
|
|
332
331
|
* <p>A unique identifier.</p>
|
|
332
|
+
* @public
|
|
333
333
|
*/
|
|
334
334
|
Id?: string;
|
|
335
335
|
/**
|
|
336
|
-
* @public
|
|
337
336
|
* <p>The name of the DataIntegration.</p>
|
|
337
|
+
* @public
|
|
338
338
|
*/
|
|
339
339
|
Name?: string;
|
|
340
340
|
/**
|
|
341
|
-
* @public
|
|
342
341
|
* <p>A description of the DataIntegration.</p>
|
|
342
|
+
* @public
|
|
343
343
|
*/
|
|
344
344
|
Description?: string;
|
|
345
345
|
/**
|
|
346
|
-
* @public
|
|
347
346
|
* <p>The KMS key for the DataIntegration.</p>
|
|
347
|
+
* @public
|
|
348
348
|
*/
|
|
349
349
|
KmsKey?: string;
|
|
350
350
|
/**
|
|
351
|
-
* @public
|
|
352
351
|
* <p>The URI of the data source.</p>
|
|
352
|
+
* @public
|
|
353
353
|
*/
|
|
354
354
|
SourceURI?: string;
|
|
355
355
|
/**
|
|
356
|
-
* @public
|
|
357
356
|
* <p>The name of the data and how often it should be pulled from the source.</p>
|
|
357
|
+
* @public
|
|
358
358
|
*/
|
|
359
359
|
ScheduleConfiguration?: ScheduleConfiguration;
|
|
360
360
|
/**
|
|
361
|
-
* @public
|
|
362
361
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
362
|
+
* @public
|
|
363
363
|
*/
|
|
364
364
|
Tags?: Record<string, string>;
|
|
365
365
|
/**
|
|
366
|
-
* @public
|
|
367
366
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
368
367
|
* request. If not provided, the Amazon Web Services
|
|
369
368
|
* SDK populates this field. For more information about idempotency, see
|
|
370
369
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
370
|
+
* @public
|
|
371
371
|
*/
|
|
372
372
|
ClientToken?: string;
|
|
373
373
|
/**
|
|
374
|
-
* @public
|
|
375
374
|
* <p>The configuration for what files should be pulled from the source.</p>
|
|
375
|
+
* @public
|
|
376
376
|
*/
|
|
377
377
|
FileConfiguration?: FileConfiguration;
|
|
378
378
|
/**
|
|
379
|
-
* @public
|
|
380
379
|
* <p>The configuration for what data should be pulled from the source.</p>
|
|
380
|
+
* @public
|
|
381
381
|
*/
|
|
382
382
|
ObjectConfiguration?: Record<string, Record<string, string[]>>;
|
|
383
383
|
}
|
|
384
384
|
/**
|
|
385
|
-
* @public
|
|
386
385
|
* <p>The event filter.</p>
|
|
386
|
+
* @public
|
|
387
387
|
*/
|
|
388
388
|
export interface EventFilter {
|
|
389
389
|
/**
|
|
390
|
-
* @public
|
|
391
390
|
* <p>The source of the events.</p>
|
|
391
|
+
* @public
|
|
392
392
|
*/
|
|
393
393
|
Source: string | undefined;
|
|
394
394
|
}
|
|
@@ -397,36 +397,36 @@ export interface EventFilter {
|
|
|
397
397
|
*/
|
|
398
398
|
export interface CreateEventIntegrationRequest {
|
|
399
399
|
/**
|
|
400
|
-
* @public
|
|
401
400
|
* <p>The name of the event integration.</p>
|
|
401
|
+
* @public
|
|
402
402
|
*/
|
|
403
403
|
Name: string | undefined;
|
|
404
404
|
/**
|
|
405
|
-
* @public
|
|
406
405
|
* <p>The description of the event integration.</p>
|
|
406
|
+
* @public
|
|
407
407
|
*/
|
|
408
408
|
Description?: string;
|
|
409
409
|
/**
|
|
410
|
-
* @public
|
|
411
410
|
* <p>The event filter.</p>
|
|
411
|
+
* @public
|
|
412
412
|
*/
|
|
413
413
|
EventFilter: EventFilter | undefined;
|
|
414
414
|
/**
|
|
415
|
-
* @public
|
|
416
415
|
* <p>The EventBridge bus.</p>
|
|
416
|
+
* @public
|
|
417
417
|
*/
|
|
418
418
|
EventBridgeBus: string | undefined;
|
|
419
419
|
/**
|
|
420
|
-
* @public
|
|
421
420
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
422
421
|
* request. If not provided, the Amazon Web Services
|
|
423
422
|
* SDK populates this field. For more information about idempotency, see
|
|
424
423
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
424
|
+
* @public
|
|
425
425
|
*/
|
|
426
426
|
ClientToken?: string;
|
|
427
427
|
/**
|
|
428
|
-
* @public
|
|
429
428
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
429
|
+
* @public
|
|
430
430
|
*/
|
|
431
431
|
Tags?: Record<string, string>;
|
|
432
432
|
}
|
|
@@ -435,8 +435,8 @@ export interface CreateEventIntegrationRequest {
|
|
|
435
435
|
*/
|
|
436
436
|
export interface CreateEventIntegrationResponse {
|
|
437
437
|
/**
|
|
438
|
-
* @public
|
|
439
438
|
* <p>The Amazon Resource Name (ARN) of the event integration. </p>
|
|
439
|
+
* @public
|
|
440
440
|
*/
|
|
441
441
|
EventIntegrationArn?: string;
|
|
442
442
|
}
|
|
@@ -445,8 +445,8 @@ export interface CreateEventIntegrationResponse {
|
|
|
445
445
|
*/
|
|
446
446
|
export interface DeleteApplicationRequest {
|
|
447
447
|
/**
|
|
448
|
-
* @public
|
|
449
448
|
* <p>The Amazon Resource Name (ARN) of the Application.</p>
|
|
449
|
+
* @public
|
|
450
450
|
*/
|
|
451
451
|
Arn: string | undefined;
|
|
452
452
|
}
|
|
@@ -456,8 +456,8 @@ export interface DeleteApplicationRequest {
|
|
|
456
456
|
export interface DeleteApplicationResponse {
|
|
457
457
|
}
|
|
458
458
|
/**
|
|
459
|
-
* @public
|
|
460
459
|
* <p>The specified resource was not found.</p>
|
|
460
|
+
* @public
|
|
461
461
|
*/
|
|
462
462
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
463
463
|
readonly name: "ResourceNotFoundException";
|
|
@@ -473,8 +473,8 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
473
473
|
*/
|
|
474
474
|
export interface DeleteDataIntegrationRequest {
|
|
475
475
|
/**
|
|
476
|
-
* @public
|
|
477
476
|
* <p>A unique identifier for the DataIntegration.</p>
|
|
477
|
+
* @public
|
|
478
478
|
*/
|
|
479
479
|
DataIntegrationIdentifier: string | undefined;
|
|
480
480
|
}
|
|
@@ -488,8 +488,8 @@ export interface DeleteDataIntegrationResponse {
|
|
|
488
488
|
*/
|
|
489
489
|
export interface DeleteEventIntegrationRequest {
|
|
490
490
|
/**
|
|
491
|
-
* @public
|
|
492
491
|
* <p>The name of the event integration.</p>
|
|
492
|
+
* @public
|
|
493
493
|
*/
|
|
494
494
|
Name: string | undefined;
|
|
495
495
|
}
|
|
@@ -503,8 +503,8 @@ export interface DeleteEventIntegrationResponse {
|
|
|
503
503
|
*/
|
|
504
504
|
export interface GetApplicationRequest {
|
|
505
505
|
/**
|
|
506
|
-
* @public
|
|
507
506
|
* <p>The Amazon Resource Name (ARN) of the Application.</p>
|
|
507
|
+
* @public
|
|
508
508
|
*/
|
|
509
509
|
Arn: string | undefined;
|
|
510
510
|
}
|
|
@@ -513,67 +513,67 @@ export interface GetApplicationRequest {
|
|
|
513
513
|
*/
|
|
514
514
|
export interface GetApplicationResponse {
|
|
515
515
|
/**
|
|
516
|
-
* @public
|
|
517
516
|
* <p>The Amazon Resource Name (ARN) of the Application.</p>
|
|
517
|
+
* @public
|
|
518
518
|
*/
|
|
519
519
|
Arn?: string;
|
|
520
520
|
/**
|
|
521
|
-
* @public
|
|
522
521
|
* <p>A unique identifier for the Application.</p>
|
|
522
|
+
* @public
|
|
523
523
|
*/
|
|
524
524
|
Id?: string;
|
|
525
525
|
/**
|
|
526
|
-
* @public
|
|
527
526
|
* <p>The name of the application.</p>
|
|
527
|
+
* @public
|
|
528
528
|
*/
|
|
529
529
|
Name?: string;
|
|
530
530
|
/**
|
|
531
|
-
* @public
|
|
532
531
|
* <p>The namespace of the application.</p>
|
|
532
|
+
* @public
|
|
533
533
|
*/
|
|
534
534
|
Namespace?: string;
|
|
535
535
|
/**
|
|
536
|
-
* @public
|
|
537
536
|
* <p>The description of the application.</p>
|
|
537
|
+
* @public
|
|
538
538
|
*/
|
|
539
539
|
Description?: string;
|
|
540
540
|
/**
|
|
541
|
-
* @public
|
|
542
541
|
* <p>The configuration for where the application should be loaded from.</p>
|
|
542
|
+
* @public
|
|
543
543
|
*/
|
|
544
544
|
ApplicationSourceConfig?: ApplicationSourceConfig;
|
|
545
545
|
/**
|
|
546
|
-
* @public
|
|
547
546
|
* @deprecated
|
|
548
547
|
*
|
|
549
548
|
* <p>The events that the application subscribes.</p>
|
|
549
|
+
* @public
|
|
550
550
|
*/
|
|
551
551
|
Subscriptions?: Subscription[];
|
|
552
552
|
/**
|
|
553
|
-
* @public
|
|
554
553
|
* @deprecated
|
|
555
554
|
*
|
|
556
555
|
* <p>The events that the application publishes.</p>
|
|
556
|
+
* @public
|
|
557
557
|
*/
|
|
558
558
|
Publications?: Publication[];
|
|
559
559
|
/**
|
|
560
|
-
* @public
|
|
561
560
|
* <p>The created time of the Application.</p>
|
|
561
|
+
* @public
|
|
562
562
|
*/
|
|
563
563
|
CreatedTime?: Date;
|
|
564
564
|
/**
|
|
565
|
-
* @public
|
|
566
565
|
* <p>The last modified time of the Application.</p>
|
|
566
|
+
* @public
|
|
567
567
|
*/
|
|
568
568
|
LastModifiedTime?: Date;
|
|
569
569
|
/**
|
|
570
|
-
* @public
|
|
571
570
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
571
|
+
* @public
|
|
572
572
|
*/
|
|
573
573
|
Tags?: Record<string, string>;
|
|
574
574
|
/**
|
|
575
|
-
* @public
|
|
576
575
|
* <p>The configuration of events or requests that the application has access to.</p>
|
|
576
|
+
* @public
|
|
577
577
|
*/
|
|
578
578
|
Permissions?: string[];
|
|
579
579
|
}
|
|
@@ -582,8 +582,8 @@ export interface GetApplicationResponse {
|
|
|
582
582
|
*/
|
|
583
583
|
export interface GetDataIntegrationRequest {
|
|
584
584
|
/**
|
|
585
|
-
* @public
|
|
586
585
|
* <p>A unique identifier.</p>
|
|
586
|
+
* @public
|
|
587
587
|
*/
|
|
588
588
|
Identifier: string | undefined;
|
|
589
589
|
}
|
|
@@ -592,53 +592,53 @@ export interface GetDataIntegrationRequest {
|
|
|
592
592
|
*/
|
|
593
593
|
export interface GetDataIntegrationResponse {
|
|
594
594
|
/**
|
|
595
|
-
* @public
|
|
596
595
|
* <p>The Amazon Resource Name (ARN) for the DataIntegration.</p>
|
|
596
|
+
* @public
|
|
597
597
|
*/
|
|
598
598
|
Arn?: string;
|
|
599
599
|
/**
|
|
600
|
-
* @public
|
|
601
600
|
* <p>A unique identifier.</p>
|
|
601
|
+
* @public
|
|
602
602
|
*/
|
|
603
603
|
Id?: string;
|
|
604
604
|
/**
|
|
605
|
-
* @public
|
|
606
605
|
* <p>The name of the DataIntegration.</p>
|
|
606
|
+
* @public
|
|
607
607
|
*/
|
|
608
608
|
Name?: string;
|
|
609
609
|
/**
|
|
610
|
-
* @public
|
|
611
610
|
* <p>The KMS key for the DataIntegration.</p>
|
|
611
|
+
* @public
|
|
612
612
|
*/
|
|
613
613
|
Description?: string;
|
|
614
614
|
/**
|
|
615
|
-
* @public
|
|
616
615
|
* <p>The KMS key for the DataIntegration.</p>
|
|
616
|
+
* @public
|
|
617
617
|
*/
|
|
618
618
|
KmsKey?: string;
|
|
619
619
|
/**
|
|
620
|
-
* @public
|
|
621
620
|
* <p>The URI of the data source.</p>
|
|
621
|
+
* @public
|
|
622
622
|
*/
|
|
623
623
|
SourceURI?: string;
|
|
624
624
|
/**
|
|
625
|
-
* @public
|
|
626
625
|
* <p>The name of the data and how often it should be pulled from the source.</p>
|
|
626
|
+
* @public
|
|
627
627
|
*/
|
|
628
628
|
ScheduleConfiguration?: ScheduleConfiguration;
|
|
629
629
|
/**
|
|
630
|
-
* @public
|
|
631
630
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
631
|
+
* @public
|
|
632
632
|
*/
|
|
633
633
|
Tags?: Record<string, string>;
|
|
634
634
|
/**
|
|
635
|
-
* @public
|
|
636
635
|
* <p>The configuration for what files should be pulled from the source.</p>
|
|
636
|
+
* @public
|
|
637
637
|
*/
|
|
638
638
|
FileConfiguration?: FileConfiguration;
|
|
639
639
|
/**
|
|
640
|
-
* @public
|
|
641
640
|
* <p>The configuration for what data should be pulled from the source.</p>
|
|
641
|
+
* @public
|
|
642
642
|
*/
|
|
643
643
|
ObjectConfiguration?: Record<string, Record<string, string[]>>;
|
|
644
644
|
}
|
|
@@ -647,8 +647,8 @@ export interface GetDataIntegrationResponse {
|
|
|
647
647
|
*/
|
|
648
648
|
export interface GetEventIntegrationRequest {
|
|
649
649
|
/**
|
|
650
|
-
* @public
|
|
651
650
|
* <p>The name of the event integration. </p>
|
|
651
|
+
* @public
|
|
652
652
|
*/
|
|
653
653
|
Name: string | undefined;
|
|
654
654
|
}
|
|
@@ -657,33 +657,33 @@ export interface GetEventIntegrationRequest {
|
|
|
657
657
|
*/
|
|
658
658
|
export interface GetEventIntegrationResponse {
|
|
659
659
|
/**
|
|
660
|
-
* @public
|
|
661
660
|
* <p>The name of the event integration. </p>
|
|
661
|
+
* @public
|
|
662
662
|
*/
|
|
663
663
|
Name?: string;
|
|
664
664
|
/**
|
|
665
|
-
* @public
|
|
666
665
|
* <p>The description of the event integration.</p>
|
|
666
|
+
* @public
|
|
667
667
|
*/
|
|
668
668
|
Description?: string;
|
|
669
669
|
/**
|
|
670
|
-
* @public
|
|
671
670
|
* <p>The Amazon Resource Name (ARN) for the event integration.</p>
|
|
671
|
+
* @public
|
|
672
672
|
*/
|
|
673
673
|
EventIntegrationArn?: string;
|
|
674
674
|
/**
|
|
675
|
-
* @public
|
|
676
675
|
* <p>The EventBridge bus.</p>
|
|
676
|
+
* @public
|
|
677
677
|
*/
|
|
678
678
|
EventBridgeBus?: string;
|
|
679
679
|
/**
|
|
680
|
-
* @public
|
|
681
680
|
* <p>The event filter.</p>
|
|
681
|
+
* @public
|
|
682
682
|
*/
|
|
683
683
|
EventFilter?: EventFilter;
|
|
684
684
|
/**
|
|
685
|
-
* @public
|
|
686
685
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
686
|
+
* @public
|
|
687
687
|
*/
|
|
688
688
|
Tags?: Record<string, string>;
|
|
689
689
|
}
|
|
@@ -692,40 +692,40 @@ export interface GetEventIntegrationResponse {
|
|
|
692
692
|
*/
|
|
693
693
|
export interface ListApplicationAssociationsRequest {
|
|
694
694
|
/**
|
|
695
|
-
* @public
|
|
696
695
|
* <p>A unique identifier for the Application.</p>
|
|
696
|
+
* @public
|
|
697
697
|
*/
|
|
698
698
|
ApplicationId: string | undefined;
|
|
699
699
|
/**
|
|
700
|
-
* @public
|
|
701
700
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
702
701
|
* response in the next request to retrieve the next set of results.</p>
|
|
702
|
+
* @public
|
|
703
703
|
*/
|
|
704
704
|
NextToken?: string;
|
|
705
705
|
/**
|
|
706
|
-
* @public
|
|
707
706
|
* <p>The maximum number of results to return per page.</p>
|
|
707
|
+
* @public
|
|
708
708
|
*/
|
|
709
709
|
MaxResults?: number;
|
|
710
710
|
}
|
|
711
711
|
/**
|
|
712
|
-
* @public
|
|
713
712
|
* <p>Summary information about the Application Association.</p>
|
|
713
|
+
* @public
|
|
714
714
|
*/
|
|
715
715
|
export interface ApplicationAssociationSummary {
|
|
716
716
|
/**
|
|
717
|
-
* @public
|
|
718
717
|
* <p>The Amazon Resource Name (ARN) of the Application Association.</p>
|
|
718
|
+
* @public
|
|
719
719
|
*/
|
|
720
720
|
ApplicationAssociationArn?: string;
|
|
721
721
|
/**
|
|
722
|
-
* @public
|
|
723
722
|
* <p>The Amazon Resource Name (ARN) of the Application.</p>
|
|
723
|
+
* @public
|
|
724
724
|
*/
|
|
725
725
|
ApplicationArn?: string;
|
|
726
726
|
/**
|
|
727
|
-
* @public
|
|
728
727
|
* <p>The identifier for the client that is associated with the Application Association.</p>
|
|
728
|
+
* @public
|
|
729
729
|
*/
|
|
730
730
|
ClientId?: string;
|
|
731
731
|
}
|
|
@@ -734,13 +734,13 @@ export interface ApplicationAssociationSummary {
|
|
|
734
734
|
*/
|
|
735
735
|
export interface ListApplicationAssociationsResponse {
|
|
736
736
|
/**
|
|
737
|
-
* @public
|
|
738
737
|
* <p>List of Application Associations for the Application.</p>
|
|
738
|
+
* @public
|
|
739
739
|
*/
|
|
740
740
|
ApplicationAssociations?: ApplicationAssociationSummary[];
|
|
741
741
|
/**
|
|
742
|
-
* @public
|
|
743
742
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
743
|
+
* @public
|
|
744
744
|
*/
|
|
745
745
|
NextToken?: string;
|
|
746
746
|
}
|
|
@@ -749,50 +749,50 @@ export interface ListApplicationAssociationsResponse {
|
|
|
749
749
|
*/
|
|
750
750
|
export interface ListApplicationsRequest {
|
|
751
751
|
/**
|
|
752
|
-
* @public
|
|
753
752
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
754
753
|
* response in the next request to retrieve the next set of results.</p>
|
|
754
|
+
* @public
|
|
755
755
|
*/
|
|
756
756
|
NextToken?: string;
|
|
757
757
|
/**
|
|
758
|
-
* @public
|
|
759
758
|
* <p>The maximum number of results to return per page.</p>
|
|
759
|
+
* @public
|
|
760
760
|
*/
|
|
761
761
|
MaxResults?: number;
|
|
762
762
|
}
|
|
763
763
|
/**
|
|
764
|
-
* @public
|
|
765
764
|
* <p>Summary information about the Application.</p>
|
|
765
|
+
* @public
|
|
766
766
|
*/
|
|
767
767
|
export interface ApplicationSummary {
|
|
768
768
|
/**
|
|
769
|
-
* @public
|
|
770
769
|
* <p>The Amazon Resource Name (ARN) of the Application.</p>
|
|
770
|
+
* @public
|
|
771
771
|
*/
|
|
772
772
|
Arn?: string;
|
|
773
773
|
/**
|
|
774
|
-
* @public
|
|
775
774
|
* <p>A unique identifier for the Application.</p>
|
|
775
|
+
* @public
|
|
776
776
|
*/
|
|
777
777
|
Id?: string;
|
|
778
778
|
/**
|
|
779
|
-
* @public
|
|
780
779
|
* <p>The name of the application.</p>
|
|
780
|
+
* @public
|
|
781
781
|
*/
|
|
782
782
|
Name?: string;
|
|
783
783
|
/**
|
|
784
|
-
* @public
|
|
785
784
|
* <p>The namespace of the application.</p>
|
|
785
|
+
* @public
|
|
786
786
|
*/
|
|
787
787
|
Namespace?: string;
|
|
788
788
|
/**
|
|
789
|
-
* @public
|
|
790
789
|
* <p>The time when the application was created.</p>
|
|
790
|
+
* @public
|
|
791
791
|
*/
|
|
792
792
|
CreatedTime?: Date;
|
|
793
793
|
/**
|
|
794
|
-
* @public
|
|
795
794
|
* <p>The time when the application was last modified.</p>
|
|
795
|
+
* @public
|
|
796
796
|
*/
|
|
797
797
|
LastModifiedTime?: Date;
|
|
798
798
|
}
|
|
@@ -801,13 +801,13 @@ export interface ApplicationSummary {
|
|
|
801
801
|
*/
|
|
802
802
|
export interface ListApplicationsResponse {
|
|
803
803
|
/**
|
|
804
|
-
* @public
|
|
805
804
|
* <p>The Applications associated with this account.</p>
|
|
805
|
+
* @public
|
|
806
806
|
*/
|
|
807
807
|
Applications?: ApplicationSummary[];
|
|
808
808
|
/**
|
|
809
|
-
* @public
|
|
810
809
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
810
|
+
* @public
|
|
811
811
|
*/
|
|
812
812
|
NextToken?: string;
|
|
813
813
|
}
|
|
@@ -816,41 +816,41 @@ export interface ListApplicationsResponse {
|
|
|
816
816
|
*/
|
|
817
817
|
export interface ListDataIntegrationAssociationsRequest {
|
|
818
818
|
/**
|
|
819
|
-
* @public
|
|
820
819
|
* <p>A unique identifier for the DataIntegration.</p>
|
|
820
|
+
* @public
|
|
821
821
|
*/
|
|
822
822
|
DataIntegrationIdentifier: string | undefined;
|
|
823
823
|
/**
|
|
824
|
-
* @public
|
|
825
824
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
826
825
|
* response in the next request to retrieve the next set of results.</p>
|
|
826
|
+
* @public
|
|
827
827
|
*/
|
|
828
828
|
NextToken?: string;
|
|
829
829
|
/**
|
|
830
|
-
* @public
|
|
831
830
|
* <p>The maximum number of results to return per page.</p>
|
|
831
|
+
* @public
|
|
832
832
|
*/
|
|
833
833
|
MaxResults?: number;
|
|
834
834
|
}
|
|
835
835
|
/**
|
|
836
|
-
* @public
|
|
837
836
|
* <p>Summary information about the DataIntegration association.</p>
|
|
837
|
+
* @public
|
|
838
838
|
*/
|
|
839
839
|
export interface DataIntegrationAssociationSummary {
|
|
840
840
|
/**
|
|
841
|
-
* @public
|
|
842
841
|
* <p>The Amazon Resource Name (ARN) of the DataIntegration association.</p>
|
|
842
|
+
* @public
|
|
843
843
|
*/
|
|
844
844
|
DataIntegrationAssociationArn?: string;
|
|
845
845
|
/**
|
|
846
|
-
* @public
|
|
847
846
|
* <p>The Amazon Resource Name (ARN) of the DataIntegration.</p>
|
|
847
|
+
* @public
|
|
848
848
|
*/
|
|
849
849
|
DataIntegrationArn?: string;
|
|
850
850
|
/**
|
|
851
|
-
* @public
|
|
852
851
|
* <p>The identifier for the client that is associated with the DataIntegration
|
|
853
852
|
* association.</p>
|
|
853
|
+
* @public
|
|
854
854
|
*/
|
|
855
855
|
ClientId?: string;
|
|
856
856
|
}
|
|
@@ -859,13 +859,13 @@ export interface DataIntegrationAssociationSummary {
|
|
|
859
859
|
*/
|
|
860
860
|
export interface ListDataIntegrationAssociationsResponse {
|
|
861
861
|
/**
|
|
862
|
-
* @public
|
|
863
862
|
* <p>The Amazon Resource Name (ARN) and unique ID of the DataIntegration association.</p>
|
|
863
|
+
* @public
|
|
864
864
|
*/
|
|
865
865
|
DataIntegrationAssociations?: DataIntegrationAssociationSummary[];
|
|
866
866
|
/**
|
|
867
|
-
* @public
|
|
868
867
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
868
|
+
* @public
|
|
869
869
|
*/
|
|
870
870
|
NextToken?: string;
|
|
871
871
|
}
|
|
@@ -874,35 +874,35 @@ export interface ListDataIntegrationAssociationsResponse {
|
|
|
874
874
|
*/
|
|
875
875
|
export interface ListDataIntegrationsRequest {
|
|
876
876
|
/**
|
|
877
|
-
* @public
|
|
878
877
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
879
878
|
* response in the next request to retrieve the next set of results.</p>
|
|
879
|
+
* @public
|
|
880
880
|
*/
|
|
881
881
|
NextToken?: string;
|
|
882
882
|
/**
|
|
883
|
-
* @public
|
|
884
883
|
* <p>The maximum number of results to return per page.</p>
|
|
884
|
+
* @public
|
|
885
885
|
*/
|
|
886
886
|
MaxResults?: number;
|
|
887
887
|
}
|
|
888
888
|
/**
|
|
889
|
-
* @public
|
|
890
889
|
* <p>Summary information about the DataIntegration.</p>
|
|
890
|
+
* @public
|
|
891
891
|
*/
|
|
892
892
|
export interface DataIntegrationSummary {
|
|
893
893
|
/**
|
|
894
|
-
* @public
|
|
895
894
|
* <p>The Amazon Resource Name (ARN) of the DataIntegration.</p>
|
|
895
|
+
* @public
|
|
896
896
|
*/
|
|
897
897
|
Arn?: string;
|
|
898
898
|
/**
|
|
899
|
-
* @public
|
|
900
899
|
* <p>The name of the DataIntegration.</p>
|
|
900
|
+
* @public
|
|
901
901
|
*/
|
|
902
902
|
Name?: string;
|
|
903
903
|
/**
|
|
904
|
-
* @public
|
|
905
904
|
* <p>The URI of the data source.</p>
|
|
905
|
+
* @public
|
|
906
906
|
*/
|
|
907
907
|
SourceURI?: string;
|
|
908
908
|
}
|
|
@@ -911,13 +911,13 @@ export interface DataIntegrationSummary {
|
|
|
911
911
|
*/
|
|
912
912
|
export interface ListDataIntegrationsResponse {
|
|
913
913
|
/**
|
|
914
|
-
* @public
|
|
915
914
|
* <p>The DataIntegrations associated with this account.</p>
|
|
915
|
+
* @public
|
|
916
916
|
*/
|
|
917
917
|
DataIntegrations?: DataIntegrationSummary[];
|
|
918
918
|
/**
|
|
919
|
-
* @public
|
|
920
919
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
920
|
+
* @public
|
|
921
921
|
*/
|
|
922
922
|
NextToken?: string;
|
|
923
923
|
}
|
|
@@ -926,55 +926,55 @@ export interface ListDataIntegrationsResponse {
|
|
|
926
926
|
*/
|
|
927
927
|
export interface ListEventIntegrationAssociationsRequest {
|
|
928
928
|
/**
|
|
929
|
-
* @public
|
|
930
929
|
* <p>The name of the event integration. </p>
|
|
930
|
+
* @public
|
|
931
931
|
*/
|
|
932
932
|
EventIntegrationName: string | undefined;
|
|
933
933
|
/**
|
|
934
|
-
* @public
|
|
935
934
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
936
935
|
* response in the next request to retrieve the next set of results.</p>
|
|
936
|
+
* @public
|
|
937
937
|
*/
|
|
938
938
|
NextToken?: string;
|
|
939
939
|
/**
|
|
940
|
-
* @public
|
|
941
940
|
* <p>The maximum number of results to return per page.</p>
|
|
941
|
+
* @public
|
|
942
942
|
*/
|
|
943
943
|
MaxResults?: number;
|
|
944
944
|
}
|
|
945
945
|
/**
|
|
946
|
-
* @public
|
|
947
946
|
* <p>The event integration association.</p>
|
|
947
|
+
* @public
|
|
948
948
|
*/
|
|
949
949
|
export interface EventIntegrationAssociation {
|
|
950
950
|
/**
|
|
951
|
-
* @public
|
|
952
951
|
* <p>The Amazon Resource Name (ARN) for the event integration association.</p>
|
|
952
|
+
* @public
|
|
953
953
|
*/
|
|
954
954
|
EventIntegrationAssociationArn?: string;
|
|
955
955
|
/**
|
|
956
|
-
* @public
|
|
957
956
|
* <p>The identifier for the event integration association.</p>
|
|
957
|
+
* @public
|
|
958
958
|
*/
|
|
959
959
|
EventIntegrationAssociationId?: string;
|
|
960
960
|
/**
|
|
961
|
-
* @public
|
|
962
961
|
* <p>The name of the event integration.</p>
|
|
962
|
+
* @public
|
|
963
963
|
*/
|
|
964
964
|
EventIntegrationName?: string;
|
|
965
965
|
/**
|
|
966
|
-
* @public
|
|
967
966
|
* <p>The identifier for the client that is associated with the event integration.</p>
|
|
967
|
+
* @public
|
|
968
968
|
*/
|
|
969
969
|
ClientId?: string;
|
|
970
970
|
/**
|
|
971
|
-
* @public
|
|
972
971
|
* <p>The name of the EventBridge rule.</p>
|
|
972
|
+
* @public
|
|
973
973
|
*/
|
|
974
974
|
EventBridgeRuleName?: string;
|
|
975
975
|
/**
|
|
976
|
-
* @public
|
|
977
976
|
* <p>The metadata associated with the client.</p>
|
|
977
|
+
* @public
|
|
978
978
|
*/
|
|
979
979
|
ClientAssociationMetadata?: Record<string, string>;
|
|
980
980
|
}
|
|
@@ -983,13 +983,13 @@ export interface EventIntegrationAssociation {
|
|
|
983
983
|
*/
|
|
984
984
|
export interface ListEventIntegrationAssociationsResponse {
|
|
985
985
|
/**
|
|
986
|
-
* @public
|
|
987
986
|
* <p>The event integration associations.</p>
|
|
987
|
+
* @public
|
|
988
988
|
*/
|
|
989
989
|
EventIntegrationAssociations?: EventIntegrationAssociation[];
|
|
990
990
|
/**
|
|
991
|
-
* @public
|
|
992
991
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
992
|
+
* @public
|
|
993
993
|
*/
|
|
994
994
|
NextToken?: string;
|
|
995
995
|
}
|
|
@@ -998,50 +998,50 @@ export interface ListEventIntegrationAssociationsResponse {
|
|
|
998
998
|
*/
|
|
999
999
|
export interface ListEventIntegrationsRequest {
|
|
1000
1000
|
/**
|
|
1001
|
-
* @public
|
|
1002
1001
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
1003
1002
|
* response in the next request to retrieve the next set of results.</p>
|
|
1003
|
+
* @public
|
|
1004
1004
|
*/
|
|
1005
1005
|
NextToken?: string;
|
|
1006
1006
|
/**
|
|
1007
|
-
* @public
|
|
1008
1007
|
* <p>The maximum number of results to return per page.</p>
|
|
1008
|
+
* @public
|
|
1009
1009
|
*/
|
|
1010
1010
|
MaxResults?: number;
|
|
1011
1011
|
}
|
|
1012
1012
|
/**
|
|
1013
|
-
* @public
|
|
1014
1013
|
* <p>The event integration.</p>
|
|
1014
|
+
* @public
|
|
1015
1015
|
*/
|
|
1016
1016
|
export interface EventIntegration {
|
|
1017
1017
|
/**
|
|
1018
|
-
* @public
|
|
1019
1018
|
* <p>The Amazon Resource Name (ARN) of the event integration.</p>
|
|
1019
|
+
* @public
|
|
1020
1020
|
*/
|
|
1021
1021
|
EventIntegrationArn?: string;
|
|
1022
1022
|
/**
|
|
1023
|
-
* @public
|
|
1024
1023
|
* <p>The name of the event integration.</p>
|
|
1024
|
+
* @public
|
|
1025
1025
|
*/
|
|
1026
1026
|
Name?: string;
|
|
1027
1027
|
/**
|
|
1028
|
-
* @public
|
|
1029
1028
|
* <p>The event integration description.</p>
|
|
1029
|
+
* @public
|
|
1030
1030
|
*/
|
|
1031
1031
|
Description?: string;
|
|
1032
1032
|
/**
|
|
1033
|
-
* @public
|
|
1034
1033
|
* <p>The event integration filter.</p>
|
|
1034
|
+
* @public
|
|
1035
1035
|
*/
|
|
1036
1036
|
EventFilter?: EventFilter;
|
|
1037
1037
|
/**
|
|
1038
|
-
* @public
|
|
1039
1038
|
* <p>The Amazon EventBridge bus for the event integration.</p>
|
|
1039
|
+
* @public
|
|
1040
1040
|
*/
|
|
1041
1041
|
EventBridgeBus?: string;
|
|
1042
1042
|
/**
|
|
1043
|
-
* @public
|
|
1044
1043
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
1044
|
+
* @public
|
|
1045
1045
|
*/
|
|
1046
1046
|
Tags?: Record<string, string>;
|
|
1047
1047
|
}
|
|
@@ -1050,13 +1050,13 @@ export interface EventIntegration {
|
|
|
1050
1050
|
*/
|
|
1051
1051
|
export interface ListEventIntegrationsResponse {
|
|
1052
1052
|
/**
|
|
1053
|
-
* @public
|
|
1054
1053
|
* <p>The event integrations.</p>
|
|
1054
|
+
* @public
|
|
1055
1055
|
*/
|
|
1056
1056
|
EventIntegrations?: EventIntegration[];
|
|
1057
1057
|
/**
|
|
1058
|
-
* @public
|
|
1059
1058
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
1059
|
+
* @public
|
|
1060
1060
|
*/
|
|
1061
1061
|
NextToken?: string;
|
|
1062
1062
|
}
|
|
@@ -1065,8 +1065,8 @@ export interface ListEventIntegrationsResponse {
|
|
|
1065
1065
|
*/
|
|
1066
1066
|
export interface ListTagsForResourceRequest {
|
|
1067
1067
|
/**
|
|
1068
|
-
* @public
|
|
1069
1068
|
* <p>The Amazon Resource Name (ARN) of the resource. </p>
|
|
1069
|
+
* @public
|
|
1070
1070
|
*/
|
|
1071
1071
|
resourceArn: string | undefined;
|
|
1072
1072
|
}
|
|
@@ -1075,8 +1075,8 @@ export interface ListTagsForResourceRequest {
|
|
|
1075
1075
|
*/
|
|
1076
1076
|
export interface ListTagsForResourceResponse {
|
|
1077
1077
|
/**
|
|
1078
|
-
* @public
|
|
1079
1078
|
* <p>Information about the tags.</p>
|
|
1079
|
+
* @public
|
|
1080
1080
|
*/
|
|
1081
1081
|
tags?: Record<string, string>;
|
|
1082
1082
|
}
|
|
@@ -1085,13 +1085,13 @@ export interface ListTagsForResourceResponse {
|
|
|
1085
1085
|
*/
|
|
1086
1086
|
export interface TagResourceRequest {
|
|
1087
1087
|
/**
|
|
1088
|
-
* @public
|
|
1089
1088
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
1089
|
+
* @public
|
|
1090
1090
|
*/
|
|
1091
1091
|
resourceArn: string | undefined;
|
|
1092
1092
|
/**
|
|
1093
|
-
* @public
|
|
1094
1093
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
1094
|
+
* @public
|
|
1095
1095
|
*/
|
|
1096
1096
|
tags: Record<string, string> | undefined;
|
|
1097
1097
|
}
|
|
@@ -1105,13 +1105,13 @@ export interface TagResourceResponse {
|
|
|
1105
1105
|
*/
|
|
1106
1106
|
export interface UntagResourceRequest {
|
|
1107
1107
|
/**
|
|
1108
|
-
* @public
|
|
1109
1108
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
1109
|
+
* @public
|
|
1110
1110
|
*/
|
|
1111
1111
|
resourceArn: string | undefined;
|
|
1112
1112
|
/**
|
|
1113
|
-
* @public
|
|
1114
1113
|
* <p>The tag keys.</p>
|
|
1114
|
+
* @public
|
|
1115
1115
|
*/
|
|
1116
1116
|
tagKeys: string[] | undefined;
|
|
1117
1117
|
}
|
|
@@ -1125,42 +1125,42 @@ export interface UntagResourceResponse {
|
|
|
1125
1125
|
*/
|
|
1126
1126
|
export interface UpdateApplicationRequest {
|
|
1127
1127
|
/**
|
|
1128
|
-
* @public
|
|
1129
1128
|
* <p>The Amazon Resource Name (ARN) of the Application.</p>
|
|
1129
|
+
* @public
|
|
1130
1130
|
*/
|
|
1131
1131
|
Arn: string | undefined;
|
|
1132
1132
|
/**
|
|
1133
|
-
* @public
|
|
1134
1133
|
* <p>The name of the application.</p>
|
|
1134
|
+
* @public
|
|
1135
1135
|
*/
|
|
1136
1136
|
Name?: string;
|
|
1137
1137
|
/**
|
|
1138
|
-
* @public
|
|
1139
1138
|
* <p>The description of the application.</p>
|
|
1139
|
+
* @public
|
|
1140
1140
|
*/
|
|
1141
1141
|
Description?: string;
|
|
1142
1142
|
/**
|
|
1143
|
-
* @public
|
|
1144
1143
|
* <p>The configuration for where the application should be loaded from.</p>
|
|
1144
|
+
* @public
|
|
1145
1145
|
*/
|
|
1146
1146
|
ApplicationSourceConfig?: ApplicationSourceConfig;
|
|
1147
1147
|
/**
|
|
1148
|
-
* @public
|
|
1149
1148
|
* @deprecated
|
|
1150
1149
|
*
|
|
1151
1150
|
* <p>The events that the application subscribes.</p>
|
|
1151
|
+
* @public
|
|
1152
1152
|
*/
|
|
1153
1153
|
Subscriptions?: Subscription[];
|
|
1154
1154
|
/**
|
|
1155
|
-
* @public
|
|
1156
1155
|
* @deprecated
|
|
1157
1156
|
*
|
|
1158
1157
|
* <p>The events that the application publishes.</p>
|
|
1158
|
+
* @public
|
|
1159
1159
|
*/
|
|
1160
1160
|
Publications?: Publication[];
|
|
1161
1161
|
/**
|
|
1162
|
-
* @public
|
|
1163
1162
|
* <p>The configuration of events or requests that the application has access to.</p>
|
|
1163
|
+
* @public
|
|
1164
1164
|
*/
|
|
1165
1165
|
Permissions?: string[];
|
|
1166
1166
|
}
|
|
@@ -1174,18 +1174,18 @@ export interface UpdateApplicationResponse {
|
|
|
1174
1174
|
*/
|
|
1175
1175
|
export interface UpdateDataIntegrationRequest {
|
|
1176
1176
|
/**
|
|
1177
|
-
* @public
|
|
1178
1177
|
* <p>A unique identifier for the DataIntegration.</p>
|
|
1178
|
+
* @public
|
|
1179
1179
|
*/
|
|
1180
1180
|
Identifier: string | undefined;
|
|
1181
1181
|
/**
|
|
1182
|
-
* @public
|
|
1183
1182
|
* <p>The name of the DataIntegration.</p>
|
|
1183
|
+
* @public
|
|
1184
1184
|
*/
|
|
1185
1185
|
Name?: string;
|
|
1186
1186
|
/**
|
|
1187
|
-
* @public
|
|
1188
1187
|
* <p>A description of the DataIntegration.</p>
|
|
1188
|
+
* @public
|
|
1189
1189
|
*/
|
|
1190
1190
|
Description?: string;
|
|
1191
1191
|
}
|
|
@@ -1199,13 +1199,13 @@ export interface UpdateDataIntegrationResponse {
|
|
|
1199
1199
|
*/
|
|
1200
1200
|
export interface UpdateEventIntegrationRequest {
|
|
1201
1201
|
/**
|
|
1202
|
-
* @public
|
|
1203
1202
|
* <p>The name of the event integration.</p>
|
|
1203
|
+
* @public
|
|
1204
1204
|
*/
|
|
1205
1205
|
Name: string | undefined;
|
|
1206
1206
|
/**
|
|
1207
|
-
* @public
|
|
1208
1207
|
* <p>The description of the event integration.</p>
|
|
1208
|
+
* @public
|
|
1209
1209
|
*/
|
|
1210
1210
|
Description?: string;
|
|
1211
1211
|
}
|