@aws-sdk/client-appintegrations 3.687.0 → 3.691.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.
@@ -7,7 +7,7 @@ import { AppIntegrationsServiceException as __BaseException } from "./AppIntegra
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
9
9
  readonly $fault: "client";
10
- Message?: string;
10
+ Message?: string | undefined;
11
11
  /**
12
12
  * @internal
13
13
  */
@@ -27,7 +27,7 @@ export interface ExternalUrlConfig {
27
27
  * <p>Additional URLs to allow list if different than the access URL.</p>
28
28
  * @public
29
29
  */
30
- ApprovedOrigins?: string[];
30
+ ApprovedOrigins?: string[] | undefined;
31
31
  }
32
32
  /**
33
33
  * <p>The configuration for where the application should be loaded from.</p>
@@ -38,7 +38,7 @@ export interface ApplicationSourceConfig {
38
38
  * <p>The external URL source for the application.</p>
39
39
  * @public
40
40
  */
41
- ExternalUrlConfig?: ExternalUrlConfig;
41
+ ExternalUrlConfig?: ExternalUrlConfig | undefined;
42
42
  }
43
43
  /**
44
44
  * <p>The configuration of an event that the application publishes.</p>
@@ -59,7 +59,7 @@ export interface Publication {
59
59
  * <p>The description of the publication.</p>
60
60
  * @public
61
61
  */
62
- Description?: string;
62
+ Description?: string | undefined;
63
63
  }
64
64
  /**
65
65
  * <p>The configuration of an event that the application subscribes.</p>
@@ -75,7 +75,7 @@ export interface Subscription {
75
75
  * <p>The description of the subscription.</p>
76
76
  * @public
77
77
  */
78
- Description?: string;
78
+ Description?: string | undefined;
79
79
  }
80
80
  /**
81
81
  * @public
@@ -95,7 +95,7 @@ export interface CreateApplicationRequest {
95
95
  * <p>The description of the application.</p>
96
96
  * @public
97
97
  */
98
- Description?: string;
98
+ Description?: string | undefined;
99
99
  /**
100
100
  * <p>The configuration for where the application should be loaded from.</p>
101
101
  * @public
@@ -107,14 +107,14 @@ export interface CreateApplicationRequest {
107
107
  * <p>The events that the application subscribes.</p>
108
108
  * @public
109
109
  */
110
- Subscriptions?: Subscription[];
110
+ Subscriptions?: Subscription[] | undefined;
111
111
  /**
112
112
  * @deprecated
113
113
  *
114
114
  * <p>The events that the application publishes.</p>
115
115
  * @public
116
116
  */
117
- Publications?: Publication[];
117
+ Publications?: Publication[] | undefined;
118
118
  /**
119
119
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
120
120
  * request. If not provided, the Amazon Web Services
@@ -122,17 +122,17 @@ export interface CreateApplicationRequest {
122
122
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
123
123
  * @public
124
124
  */
125
- ClientToken?: string;
125
+ ClientToken?: string | undefined;
126
126
  /**
127
127
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
128
128
  * @public
129
129
  */
130
- Tags?: Record<string, string>;
130
+ Tags?: Record<string, string> | undefined;
131
131
  /**
132
132
  * <p>The configuration of events or requests that the application has access to.</p>
133
133
  * @public
134
134
  */
135
- Permissions?: string[];
135
+ Permissions?: string[] | undefined;
136
136
  }
137
137
  /**
138
138
  * @public
@@ -142,12 +142,12 @@ export interface CreateApplicationResponse {
142
142
  * <p>The Amazon Resource Name (ARN) of the Application.</p>
143
143
  * @public
144
144
  */
145
- Arn?: string;
145
+ Arn?: string | undefined;
146
146
  /**
147
147
  * <p>A unique identifier for the Application.</p>
148
148
  * @public
149
149
  */
150
- Id?: string;
150
+ Id?: string | undefined;
151
151
  }
152
152
  /**
153
153
  * <p>A resource with the specified name already exists.</p>
@@ -156,7 +156,7 @@ export interface CreateApplicationResponse {
156
156
  export declare class DuplicateResourceException extends __BaseException {
157
157
  readonly name: "DuplicateResourceException";
158
158
  readonly $fault: "client";
159
- Message?: string;
159
+ Message?: string | undefined;
160
160
  /**
161
161
  * @internal
162
162
  */
@@ -169,7 +169,7 @@ export declare class DuplicateResourceException extends __BaseException {
169
169
  export declare class InternalServiceError extends __BaseException {
170
170
  readonly name: "InternalServiceError";
171
171
  readonly $fault: "server";
172
- Message?: string;
172
+ Message?: string | undefined;
173
173
  /**
174
174
  * @internal
175
175
  */
@@ -182,7 +182,7 @@ export declare class InternalServiceError extends __BaseException {
182
182
  export declare class InvalidRequestException extends __BaseException {
183
183
  readonly name: "InvalidRequestException";
184
184
  readonly $fault: "client";
185
- Message?: string;
185
+ Message?: string | undefined;
186
186
  /**
187
187
  * @internal
188
188
  */
@@ -195,7 +195,7 @@ export declare class InvalidRequestException extends __BaseException {
195
195
  export declare class ResourceQuotaExceededException extends __BaseException {
196
196
  readonly name: "ResourceQuotaExceededException";
197
197
  readonly $fault: "client";
198
- Message?: string;
198
+ Message?: string | undefined;
199
199
  /**
200
200
  * @internal
201
201
  */
@@ -208,7 +208,7 @@ export declare class ResourceQuotaExceededException extends __BaseException {
208
208
  export declare class ThrottlingException extends __BaseException {
209
209
  readonly name: "ThrottlingException";
210
210
  readonly $fault: "client";
211
- Message?: string;
211
+ Message?: string | undefined;
212
212
  /**
213
213
  * @internal
214
214
  */
@@ -221,7 +221,7 @@ export declare class ThrottlingException extends __BaseException {
221
221
  export declare class UnsupportedOperationException extends __BaseException {
222
222
  readonly name: "UnsupportedOperationException";
223
223
  readonly $fault: "client";
224
- Message?: string;
224
+ Message?: string | undefined;
225
225
  /**
226
226
  * @internal
227
227
  */
@@ -241,7 +241,7 @@ export interface FileConfiguration {
241
241
  * <p>Restrictions for what files should be pulled from the source.</p>
242
242
  * @public
243
243
  */
244
- Filters?: Record<string, string[]>;
244
+ Filters?: Record<string, string[]> | undefined;
245
245
  }
246
246
  /**
247
247
  * <p>The name of the data and how often it should be pulled from the source.</p>
@@ -253,12 +253,12 @@ export interface ScheduleConfiguration {
253
253
  * milliseconds or in ISO-8601 format.</p>
254
254
  * @public
255
255
  */
256
- FirstExecutionFrom?: string;
256
+ FirstExecutionFrom?: string | undefined;
257
257
  /**
258
258
  * <p>The name of the object to pull from the data source.</p>
259
259
  * @public
260
260
  */
261
- Object?: string;
261
+ Object?: string | undefined;
262
262
  /**
263
263
  * <p>How often the data should be pulled from data source.</p>
264
264
  * @public
@@ -278,7 +278,7 @@ export interface CreateDataIntegrationRequest {
278
278
  * <p>A description of the DataIntegration.</p>
279
279
  * @public
280
280
  */
281
- Description?: string;
281
+ Description?: string | undefined;
282
282
  /**
283
283
  * <p>The KMS key ARN for the DataIntegration.</p>
284
284
  * @public
@@ -288,17 +288,17 @@ export interface CreateDataIntegrationRequest {
288
288
  * <p>The URI of the data source.</p>
289
289
  * @public
290
290
  */
291
- SourceURI?: string;
291
+ SourceURI?: string | undefined;
292
292
  /**
293
293
  * <p>The name of the data and how often it should be pulled from the source.</p>
294
294
  * @public
295
295
  */
296
- ScheduleConfig?: ScheduleConfiguration;
296
+ ScheduleConfig?: ScheduleConfiguration | undefined;
297
297
  /**
298
298
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
299
299
  * @public
300
300
  */
301
- Tags?: Record<string, string>;
301
+ Tags?: Record<string, string> | undefined;
302
302
  /**
303
303
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
304
304
  * request. If not provided, the Amazon Web Services
@@ -306,17 +306,17 @@ export interface CreateDataIntegrationRequest {
306
306
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
307
307
  * @public
308
308
  */
309
- ClientToken?: string;
309
+ ClientToken?: string | undefined;
310
310
  /**
311
311
  * <p>The configuration for what files should be pulled from the source.</p>
312
312
  * @public
313
313
  */
314
- FileConfiguration?: FileConfiguration;
314
+ FileConfiguration?: FileConfiguration | undefined;
315
315
  /**
316
316
  * <p>The configuration for what data should be pulled from the source.</p>
317
317
  * @public
318
318
  */
319
- ObjectConfiguration?: Record<string, Record<string, string[]>>;
319
+ ObjectConfiguration?: Record<string, Record<string, string[]>> | undefined;
320
320
  }
321
321
  /**
322
322
  * @public
@@ -326,42 +326,42 @@ export interface CreateDataIntegrationResponse {
326
326
  * <p>The Amazon Resource Name (ARN)</p>
327
327
  * @public
328
328
  */
329
- Arn?: string;
329
+ Arn?: string | undefined;
330
330
  /**
331
331
  * <p>A unique identifier.</p>
332
332
  * @public
333
333
  */
334
- Id?: string;
334
+ Id?: string | undefined;
335
335
  /**
336
336
  * <p>The name of the DataIntegration.</p>
337
337
  * @public
338
338
  */
339
- Name?: string;
339
+ Name?: string | undefined;
340
340
  /**
341
341
  * <p>A description of the DataIntegration.</p>
342
342
  * @public
343
343
  */
344
- Description?: string;
344
+ Description?: string | undefined;
345
345
  /**
346
346
  * <p>The KMS key ARN for the DataIntegration.</p>
347
347
  * @public
348
348
  */
349
- KmsKey?: string;
349
+ KmsKey?: string | undefined;
350
350
  /**
351
351
  * <p>The URI of the data source.</p>
352
352
  * @public
353
353
  */
354
- SourceURI?: string;
354
+ SourceURI?: string | undefined;
355
355
  /**
356
356
  * <p>The name of the data and how often it should be pulled from the source.</p>
357
357
  * @public
358
358
  */
359
- ScheduleConfiguration?: ScheduleConfiguration;
359
+ ScheduleConfiguration?: ScheduleConfiguration | undefined;
360
360
  /**
361
361
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
362
362
  * @public
363
363
  */
364
- Tags?: Record<string, string>;
364
+ Tags?: Record<string, string> | undefined;
365
365
  /**
366
366
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
367
367
  * request. If not provided, the Amazon Web Services
@@ -369,17 +369,17 @@ export interface CreateDataIntegrationResponse {
369
369
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
370
370
  * @public
371
371
  */
372
- ClientToken?: string;
372
+ ClientToken?: string | undefined;
373
373
  /**
374
374
  * <p>The configuration for what files should be pulled from the source.</p>
375
375
  * @public
376
376
  */
377
- FileConfiguration?: FileConfiguration;
377
+ FileConfiguration?: FileConfiguration | undefined;
378
378
  /**
379
379
  * <p>The configuration for what data should be pulled from the source.</p>
380
380
  * @public
381
381
  */
382
- ObjectConfiguration?: Record<string, Record<string, string[]>>;
382
+ ObjectConfiguration?: Record<string, Record<string, string[]>> | undefined;
383
383
  }
384
384
  /**
385
385
  * @public
@@ -409,7 +409,7 @@ export interface OnDemandConfiguration {
409
409
  * milliseconds</p>
410
410
  * @public
411
411
  */
412
- EndTime?: string;
412
+ EndTime?: string | undefined;
413
413
  }
414
414
  /**
415
415
  * <p>The configuration for how the files should be pulled from the source.</p>
@@ -425,12 +425,12 @@ export interface ExecutionConfiguration {
425
425
  * <p>The start and end time for data pull from the source.</p>
426
426
  * @public
427
427
  */
428
- OnDemandConfiguration?: OnDemandConfiguration;
428
+ OnDemandConfiguration?: OnDemandConfiguration | undefined;
429
429
  /**
430
430
  * <p>The name of the data and how often it should be pulled from the source.</p>
431
431
  * @public
432
432
  */
433
- ScheduleConfiguration?: ScheduleConfiguration;
433
+ ScheduleConfiguration?: ScheduleConfiguration | undefined;
434
434
  }
435
435
  /**
436
436
  * @public
@@ -446,22 +446,22 @@ export interface CreateDataIntegrationAssociationRequest {
446
446
  * association.</p>
447
447
  * @public
448
448
  */
449
- ClientId?: string;
449
+ ClientId?: string | undefined;
450
450
  /**
451
451
  * <p>The configuration for what data should be pulled from the source.</p>
452
452
  * @public
453
453
  */
454
- ObjectConfiguration?: Record<string, Record<string, string[]>>;
454
+ ObjectConfiguration?: Record<string, Record<string, string[]>> | undefined;
455
455
  /**
456
456
  * <p>The URI of the data destination.</p>
457
457
  * @public
458
458
  */
459
- DestinationURI?: string;
459
+ DestinationURI?: string | undefined;
460
460
  /**
461
461
  * <p>The mapping of metadata to be extracted from the data.</p>
462
462
  * @public
463
463
  */
464
- ClientAssociationMetadata?: Record<string, string>;
464
+ ClientAssociationMetadata?: Record<string, string> | undefined;
465
465
  /**
466
466
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
467
467
  * request. If not provided, the Amazon Web Services
@@ -469,12 +469,12 @@ export interface CreateDataIntegrationAssociationRequest {
469
469
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
470
470
  * @public
471
471
  */
472
- ClientToken?: string;
472
+ ClientToken?: string | undefined;
473
473
  /**
474
474
  * <p>The configuration for how the files should be pulled from the source.</p>
475
475
  * @public
476
476
  */
477
- ExecutionConfiguration?: ExecutionConfiguration;
477
+ ExecutionConfiguration?: ExecutionConfiguration | undefined;
478
478
  }
479
479
  /**
480
480
  * @public
@@ -484,12 +484,12 @@ export interface CreateDataIntegrationAssociationResponse {
484
484
  * <p>A unique identifier. for the DataIntegrationAssociation.</p>
485
485
  * @public
486
486
  */
487
- DataIntegrationAssociationId?: string;
487
+ DataIntegrationAssociationId?: string | undefined;
488
488
  /**
489
489
  * <p>The Amazon Resource Name (ARN) for the DataIntegration.</p>
490
490
  * @public
491
491
  */
492
- DataIntegrationArn?: string;
492
+ DataIntegrationArn?: string | undefined;
493
493
  }
494
494
  /**
495
495
  * <p>The specified resource was not found.</p>
@@ -498,7 +498,7 @@ export interface CreateDataIntegrationAssociationResponse {
498
498
  export declare class ResourceNotFoundException extends __BaseException {
499
499
  readonly name: "ResourceNotFoundException";
500
500
  readonly $fault: "client";
501
- Message?: string;
501
+ Message?: string | undefined;
502
502
  /**
503
503
  * @internal
504
504
  */
@@ -528,7 +528,7 @@ export interface CreateEventIntegrationRequest {
528
528
  * <p>The description of the event integration.</p>
529
529
  * @public
530
530
  */
531
- Description?: string;
531
+ Description?: string | undefined;
532
532
  /**
533
533
  * <p>The event filter.</p>
534
534
  * @public
@@ -546,12 +546,12 @@ export interface CreateEventIntegrationRequest {
546
546
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
547
547
  * @public
548
548
  */
549
- ClientToken?: string;
549
+ ClientToken?: string | undefined;
550
550
  /**
551
551
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
552
552
  * @public
553
553
  */
554
- Tags?: Record<string, string>;
554
+ Tags?: Record<string, string> | undefined;
555
555
  }
556
556
  /**
557
557
  * @public
@@ -561,7 +561,7 @@ export interface CreateEventIntegrationResponse {
561
561
  * <p>The Amazon Resource Name (ARN) of the event integration. </p>
562
562
  * @public
563
563
  */
564
- EventIntegrationArn?: string;
564
+ EventIntegrationArn?: string | undefined;
565
565
  }
566
566
  /**
567
567
  * @public
@@ -626,66 +626,66 @@ export interface GetApplicationResponse {
626
626
  * <p>The Amazon Resource Name (ARN) of the Application.</p>
627
627
  * @public
628
628
  */
629
- Arn?: string;
629
+ Arn?: string | undefined;
630
630
  /**
631
631
  * <p>A unique identifier for the Application.</p>
632
632
  * @public
633
633
  */
634
- Id?: string;
634
+ Id?: string | undefined;
635
635
  /**
636
636
  * <p>The name of the application.</p>
637
637
  * @public
638
638
  */
639
- Name?: string;
639
+ Name?: string | undefined;
640
640
  /**
641
641
  * <p>The namespace of the application.</p>
642
642
  * @public
643
643
  */
644
- Namespace?: string;
644
+ Namespace?: string | undefined;
645
645
  /**
646
646
  * <p>The description of the application.</p>
647
647
  * @public
648
648
  */
649
- Description?: string;
649
+ Description?: string | undefined;
650
650
  /**
651
651
  * <p>The configuration for where the application should be loaded from.</p>
652
652
  * @public
653
653
  */
654
- ApplicationSourceConfig?: ApplicationSourceConfig;
654
+ ApplicationSourceConfig?: ApplicationSourceConfig | undefined;
655
655
  /**
656
656
  * @deprecated
657
657
  *
658
658
  * <p>The events that the application subscribes.</p>
659
659
  * @public
660
660
  */
661
- Subscriptions?: Subscription[];
661
+ Subscriptions?: Subscription[] | undefined;
662
662
  /**
663
663
  * @deprecated
664
664
  *
665
665
  * <p>The events that the application publishes.</p>
666
666
  * @public
667
667
  */
668
- Publications?: Publication[];
668
+ Publications?: Publication[] | undefined;
669
669
  /**
670
670
  * <p>The created time of the Application.</p>
671
671
  * @public
672
672
  */
673
- CreatedTime?: Date;
673
+ CreatedTime?: Date | undefined;
674
674
  /**
675
675
  * <p>The last modified time of the Application.</p>
676
676
  * @public
677
677
  */
678
- LastModifiedTime?: Date;
678
+ LastModifiedTime?: Date | undefined;
679
679
  /**
680
680
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
681
681
  * @public
682
682
  */
683
- Tags?: Record<string, string>;
683
+ Tags?: Record<string, string> | undefined;
684
684
  /**
685
685
  * <p>The configuration of events or requests that the application has access to.</p>
686
686
  * @public
687
687
  */
688
- Permissions?: string[];
688
+ Permissions?: string[] | undefined;
689
689
  }
690
690
  /**
691
691
  * @public
@@ -705,52 +705,52 @@ export interface GetDataIntegrationResponse {
705
705
  * <p>The Amazon Resource Name (ARN) for the DataIntegration.</p>
706
706
  * @public
707
707
  */
708
- Arn?: string;
708
+ Arn?: string | undefined;
709
709
  /**
710
710
  * <p>A unique identifier.</p>
711
711
  * @public
712
712
  */
713
- Id?: string;
713
+ Id?: string | undefined;
714
714
  /**
715
715
  * <p>The name of the DataIntegration.</p>
716
716
  * @public
717
717
  */
718
- Name?: string;
718
+ Name?: string | undefined;
719
719
  /**
720
720
  * <p>The KMS key ARN for the DataIntegration.</p>
721
721
  * @public
722
722
  */
723
- Description?: string;
723
+ Description?: string | undefined;
724
724
  /**
725
725
  * <p>The KMS key ARN for the DataIntegration.</p>
726
726
  * @public
727
727
  */
728
- KmsKey?: string;
728
+ KmsKey?: string | undefined;
729
729
  /**
730
730
  * <p>The URI of the data source.</p>
731
731
  * @public
732
732
  */
733
- SourceURI?: string;
733
+ SourceURI?: string | undefined;
734
734
  /**
735
735
  * <p>The name of the data and how often it should be pulled from the source.</p>
736
736
  * @public
737
737
  */
738
- ScheduleConfiguration?: ScheduleConfiguration;
738
+ ScheduleConfiguration?: ScheduleConfiguration | undefined;
739
739
  /**
740
740
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
741
741
  * @public
742
742
  */
743
- Tags?: Record<string, string>;
743
+ Tags?: Record<string, string> | undefined;
744
744
  /**
745
745
  * <p>The configuration for what files should be pulled from the source.</p>
746
746
  * @public
747
747
  */
748
- FileConfiguration?: FileConfiguration;
748
+ FileConfiguration?: FileConfiguration | undefined;
749
749
  /**
750
750
  * <p>The configuration for what data should be pulled from the source.</p>
751
751
  * @public
752
752
  */
753
- ObjectConfiguration?: Record<string, Record<string, string[]>>;
753
+ ObjectConfiguration?: Record<string, Record<string, string[]>> | undefined;
754
754
  }
755
755
  /**
756
756
  * @public
@@ -770,32 +770,32 @@ export interface GetEventIntegrationResponse {
770
770
  * <p>The name of the event integration. </p>
771
771
  * @public
772
772
  */
773
- Name?: string;
773
+ Name?: string | undefined;
774
774
  /**
775
775
  * <p>The description of the event integration.</p>
776
776
  * @public
777
777
  */
778
- Description?: string;
778
+ Description?: string | undefined;
779
779
  /**
780
780
  * <p>The Amazon Resource Name (ARN) for the event integration.</p>
781
781
  * @public
782
782
  */
783
- EventIntegrationArn?: string;
783
+ EventIntegrationArn?: string | undefined;
784
784
  /**
785
785
  * <p>The EventBridge bus.</p>
786
786
  * @public
787
787
  */
788
- EventBridgeBus?: string;
788
+ EventBridgeBus?: string | undefined;
789
789
  /**
790
790
  * <p>The event filter.</p>
791
791
  * @public
792
792
  */
793
- EventFilter?: EventFilter;
793
+ EventFilter?: EventFilter | undefined;
794
794
  /**
795
795
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
796
796
  * @public
797
797
  */
798
- Tags?: Record<string, string>;
798
+ Tags?: Record<string, string> | undefined;
799
799
  }
800
800
  /**
801
801
  * @public
@@ -811,12 +811,12 @@ export interface ListApplicationAssociationsRequest {
811
811
  * response in the next request to retrieve the next set of results.</p>
812
812
  * @public
813
813
  */
814
- NextToken?: string;
814
+ NextToken?: string | undefined;
815
815
  /**
816
816
  * <p>The maximum number of results to return per page.</p>
817
817
  * @public
818
818
  */
819
- MaxResults?: number;
819
+ MaxResults?: number | undefined;
820
820
  }
821
821
  /**
822
822
  * <p>Summary information about the Application Association.</p>
@@ -827,17 +827,17 @@ export interface ApplicationAssociationSummary {
827
827
  * <p>The Amazon Resource Name (ARN) of the Application Association.</p>
828
828
  * @public
829
829
  */
830
- ApplicationAssociationArn?: string;
830
+ ApplicationAssociationArn?: string | undefined;
831
831
  /**
832
832
  * <p>The Amazon Resource Name (ARN) of the Application.</p>
833
833
  * @public
834
834
  */
835
- ApplicationArn?: string;
835
+ ApplicationArn?: string | undefined;
836
836
  /**
837
837
  * <p>The identifier for the client that is associated with the Application Association.</p>
838
838
  * @public
839
839
  */
840
- ClientId?: string;
840
+ ClientId?: string | undefined;
841
841
  }
842
842
  /**
843
843
  * @public
@@ -847,12 +847,12 @@ export interface ListApplicationAssociationsResponse {
847
847
  * <p>List of Application Associations for the Application.</p>
848
848
  * @public
849
849
  */
850
- ApplicationAssociations?: ApplicationAssociationSummary[];
850
+ ApplicationAssociations?: ApplicationAssociationSummary[] | undefined;
851
851
  /**
852
852
  * <p>If there are additional results, this is the token for the next set of results.</p>
853
853
  * @public
854
854
  */
855
- NextToken?: string;
855
+ NextToken?: string | undefined;
856
856
  }
857
857
  /**
858
858
  * @public
@@ -863,12 +863,12 @@ export interface ListApplicationsRequest {
863
863
  * response in the next request to retrieve the next set of results.</p>
864
864
  * @public
865
865
  */
866
- NextToken?: string;
866
+ NextToken?: string | undefined;
867
867
  /**
868
868
  * <p>The maximum number of results to return per page.</p>
869
869
  * @public
870
870
  */
871
- MaxResults?: number;
871
+ MaxResults?: number | undefined;
872
872
  }
873
873
  /**
874
874
  * <p>Summary information about the Application.</p>
@@ -879,32 +879,32 @@ export interface ApplicationSummary {
879
879
  * <p>The Amazon Resource Name (ARN) of the Application.</p>
880
880
  * @public
881
881
  */
882
- Arn?: string;
882
+ Arn?: string | undefined;
883
883
  /**
884
884
  * <p>A unique identifier for the Application.</p>
885
885
  * @public
886
886
  */
887
- Id?: string;
887
+ Id?: string | undefined;
888
888
  /**
889
889
  * <p>The name of the application.</p>
890
890
  * @public
891
891
  */
892
- Name?: string;
892
+ Name?: string | undefined;
893
893
  /**
894
894
  * <p>The namespace of the application.</p>
895
895
  * @public
896
896
  */
897
- Namespace?: string;
897
+ Namespace?: string | undefined;
898
898
  /**
899
899
  * <p>The time when the application was created.</p>
900
900
  * @public
901
901
  */
902
- CreatedTime?: Date;
902
+ CreatedTime?: Date | undefined;
903
903
  /**
904
904
  * <p>The time when the application was last modified.</p>
905
905
  * @public
906
906
  */
907
- LastModifiedTime?: Date;
907
+ LastModifiedTime?: Date | undefined;
908
908
  }
909
909
  /**
910
910
  * @public
@@ -914,12 +914,12 @@ export interface ListApplicationsResponse {
914
914
  * <p>The Applications associated with this account.</p>
915
915
  * @public
916
916
  */
917
- Applications?: ApplicationSummary[];
917
+ Applications?: ApplicationSummary[] | undefined;
918
918
  /**
919
919
  * <p>If there are additional results, this is the token for the next set of results.</p>
920
920
  * @public
921
921
  */
922
- NextToken?: string;
922
+ NextToken?: string | undefined;
923
923
  }
924
924
  /**
925
925
  * @public
@@ -935,12 +935,12 @@ export interface ListDataIntegrationAssociationsRequest {
935
935
  * response in the next request to retrieve the next set of results.</p>
936
936
  * @public
937
937
  */
938
- NextToken?: string;
938
+ NextToken?: string | undefined;
939
939
  /**
940
940
  * <p>The maximum number of results to return per page.</p>
941
941
  * @public
942
942
  */
943
- MaxResults?: number;
943
+ MaxResults?: number | undefined;
944
944
  }
945
945
  /**
946
946
  * @public
@@ -964,12 +964,12 @@ export interface LastExecutionStatus {
964
964
  * <p>The job status enum string.</p>
965
965
  * @public
966
966
  */
967
- ExecutionStatus?: ExecutionStatus;
967
+ ExecutionStatus?: ExecutionStatus | undefined;
968
968
  /**
969
969
  * <p>The status message of a job.</p>
970
970
  * @public
971
971
  */
972
- StatusMessage?: string;
972
+ StatusMessage?: string | undefined;
973
973
  }
974
974
  /**
975
975
  * <p>Summary information about the DataIntegration association.</p>
@@ -980,33 +980,33 @@ export interface DataIntegrationAssociationSummary {
980
980
  * <p>The Amazon Resource Name (ARN) of the DataIntegration association.</p>
981
981
  * @public
982
982
  */
983
- DataIntegrationAssociationArn?: string;
983
+ DataIntegrationAssociationArn?: string | undefined;
984
984
  /**
985
985
  * <p>The Amazon Resource Name (ARN) of the DataIntegration.</p>
986
986
  * @public
987
987
  */
988
- DataIntegrationArn?: string;
988
+ DataIntegrationArn?: string | undefined;
989
989
  /**
990
990
  * <p>The identifier for the client that is associated with the DataIntegration
991
991
  * association.</p>
992
992
  * @public
993
993
  */
994
- ClientId?: string;
994
+ ClientId?: string | undefined;
995
995
  /**
996
996
  * <p>The URI of the data destination.</p>
997
997
  * @public
998
998
  */
999
- DestinationURI?: string;
999
+ DestinationURI?: string | undefined;
1000
1000
  /**
1001
1001
  * <p>The execution status of the last job.</p>
1002
1002
  * @public
1003
1003
  */
1004
- LastExecutionStatus?: LastExecutionStatus;
1004
+ LastExecutionStatus?: LastExecutionStatus | undefined;
1005
1005
  /**
1006
1006
  * <p>The configuration for how the files should be pulled from the source.</p>
1007
1007
  * @public
1008
1008
  */
1009
- ExecutionConfiguration?: ExecutionConfiguration;
1009
+ ExecutionConfiguration?: ExecutionConfiguration | undefined;
1010
1010
  }
1011
1011
  /**
1012
1012
  * @public
@@ -1016,12 +1016,12 @@ export interface ListDataIntegrationAssociationsResponse {
1016
1016
  * <p>The Amazon Resource Name (ARN) and unique ID of the DataIntegration association.</p>
1017
1017
  * @public
1018
1018
  */
1019
- DataIntegrationAssociations?: DataIntegrationAssociationSummary[];
1019
+ DataIntegrationAssociations?: DataIntegrationAssociationSummary[] | undefined;
1020
1020
  /**
1021
1021
  * <p>If there are additional results, this is the token for the next set of results.</p>
1022
1022
  * @public
1023
1023
  */
1024
- NextToken?: string;
1024
+ NextToken?: string | undefined;
1025
1025
  }
1026
1026
  /**
1027
1027
  * @public
@@ -1032,12 +1032,12 @@ export interface ListDataIntegrationsRequest {
1032
1032
  * response in the next request to retrieve the next set of results.</p>
1033
1033
  * @public
1034
1034
  */
1035
- NextToken?: string;
1035
+ NextToken?: string | undefined;
1036
1036
  /**
1037
1037
  * <p>The maximum number of results to return per page.</p>
1038
1038
  * @public
1039
1039
  */
1040
- MaxResults?: number;
1040
+ MaxResults?: number | undefined;
1041
1041
  }
1042
1042
  /**
1043
1043
  * <p>Summary information about the DataIntegration.</p>
@@ -1048,17 +1048,17 @@ export interface DataIntegrationSummary {
1048
1048
  * <p>The Amazon Resource Name (ARN) of the DataIntegration.</p>
1049
1049
  * @public
1050
1050
  */
1051
- Arn?: string;
1051
+ Arn?: string | undefined;
1052
1052
  /**
1053
1053
  * <p>The name of the DataIntegration.</p>
1054
1054
  * @public
1055
1055
  */
1056
- Name?: string;
1056
+ Name?: string | undefined;
1057
1057
  /**
1058
1058
  * <p>The URI of the data source.</p>
1059
1059
  * @public
1060
1060
  */
1061
- SourceURI?: string;
1061
+ SourceURI?: string | undefined;
1062
1062
  }
1063
1063
  /**
1064
1064
  * @public
@@ -1068,12 +1068,12 @@ export interface ListDataIntegrationsResponse {
1068
1068
  * <p>The DataIntegrations associated with this account.</p>
1069
1069
  * @public
1070
1070
  */
1071
- DataIntegrations?: DataIntegrationSummary[];
1071
+ DataIntegrations?: DataIntegrationSummary[] | undefined;
1072
1072
  /**
1073
1073
  * <p>If there are additional results, this is the token for the next set of results.</p>
1074
1074
  * @public
1075
1075
  */
1076
- NextToken?: string;
1076
+ NextToken?: string | undefined;
1077
1077
  }
1078
1078
  /**
1079
1079
  * @public
@@ -1089,12 +1089,12 @@ export interface ListEventIntegrationAssociationsRequest {
1089
1089
  * response in the next request to retrieve the next set of results.</p>
1090
1090
  * @public
1091
1091
  */
1092
- NextToken?: string;
1092
+ NextToken?: string | undefined;
1093
1093
  /**
1094
1094
  * <p>The maximum number of results to return per page.</p>
1095
1095
  * @public
1096
1096
  */
1097
- MaxResults?: number;
1097
+ MaxResults?: number | undefined;
1098
1098
  }
1099
1099
  /**
1100
1100
  * <p>The event integration association.</p>
@@ -1105,32 +1105,32 @@ export interface EventIntegrationAssociation {
1105
1105
  * <p>The Amazon Resource Name (ARN) for the event integration association.</p>
1106
1106
  * @public
1107
1107
  */
1108
- EventIntegrationAssociationArn?: string;
1108
+ EventIntegrationAssociationArn?: string | undefined;
1109
1109
  /**
1110
1110
  * <p>The identifier for the event integration association.</p>
1111
1111
  * @public
1112
1112
  */
1113
- EventIntegrationAssociationId?: string;
1113
+ EventIntegrationAssociationId?: string | undefined;
1114
1114
  /**
1115
1115
  * <p>The name of the event integration.</p>
1116
1116
  * @public
1117
1117
  */
1118
- EventIntegrationName?: string;
1118
+ EventIntegrationName?: string | undefined;
1119
1119
  /**
1120
1120
  * <p>The identifier for the client that is associated with the event integration.</p>
1121
1121
  * @public
1122
1122
  */
1123
- ClientId?: string;
1123
+ ClientId?: string | undefined;
1124
1124
  /**
1125
1125
  * <p>The name of the EventBridge rule.</p>
1126
1126
  * @public
1127
1127
  */
1128
- EventBridgeRuleName?: string;
1128
+ EventBridgeRuleName?: string | undefined;
1129
1129
  /**
1130
1130
  * <p>The metadata associated with the client.</p>
1131
1131
  * @public
1132
1132
  */
1133
- ClientAssociationMetadata?: Record<string, string>;
1133
+ ClientAssociationMetadata?: Record<string, string> | undefined;
1134
1134
  }
1135
1135
  /**
1136
1136
  * @public
@@ -1140,12 +1140,12 @@ export interface ListEventIntegrationAssociationsResponse {
1140
1140
  * <p>The event integration associations.</p>
1141
1141
  * @public
1142
1142
  */
1143
- EventIntegrationAssociations?: EventIntegrationAssociation[];
1143
+ EventIntegrationAssociations?: EventIntegrationAssociation[] | undefined;
1144
1144
  /**
1145
1145
  * <p>If there are additional results, this is the token for the next set of results.</p>
1146
1146
  * @public
1147
1147
  */
1148
- NextToken?: string;
1148
+ NextToken?: string | undefined;
1149
1149
  }
1150
1150
  /**
1151
1151
  * @public
@@ -1156,12 +1156,12 @@ export interface ListEventIntegrationsRequest {
1156
1156
  * response in the next request to retrieve the next set of results.</p>
1157
1157
  * @public
1158
1158
  */
1159
- NextToken?: string;
1159
+ NextToken?: string | undefined;
1160
1160
  /**
1161
1161
  * <p>The maximum number of results to return per page.</p>
1162
1162
  * @public
1163
1163
  */
1164
- MaxResults?: number;
1164
+ MaxResults?: number | undefined;
1165
1165
  }
1166
1166
  /**
1167
1167
  * <p>The event integration.</p>
@@ -1172,32 +1172,32 @@ export interface EventIntegration {
1172
1172
  * <p>The Amazon Resource Name (ARN) of the event integration.</p>
1173
1173
  * @public
1174
1174
  */
1175
- EventIntegrationArn?: string;
1175
+ EventIntegrationArn?: string | undefined;
1176
1176
  /**
1177
1177
  * <p>The name of the event integration.</p>
1178
1178
  * @public
1179
1179
  */
1180
- Name?: string;
1180
+ Name?: string | undefined;
1181
1181
  /**
1182
1182
  * <p>The event integration description.</p>
1183
1183
  * @public
1184
1184
  */
1185
- Description?: string;
1185
+ Description?: string | undefined;
1186
1186
  /**
1187
1187
  * <p>The event integration filter.</p>
1188
1188
  * @public
1189
1189
  */
1190
- EventFilter?: EventFilter;
1190
+ EventFilter?: EventFilter | undefined;
1191
1191
  /**
1192
1192
  * <p>The Amazon EventBridge bus for the event integration.</p>
1193
1193
  * @public
1194
1194
  */
1195
- EventBridgeBus?: string;
1195
+ EventBridgeBus?: string | undefined;
1196
1196
  /**
1197
1197
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1198
1198
  * @public
1199
1199
  */
1200
- Tags?: Record<string, string>;
1200
+ Tags?: Record<string, string> | undefined;
1201
1201
  }
1202
1202
  /**
1203
1203
  * @public
@@ -1207,12 +1207,12 @@ export interface ListEventIntegrationsResponse {
1207
1207
  * <p>The event integrations.</p>
1208
1208
  * @public
1209
1209
  */
1210
- EventIntegrations?: EventIntegration[];
1210
+ EventIntegrations?: EventIntegration[] | undefined;
1211
1211
  /**
1212
1212
  * <p>If there are additional results, this is the token for the next set of results.</p>
1213
1213
  * @public
1214
1214
  */
1215
- NextToken?: string;
1215
+ NextToken?: string | undefined;
1216
1216
  }
1217
1217
  /**
1218
1218
  * @public
@@ -1232,7 +1232,7 @@ export interface ListTagsForResourceResponse {
1232
1232
  * <p>Information about the tags.</p>
1233
1233
  * @public
1234
1234
  */
1235
- tags?: Record<string, string>;
1235
+ tags?: Record<string, string> | undefined;
1236
1236
  }
1237
1237
  /**
1238
1238
  * @public
@@ -1287,36 +1287,36 @@ export interface UpdateApplicationRequest {
1287
1287
  * <p>The name of the application.</p>
1288
1288
  * @public
1289
1289
  */
1290
- Name?: string;
1290
+ Name?: string | undefined;
1291
1291
  /**
1292
1292
  * <p>The description of the application.</p>
1293
1293
  * @public
1294
1294
  */
1295
- Description?: string;
1295
+ Description?: string | undefined;
1296
1296
  /**
1297
1297
  * <p>The configuration for where the application should be loaded from.</p>
1298
1298
  * @public
1299
1299
  */
1300
- ApplicationSourceConfig?: ApplicationSourceConfig;
1300
+ ApplicationSourceConfig?: ApplicationSourceConfig | undefined;
1301
1301
  /**
1302
1302
  * @deprecated
1303
1303
  *
1304
1304
  * <p>The events that the application subscribes.</p>
1305
1305
  * @public
1306
1306
  */
1307
- Subscriptions?: Subscription[];
1307
+ Subscriptions?: Subscription[] | undefined;
1308
1308
  /**
1309
1309
  * @deprecated
1310
1310
  *
1311
1311
  * <p>The events that the application publishes.</p>
1312
1312
  * @public
1313
1313
  */
1314
- Publications?: Publication[];
1314
+ Publications?: Publication[] | undefined;
1315
1315
  /**
1316
1316
  * <p>The configuration of events or requests that the application has access to.</p>
1317
1317
  * @public
1318
1318
  */
1319
- Permissions?: string[];
1319
+ Permissions?: string[] | undefined;
1320
1320
  }
1321
1321
  /**
1322
1322
  * @public
@@ -1336,12 +1336,12 @@ export interface UpdateDataIntegrationRequest {
1336
1336
  * <p>The name of the DataIntegration.</p>
1337
1337
  * @public
1338
1338
  */
1339
- Name?: string;
1339
+ Name?: string | undefined;
1340
1340
  /**
1341
1341
  * <p>A description of the DataIntegration.</p>
1342
1342
  * @public
1343
1343
  */
1344
- Description?: string;
1344
+ Description?: string | undefined;
1345
1345
  }
1346
1346
  /**
1347
1347
  * @public
@@ -1386,7 +1386,7 @@ export interface UpdateEventIntegrationRequest {
1386
1386
  * <p>The description of the event integration.</p>
1387
1387
  * @public
1388
1388
  */
1389
- Description?: string;
1389
+ Description?: string | undefined;
1390
1390
  }
1391
1391
  /**
1392
1392
  * @public