@aws-sdk/client-appintegrations 3.379.1 → 3.385.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/models/models_0.d.ts +100 -0
- package/package.json +5 -5
|
@@ -19,10 +19,12 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
19
19
|
*/
|
|
20
20
|
export interface FileConfiguration {
|
|
21
21
|
/**
|
|
22
|
+
* @public
|
|
22
23
|
* <p>Identifiers for the source folders to pull all files from recursively.</p>
|
|
23
24
|
*/
|
|
24
25
|
Folders: string[] | undefined;
|
|
25
26
|
/**
|
|
27
|
+
* @public
|
|
26
28
|
* <p>Restrictions for what files should be pulled from the source.</p>
|
|
27
29
|
*/
|
|
28
30
|
Filters?: Record<string, string[]>;
|
|
@@ -33,15 +35,18 @@ export interface FileConfiguration {
|
|
|
33
35
|
*/
|
|
34
36
|
export interface ScheduleConfiguration {
|
|
35
37
|
/**
|
|
38
|
+
* @public
|
|
36
39
|
* <p>The start date for objects to import in the first flow run as an Unix/epoch timestamp in
|
|
37
40
|
* milliseconds or in ISO-8601 format.</p>
|
|
38
41
|
*/
|
|
39
42
|
FirstExecutionFrom?: string;
|
|
40
43
|
/**
|
|
44
|
+
* @public
|
|
41
45
|
* <p>The name of the object to pull from the data source.</p>
|
|
42
46
|
*/
|
|
43
47
|
Object?: string;
|
|
44
48
|
/**
|
|
49
|
+
* @public
|
|
45
50
|
* <p>How often the data should be pulled from data source.</p>
|
|
46
51
|
*/
|
|
47
52
|
ScheduleExpression: string | undefined;
|
|
@@ -51,30 +56,37 @@ export interface ScheduleConfiguration {
|
|
|
51
56
|
*/
|
|
52
57
|
export interface CreateDataIntegrationRequest {
|
|
53
58
|
/**
|
|
59
|
+
* @public
|
|
54
60
|
* <p>The name of the DataIntegration.</p>
|
|
55
61
|
*/
|
|
56
62
|
Name: string | undefined;
|
|
57
63
|
/**
|
|
64
|
+
* @public
|
|
58
65
|
* <p>A description of the DataIntegration.</p>
|
|
59
66
|
*/
|
|
60
67
|
Description?: string;
|
|
61
68
|
/**
|
|
69
|
+
* @public
|
|
62
70
|
* <p>The KMS key for the DataIntegration.</p>
|
|
63
71
|
*/
|
|
64
72
|
KmsKey: string | undefined;
|
|
65
73
|
/**
|
|
74
|
+
* @public
|
|
66
75
|
* <p>The URI of the data source.</p>
|
|
67
76
|
*/
|
|
68
77
|
SourceURI: string | undefined;
|
|
69
78
|
/**
|
|
79
|
+
* @public
|
|
70
80
|
* <p>The name of the data and how often it should be pulled from the source.</p>
|
|
71
81
|
*/
|
|
72
82
|
ScheduleConfig: ScheduleConfiguration | undefined;
|
|
73
83
|
/**
|
|
84
|
+
* @public
|
|
74
85
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
75
86
|
*/
|
|
76
87
|
Tags?: Record<string, string>;
|
|
77
88
|
/**
|
|
89
|
+
* @public
|
|
78
90
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
79
91
|
* request. If not provided, the Amazon Web Services
|
|
80
92
|
* SDK populates this field. For more information about idempotency, see
|
|
@@ -82,10 +94,12 @@ export interface CreateDataIntegrationRequest {
|
|
|
82
94
|
*/
|
|
83
95
|
ClientToken?: string;
|
|
84
96
|
/**
|
|
97
|
+
* @public
|
|
85
98
|
* <p>The configuration for what files should be pulled from the source.</p>
|
|
86
99
|
*/
|
|
87
100
|
FileConfiguration?: FileConfiguration;
|
|
88
101
|
/**
|
|
102
|
+
* @public
|
|
89
103
|
* <p>The configuration for what data should be pulled from the source.</p>
|
|
90
104
|
*/
|
|
91
105
|
ObjectConfiguration?: Record<string, Record<string, string[]>>;
|
|
@@ -95,38 +109,47 @@ export interface CreateDataIntegrationRequest {
|
|
|
95
109
|
*/
|
|
96
110
|
export interface CreateDataIntegrationResponse {
|
|
97
111
|
/**
|
|
112
|
+
* @public
|
|
98
113
|
* <p>The Amazon Resource Name (ARN)</p>
|
|
99
114
|
*/
|
|
100
115
|
Arn?: string;
|
|
101
116
|
/**
|
|
117
|
+
* @public
|
|
102
118
|
* <p>A unique identifier.</p>
|
|
103
119
|
*/
|
|
104
120
|
Id?: string;
|
|
105
121
|
/**
|
|
122
|
+
* @public
|
|
106
123
|
* <p>The name of the DataIntegration.</p>
|
|
107
124
|
*/
|
|
108
125
|
Name?: string;
|
|
109
126
|
/**
|
|
127
|
+
* @public
|
|
110
128
|
* <p>A description of the DataIntegration.</p>
|
|
111
129
|
*/
|
|
112
130
|
Description?: string;
|
|
113
131
|
/**
|
|
132
|
+
* @public
|
|
114
133
|
* <p>The KMS key for the DataIntegration.</p>
|
|
115
134
|
*/
|
|
116
135
|
KmsKey?: string;
|
|
117
136
|
/**
|
|
137
|
+
* @public
|
|
118
138
|
* <p>The URI of the data source.</p>
|
|
119
139
|
*/
|
|
120
140
|
SourceURI?: string;
|
|
121
141
|
/**
|
|
142
|
+
* @public
|
|
122
143
|
* <p>The name of the data and how often it should be pulled from the source.</p>
|
|
123
144
|
*/
|
|
124
145
|
ScheduleConfiguration?: ScheduleConfiguration;
|
|
125
146
|
/**
|
|
147
|
+
* @public
|
|
126
148
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
127
149
|
*/
|
|
128
150
|
Tags?: Record<string, string>;
|
|
129
151
|
/**
|
|
152
|
+
* @public
|
|
130
153
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
131
154
|
* request. If not provided, the Amazon Web Services
|
|
132
155
|
* SDK populates this field. For more information about idempotency, see
|
|
@@ -134,10 +157,12 @@ export interface CreateDataIntegrationResponse {
|
|
|
134
157
|
*/
|
|
135
158
|
ClientToken?: string;
|
|
136
159
|
/**
|
|
160
|
+
* @public
|
|
137
161
|
* <p>The configuration for what files should be pulled from the source.</p>
|
|
138
162
|
*/
|
|
139
163
|
FileConfiguration?: FileConfiguration;
|
|
140
164
|
/**
|
|
165
|
+
* @public
|
|
141
166
|
* <p>The configuration for what data should be pulled from the source.</p>
|
|
142
167
|
*/
|
|
143
168
|
ObjectConfiguration?: Record<string, Record<string, string[]>>;
|
|
@@ -213,6 +238,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
213
238
|
*/
|
|
214
239
|
export interface EventFilter {
|
|
215
240
|
/**
|
|
241
|
+
* @public
|
|
216
242
|
* <p>The source of the events.</p>
|
|
217
243
|
*/
|
|
218
244
|
Source: string | undefined;
|
|
@@ -222,22 +248,27 @@ export interface EventFilter {
|
|
|
222
248
|
*/
|
|
223
249
|
export interface CreateEventIntegrationRequest {
|
|
224
250
|
/**
|
|
251
|
+
* @public
|
|
225
252
|
* <p>The name of the event integration.</p>
|
|
226
253
|
*/
|
|
227
254
|
Name: string | undefined;
|
|
228
255
|
/**
|
|
256
|
+
* @public
|
|
229
257
|
* <p>The description of the event integration.</p>
|
|
230
258
|
*/
|
|
231
259
|
Description?: string;
|
|
232
260
|
/**
|
|
261
|
+
* @public
|
|
233
262
|
* <p>The event filter.</p>
|
|
234
263
|
*/
|
|
235
264
|
EventFilter: EventFilter | undefined;
|
|
236
265
|
/**
|
|
266
|
+
* @public
|
|
237
267
|
* <p>The EventBridge bus.</p>
|
|
238
268
|
*/
|
|
239
269
|
EventBridgeBus: string | undefined;
|
|
240
270
|
/**
|
|
271
|
+
* @public
|
|
241
272
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
242
273
|
* request. If not provided, the Amazon Web Services
|
|
243
274
|
* SDK populates this field. For more information about idempotency, see
|
|
@@ -245,6 +276,7 @@ export interface CreateEventIntegrationRequest {
|
|
|
245
276
|
*/
|
|
246
277
|
ClientToken?: string;
|
|
247
278
|
/**
|
|
279
|
+
* @public
|
|
248
280
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
249
281
|
*/
|
|
250
282
|
Tags?: Record<string, string>;
|
|
@@ -254,6 +286,7 @@ export interface CreateEventIntegrationRequest {
|
|
|
254
286
|
*/
|
|
255
287
|
export interface CreateEventIntegrationResponse {
|
|
256
288
|
/**
|
|
289
|
+
* @public
|
|
257
290
|
* <p>The Amazon Resource Name (ARN) of the event integration. </p>
|
|
258
291
|
*/
|
|
259
292
|
EventIntegrationArn?: string;
|
|
@@ -263,6 +296,7 @@ export interface CreateEventIntegrationResponse {
|
|
|
263
296
|
*/
|
|
264
297
|
export interface DeleteDataIntegrationRequest {
|
|
265
298
|
/**
|
|
299
|
+
* @public
|
|
266
300
|
* <p>A unique identifier for the DataIntegration.</p>
|
|
267
301
|
*/
|
|
268
302
|
DataIntegrationIdentifier: string | undefined;
|
|
@@ -290,6 +324,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
290
324
|
*/
|
|
291
325
|
export interface DeleteEventIntegrationRequest {
|
|
292
326
|
/**
|
|
327
|
+
* @public
|
|
293
328
|
* <p>The name of the event integration.</p>
|
|
294
329
|
*/
|
|
295
330
|
Name: string | undefined;
|
|
@@ -304,6 +339,7 @@ export interface DeleteEventIntegrationResponse {
|
|
|
304
339
|
*/
|
|
305
340
|
export interface GetDataIntegrationRequest {
|
|
306
341
|
/**
|
|
342
|
+
* @public
|
|
307
343
|
* <p>A unique identifier.</p>
|
|
308
344
|
*/
|
|
309
345
|
Identifier: string | undefined;
|
|
@@ -313,42 +349,52 @@ export interface GetDataIntegrationRequest {
|
|
|
313
349
|
*/
|
|
314
350
|
export interface GetDataIntegrationResponse {
|
|
315
351
|
/**
|
|
352
|
+
* @public
|
|
316
353
|
* <p>The Amazon Resource Name (ARN) for the DataIntegration.</p>
|
|
317
354
|
*/
|
|
318
355
|
Arn?: string;
|
|
319
356
|
/**
|
|
357
|
+
* @public
|
|
320
358
|
* <p>A unique identifier.</p>
|
|
321
359
|
*/
|
|
322
360
|
Id?: string;
|
|
323
361
|
/**
|
|
362
|
+
* @public
|
|
324
363
|
* <p>The name of the DataIntegration.</p>
|
|
325
364
|
*/
|
|
326
365
|
Name?: string;
|
|
327
366
|
/**
|
|
367
|
+
* @public
|
|
328
368
|
* <p>The KMS key for the DataIntegration.</p>
|
|
329
369
|
*/
|
|
330
370
|
Description?: string;
|
|
331
371
|
/**
|
|
372
|
+
* @public
|
|
332
373
|
* <p>The KMS key for the DataIntegration.</p>
|
|
333
374
|
*/
|
|
334
375
|
KmsKey?: string;
|
|
335
376
|
/**
|
|
377
|
+
* @public
|
|
336
378
|
* <p>The URI of the data source.</p>
|
|
337
379
|
*/
|
|
338
380
|
SourceURI?: string;
|
|
339
381
|
/**
|
|
382
|
+
* @public
|
|
340
383
|
* <p>The name of the data and how often it should be pulled from the source.</p>
|
|
341
384
|
*/
|
|
342
385
|
ScheduleConfiguration?: ScheduleConfiguration;
|
|
343
386
|
/**
|
|
387
|
+
* @public
|
|
344
388
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
345
389
|
*/
|
|
346
390
|
Tags?: Record<string, string>;
|
|
347
391
|
/**
|
|
392
|
+
* @public
|
|
348
393
|
* <p>The configuration for what files should be pulled from the source.</p>
|
|
349
394
|
*/
|
|
350
395
|
FileConfiguration?: FileConfiguration;
|
|
351
396
|
/**
|
|
397
|
+
* @public
|
|
352
398
|
* <p>The configuration for what data should be pulled from the source.</p>
|
|
353
399
|
*/
|
|
354
400
|
ObjectConfiguration?: Record<string, Record<string, string[]>>;
|
|
@@ -358,6 +404,7 @@ export interface GetDataIntegrationResponse {
|
|
|
358
404
|
*/
|
|
359
405
|
export interface GetEventIntegrationRequest {
|
|
360
406
|
/**
|
|
407
|
+
* @public
|
|
361
408
|
* <p>The name of the event integration. </p>
|
|
362
409
|
*/
|
|
363
410
|
Name: string | undefined;
|
|
@@ -367,26 +414,32 @@ export interface GetEventIntegrationRequest {
|
|
|
367
414
|
*/
|
|
368
415
|
export interface GetEventIntegrationResponse {
|
|
369
416
|
/**
|
|
417
|
+
* @public
|
|
370
418
|
* <p>The name of the event integration. </p>
|
|
371
419
|
*/
|
|
372
420
|
Name?: string;
|
|
373
421
|
/**
|
|
422
|
+
* @public
|
|
374
423
|
* <p>The description of the event integration.</p>
|
|
375
424
|
*/
|
|
376
425
|
Description?: string;
|
|
377
426
|
/**
|
|
427
|
+
* @public
|
|
378
428
|
* <p>The Amazon Resource Name (ARN) for the event integration.</p>
|
|
379
429
|
*/
|
|
380
430
|
EventIntegrationArn?: string;
|
|
381
431
|
/**
|
|
432
|
+
* @public
|
|
382
433
|
* <p>The EventBridge bus.</p>
|
|
383
434
|
*/
|
|
384
435
|
EventBridgeBus?: string;
|
|
385
436
|
/**
|
|
437
|
+
* @public
|
|
386
438
|
* <p>The event filter.</p>
|
|
387
439
|
*/
|
|
388
440
|
EventFilter?: EventFilter;
|
|
389
441
|
/**
|
|
442
|
+
* @public
|
|
390
443
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
391
444
|
*/
|
|
392
445
|
Tags?: Record<string, string>;
|
|
@@ -396,15 +449,18 @@ export interface GetEventIntegrationResponse {
|
|
|
396
449
|
*/
|
|
397
450
|
export interface ListDataIntegrationAssociationsRequest {
|
|
398
451
|
/**
|
|
452
|
+
* @public
|
|
399
453
|
* <p>A unique identifier for the DataIntegration.</p>
|
|
400
454
|
*/
|
|
401
455
|
DataIntegrationIdentifier: string | undefined;
|
|
402
456
|
/**
|
|
457
|
+
* @public
|
|
403
458
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
404
459
|
* response in the next request to retrieve the next set of results.</p>
|
|
405
460
|
*/
|
|
406
461
|
NextToken?: string;
|
|
407
462
|
/**
|
|
463
|
+
* @public
|
|
408
464
|
* <p>The maximum number of results to return per page.</p>
|
|
409
465
|
*/
|
|
410
466
|
MaxResults?: number;
|
|
@@ -415,14 +471,17 @@ export interface ListDataIntegrationAssociationsRequest {
|
|
|
415
471
|
*/
|
|
416
472
|
export interface DataIntegrationAssociationSummary {
|
|
417
473
|
/**
|
|
474
|
+
* @public
|
|
418
475
|
* <p>The Amazon Resource Name (ARN) of the DataIntegration association.</p>
|
|
419
476
|
*/
|
|
420
477
|
DataIntegrationAssociationArn?: string;
|
|
421
478
|
/**
|
|
479
|
+
* @public
|
|
422
480
|
* <p>The Amazon Resource Name (ARN) of the DataIntegration.</p>
|
|
423
481
|
*/
|
|
424
482
|
DataIntegrationArn?: string;
|
|
425
483
|
/**
|
|
484
|
+
* @public
|
|
426
485
|
* <p>The identifier for the client that is associated with the DataIntegration
|
|
427
486
|
* association.</p>
|
|
428
487
|
*/
|
|
@@ -433,10 +492,12 @@ export interface DataIntegrationAssociationSummary {
|
|
|
433
492
|
*/
|
|
434
493
|
export interface ListDataIntegrationAssociationsResponse {
|
|
435
494
|
/**
|
|
495
|
+
* @public
|
|
436
496
|
* <p>The Amazon Resource Name (ARN) and unique ID of the DataIntegration association.</p>
|
|
437
497
|
*/
|
|
438
498
|
DataIntegrationAssociations?: DataIntegrationAssociationSummary[];
|
|
439
499
|
/**
|
|
500
|
+
* @public
|
|
440
501
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
441
502
|
*/
|
|
442
503
|
NextToken?: string;
|
|
@@ -446,11 +507,13 @@ export interface ListDataIntegrationAssociationsResponse {
|
|
|
446
507
|
*/
|
|
447
508
|
export interface ListDataIntegrationsRequest {
|
|
448
509
|
/**
|
|
510
|
+
* @public
|
|
449
511
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
450
512
|
* response in the next request to retrieve the next set of results.</p>
|
|
451
513
|
*/
|
|
452
514
|
NextToken?: string;
|
|
453
515
|
/**
|
|
516
|
+
* @public
|
|
454
517
|
* <p>The maximum number of results to return per page.</p>
|
|
455
518
|
*/
|
|
456
519
|
MaxResults?: number;
|
|
@@ -461,14 +524,17 @@ export interface ListDataIntegrationsRequest {
|
|
|
461
524
|
*/
|
|
462
525
|
export interface DataIntegrationSummary {
|
|
463
526
|
/**
|
|
527
|
+
* @public
|
|
464
528
|
* <p>The Amazon Resource Name (ARN) of the DataIntegration.</p>
|
|
465
529
|
*/
|
|
466
530
|
Arn?: string;
|
|
467
531
|
/**
|
|
532
|
+
* @public
|
|
468
533
|
* <p>The name of the DataIntegration.</p>
|
|
469
534
|
*/
|
|
470
535
|
Name?: string;
|
|
471
536
|
/**
|
|
537
|
+
* @public
|
|
472
538
|
* <p>The URI of the data source.</p>
|
|
473
539
|
*/
|
|
474
540
|
SourceURI?: string;
|
|
@@ -478,10 +544,12 @@ export interface DataIntegrationSummary {
|
|
|
478
544
|
*/
|
|
479
545
|
export interface ListDataIntegrationsResponse {
|
|
480
546
|
/**
|
|
547
|
+
* @public
|
|
481
548
|
* <p>The DataIntegrations associated with this account.</p>
|
|
482
549
|
*/
|
|
483
550
|
DataIntegrations?: DataIntegrationSummary[];
|
|
484
551
|
/**
|
|
552
|
+
* @public
|
|
485
553
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
486
554
|
*/
|
|
487
555
|
NextToken?: string;
|
|
@@ -491,15 +559,18 @@ export interface ListDataIntegrationsResponse {
|
|
|
491
559
|
*/
|
|
492
560
|
export interface ListEventIntegrationAssociationsRequest {
|
|
493
561
|
/**
|
|
562
|
+
* @public
|
|
494
563
|
* <p>The name of the event integration. </p>
|
|
495
564
|
*/
|
|
496
565
|
EventIntegrationName: string | undefined;
|
|
497
566
|
/**
|
|
567
|
+
* @public
|
|
498
568
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
499
569
|
* response in the next request to retrieve the next set of results.</p>
|
|
500
570
|
*/
|
|
501
571
|
NextToken?: string;
|
|
502
572
|
/**
|
|
573
|
+
* @public
|
|
503
574
|
* <p>The maximum number of results to return per page.</p>
|
|
504
575
|
*/
|
|
505
576
|
MaxResults?: number;
|
|
@@ -510,26 +581,32 @@ export interface ListEventIntegrationAssociationsRequest {
|
|
|
510
581
|
*/
|
|
511
582
|
export interface EventIntegrationAssociation {
|
|
512
583
|
/**
|
|
584
|
+
* @public
|
|
513
585
|
* <p>The Amazon Resource Name (ARN) for the event integration association.</p>
|
|
514
586
|
*/
|
|
515
587
|
EventIntegrationAssociationArn?: string;
|
|
516
588
|
/**
|
|
589
|
+
* @public
|
|
517
590
|
* <p>The identifier for the event integration association.</p>
|
|
518
591
|
*/
|
|
519
592
|
EventIntegrationAssociationId?: string;
|
|
520
593
|
/**
|
|
594
|
+
* @public
|
|
521
595
|
* <p>The name of the event integration.</p>
|
|
522
596
|
*/
|
|
523
597
|
EventIntegrationName?: string;
|
|
524
598
|
/**
|
|
599
|
+
* @public
|
|
525
600
|
* <p>The identifier for the client that is associated with the event integration.</p>
|
|
526
601
|
*/
|
|
527
602
|
ClientId?: string;
|
|
528
603
|
/**
|
|
604
|
+
* @public
|
|
529
605
|
* <p>The name of the EventBridge rule.</p>
|
|
530
606
|
*/
|
|
531
607
|
EventBridgeRuleName?: string;
|
|
532
608
|
/**
|
|
609
|
+
* @public
|
|
533
610
|
* <p>The metadata associated with the client.</p>
|
|
534
611
|
*/
|
|
535
612
|
ClientAssociationMetadata?: Record<string, string>;
|
|
@@ -539,10 +616,12 @@ export interface EventIntegrationAssociation {
|
|
|
539
616
|
*/
|
|
540
617
|
export interface ListEventIntegrationAssociationsResponse {
|
|
541
618
|
/**
|
|
619
|
+
* @public
|
|
542
620
|
* <p>The event integration associations.</p>
|
|
543
621
|
*/
|
|
544
622
|
EventIntegrationAssociations?: EventIntegrationAssociation[];
|
|
545
623
|
/**
|
|
624
|
+
* @public
|
|
546
625
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
547
626
|
*/
|
|
548
627
|
NextToken?: string;
|
|
@@ -552,11 +631,13 @@ export interface ListEventIntegrationAssociationsResponse {
|
|
|
552
631
|
*/
|
|
553
632
|
export interface ListEventIntegrationsRequest {
|
|
554
633
|
/**
|
|
634
|
+
* @public
|
|
555
635
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
556
636
|
* response in the next request to retrieve the next set of results.</p>
|
|
557
637
|
*/
|
|
558
638
|
NextToken?: string;
|
|
559
639
|
/**
|
|
640
|
+
* @public
|
|
560
641
|
* <p>The maximum number of results to return per page.</p>
|
|
561
642
|
*/
|
|
562
643
|
MaxResults?: number;
|
|
@@ -567,26 +648,32 @@ export interface ListEventIntegrationsRequest {
|
|
|
567
648
|
*/
|
|
568
649
|
export interface EventIntegration {
|
|
569
650
|
/**
|
|
651
|
+
* @public
|
|
570
652
|
* <p>The Amazon Resource Name (ARN) of the event integration.</p>
|
|
571
653
|
*/
|
|
572
654
|
EventIntegrationArn?: string;
|
|
573
655
|
/**
|
|
656
|
+
* @public
|
|
574
657
|
* <p>The name of the event integration.</p>
|
|
575
658
|
*/
|
|
576
659
|
Name?: string;
|
|
577
660
|
/**
|
|
661
|
+
* @public
|
|
578
662
|
* <p>The event integration description.</p>
|
|
579
663
|
*/
|
|
580
664
|
Description?: string;
|
|
581
665
|
/**
|
|
666
|
+
* @public
|
|
582
667
|
* <p>The event integration filter.</p>
|
|
583
668
|
*/
|
|
584
669
|
EventFilter?: EventFilter;
|
|
585
670
|
/**
|
|
671
|
+
* @public
|
|
586
672
|
* <p>The Amazon EventBridge bus for the event integration.</p>
|
|
587
673
|
*/
|
|
588
674
|
EventBridgeBus?: string;
|
|
589
675
|
/**
|
|
676
|
+
* @public
|
|
590
677
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
591
678
|
*/
|
|
592
679
|
Tags?: Record<string, string>;
|
|
@@ -596,10 +683,12 @@ export interface EventIntegration {
|
|
|
596
683
|
*/
|
|
597
684
|
export interface ListEventIntegrationsResponse {
|
|
598
685
|
/**
|
|
686
|
+
* @public
|
|
599
687
|
* <p>The event integrations.</p>
|
|
600
688
|
*/
|
|
601
689
|
EventIntegrations?: EventIntegration[];
|
|
602
690
|
/**
|
|
691
|
+
* @public
|
|
603
692
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
604
693
|
*/
|
|
605
694
|
NextToken?: string;
|
|
@@ -609,6 +698,7 @@ export interface ListEventIntegrationsResponse {
|
|
|
609
698
|
*/
|
|
610
699
|
export interface ListTagsForResourceRequest {
|
|
611
700
|
/**
|
|
701
|
+
* @public
|
|
612
702
|
* <p>The Amazon Resource Name (ARN) of the resource. </p>
|
|
613
703
|
*/
|
|
614
704
|
resourceArn: string | undefined;
|
|
@@ -618,6 +708,7 @@ export interface ListTagsForResourceRequest {
|
|
|
618
708
|
*/
|
|
619
709
|
export interface ListTagsForResourceResponse {
|
|
620
710
|
/**
|
|
711
|
+
* @public
|
|
621
712
|
* <p>Information about the tags.</p>
|
|
622
713
|
*/
|
|
623
714
|
tags?: Record<string, string>;
|
|
@@ -627,10 +718,12 @@ export interface ListTagsForResourceResponse {
|
|
|
627
718
|
*/
|
|
628
719
|
export interface TagResourceRequest {
|
|
629
720
|
/**
|
|
721
|
+
* @public
|
|
630
722
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
631
723
|
*/
|
|
632
724
|
resourceArn: string | undefined;
|
|
633
725
|
/**
|
|
726
|
+
* @public
|
|
634
727
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
635
728
|
*/
|
|
636
729
|
tags: Record<string, string> | undefined;
|
|
@@ -645,10 +738,12 @@ export interface TagResourceResponse {
|
|
|
645
738
|
*/
|
|
646
739
|
export interface UntagResourceRequest {
|
|
647
740
|
/**
|
|
741
|
+
* @public
|
|
648
742
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
649
743
|
*/
|
|
650
744
|
resourceArn: string | undefined;
|
|
651
745
|
/**
|
|
746
|
+
* @public
|
|
652
747
|
* <p>The tag keys.</p>
|
|
653
748
|
*/
|
|
654
749
|
tagKeys: string[] | undefined;
|
|
@@ -663,14 +758,17 @@ export interface UntagResourceResponse {
|
|
|
663
758
|
*/
|
|
664
759
|
export interface UpdateDataIntegrationRequest {
|
|
665
760
|
/**
|
|
761
|
+
* @public
|
|
666
762
|
* <p>A unique identifier for the DataIntegration.</p>
|
|
667
763
|
*/
|
|
668
764
|
Identifier: string | undefined;
|
|
669
765
|
/**
|
|
766
|
+
* @public
|
|
670
767
|
* <p>The name of the DataIntegration.</p>
|
|
671
768
|
*/
|
|
672
769
|
Name?: string;
|
|
673
770
|
/**
|
|
771
|
+
* @public
|
|
674
772
|
* <p>A description of the DataIntegration.</p>
|
|
675
773
|
*/
|
|
676
774
|
Description?: string;
|
|
@@ -685,10 +783,12 @@ export interface UpdateDataIntegrationResponse {
|
|
|
685
783
|
*/
|
|
686
784
|
export interface UpdateEventIntegrationRequest {
|
|
687
785
|
/**
|
|
786
|
+
* @public
|
|
688
787
|
* <p>The name of the event integration.</p>
|
|
689
788
|
*/
|
|
690
789
|
Name: string | undefined;
|
|
691
790
|
/**
|
|
791
|
+
* @public
|
|
692
792
|
* <p>The description of the event inegration.</p>
|
|
693
793
|
*/
|
|
694
794
|
Description?: string;
|
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.385.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,15 +21,15 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.385.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.385.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|