@aws-sdk/client-schemas 3.686.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.
@@ -20,32 +20,32 @@ export interface DiscovererSummary {
20
20
  * <p>The ARN of the discoverer.</p>
21
21
  * @public
22
22
  */
23
- DiscovererArn?: string;
23
+ DiscovererArn?: string | undefined;
24
24
  /**
25
25
  * <p>The ID of the discoverer.</p>
26
26
  * @public
27
27
  */
28
- DiscovererId?: string;
28
+ DiscovererId?: string | undefined;
29
29
  /**
30
30
  * <p>The ARN of the event bus.</p>
31
31
  * @public
32
32
  */
33
- SourceArn?: string;
33
+ SourceArn?: string | undefined;
34
34
  /**
35
35
  * <p>The state of the discoverer.</p>
36
36
  * @public
37
37
  */
38
- State?: DiscovererState;
38
+ State?: DiscovererState | undefined;
39
39
  /**
40
40
  * <p>The Status if the discoverer will discover schemas from events sent from another account.</p>
41
41
  * @public
42
42
  */
43
- CrossAccount?: boolean;
43
+ CrossAccount?: boolean | undefined;
44
44
  /**
45
45
  * <p>Tags associated with the resource.</p>
46
46
  * @public
47
47
  */
48
- Tags?: Record<string, string>;
48
+ Tags?: Record<string, string> | undefined;
49
49
  }
50
50
  /**
51
51
  * @public
@@ -55,17 +55,17 @@ export interface RegistrySummary {
55
55
  * <p>The ARN of the registry.</p>
56
56
  * @public
57
57
  */
58
- RegistryArn?: string;
58
+ RegistryArn?: string | undefined;
59
59
  /**
60
60
  * <p>The name of the registry.</p>
61
61
  * @public
62
62
  */
63
- RegistryName?: string;
63
+ RegistryName?: string | undefined;
64
64
  /**
65
65
  * <p>Tags associated with the registry.</p>
66
66
  * @public
67
67
  */
68
- Tags?: Record<string, string>;
68
+ Tags?: Record<string, string> | undefined;
69
69
  }
70
70
  /**
71
71
  * <p>A summary of schema details.</p>
@@ -76,27 +76,27 @@ export interface SchemaSummary {
76
76
  * <p>The date and time that schema was modified.</p>
77
77
  * @public
78
78
  */
79
- LastModified?: Date;
79
+ LastModified?: Date | undefined;
80
80
  /**
81
81
  * <p>The ARN of the schema.</p>
82
82
  * @public
83
83
  */
84
- SchemaArn?: string;
84
+ SchemaArn?: string | undefined;
85
85
  /**
86
86
  * <p>The name of the schema.</p>
87
87
  * @public
88
88
  */
89
- SchemaName?: string;
89
+ SchemaName?: string | undefined;
90
90
  /**
91
91
  * <p>Tags associated with the schema.</p>
92
92
  * @public
93
93
  */
94
- Tags?: Record<string, string>;
94
+ Tags?: Record<string, string> | undefined;
95
95
  /**
96
96
  * <p>The number of versions available for the schema.</p>
97
97
  * @public
98
98
  */
99
- VersionCount?: number;
99
+ VersionCount?: number | undefined;
100
100
  }
101
101
  /**
102
102
  * @public
@@ -118,22 +118,22 @@ export interface SchemaVersionSummary {
118
118
  * <p>The ARN of the schema version.</p>
119
119
  * @public
120
120
  */
121
- SchemaArn?: string;
121
+ SchemaArn?: string | undefined;
122
122
  /**
123
123
  * <p>The name of the schema.</p>
124
124
  * @public
125
125
  */
126
- SchemaName?: string;
126
+ SchemaName?: string | undefined;
127
127
  /**
128
128
  * <p>The version number of the schema.</p>
129
129
  * @public
130
130
  */
131
- SchemaVersion?: string;
131
+ SchemaVersion?: string | undefined;
132
132
  /**
133
133
  * <p>The type of schema.</p>
134
134
  * @public
135
135
  */
136
- Type?: Type;
136
+ Type?: Type | undefined;
137
137
  }
138
138
  /**
139
139
  * @public
@@ -143,17 +143,17 @@ export interface SearchSchemaVersionSummary {
143
143
  * <p>The date the schema version was created.</p>
144
144
  * @public
145
145
  */
146
- CreatedDate?: Date;
146
+ CreatedDate?: Date | undefined;
147
147
  /**
148
148
  * <p>The version number of the schema</p>
149
149
  * @public
150
150
  */
151
- SchemaVersion?: string;
151
+ SchemaVersion?: string | undefined;
152
152
  /**
153
153
  * <p>The type of schema.</p>
154
154
  * @public
155
155
  */
156
- Type?: Type;
156
+ Type?: Type | undefined;
157
157
  }
158
158
  /**
159
159
  * @public
@@ -163,22 +163,22 @@ export interface SearchSchemaSummary {
163
163
  * <p>The name of the registry.</p>
164
164
  * @public
165
165
  */
166
- RegistryName?: string;
166
+ RegistryName?: string | undefined;
167
167
  /**
168
168
  * <p>The ARN of the schema.</p>
169
169
  * @public
170
170
  */
171
- SchemaArn?: string;
171
+ SchemaArn?: string | undefined;
172
172
  /**
173
173
  * <p>The name of the schema.</p>
174
174
  * @public
175
175
  */
176
- SchemaName?: string;
176
+ SchemaName?: string | undefined;
177
177
  /**
178
178
  * <p>An array of schema version summaries.</p>
179
179
  * @public
180
180
  */
181
- SchemaVersions?: SearchSchemaVersionSummary[];
181
+ SchemaVersions?: SearchSchemaVersionSummary[] | undefined;
182
182
  }
183
183
  /**
184
184
  * @public
@@ -243,7 +243,7 @@ export interface CreateDiscovererRequest {
243
243
  * <p>A description for the discoverer.</p>
244
244
  * @public
245
245
  */
246
- Description?: string;
246
+ Description?: string | undefined;
247
247
  /**
248
248
  * <p>The ARN of the event bus.</p>
249
249
  * @public
@@ -253,12 +253,12 @@ export interface CreateDiscovererRequest {
253
253
  * <p>Support discovery of schemas in events sent to the bus from another account. (default: true).</p>
254
254
  * @public
255
255
  */
256
- CrossAccount?: boolean;
256
+ CrossAccount?: boolean | undefined;
257
257
  /**
258
258
  * <p>Tags associated with the resource.</p>
259
259
  * @public
260
260
  */
261
- Tags?: Record<string, string>;
261
+ Tags?: Record<string, string> | undefined;
262
262
  }
263
263
  /**
264
264
  * @public
@@ -268,37 +268,37 @@ export interface CreateDiscovererResponse {
268
268
  * <p>The description of the discoverer.</p>
269
269
  * @public
270
270
  */
271
- Description?: string;
271
+ Description?: string | undefined;
272
272
  /**
273
273
  * <p>The ARN of the discoverer.</p>
274
274
  * @public
275
275
  */
276
- DiscovererArn?: string;
276
+ DiscovererArn?: string | undefined;
277
277
  /**
278
278
  * <p>The ID of the discoverer.</p>
279
279
  * @public
280
280
  */
281
- DiscovererId?: string;
281
+ DiscovererId?: string | undefined;
282
282
  /**
283
283
  * <p>The ARN of the event bus.</p>
284
284
  * @public
285
285
  */
286
- SourceArn?: string;
286
+ SourceArn?: string | undefined;
287
287
  /**
288
288
  * <p>The state of the discoverer.</p>
289
289
  * @public
290
290
  */
291
- State?: DiscovererState;
291
+ State?: DiscovererState | undefined;
292
292
  /**
293
293
  * <p>The Status if the discoverer will discover schemas from events sent from another account.</p>
294
294
  * @public
295
295
  */
296
- CrossAccount?: boolean;
296
+ CrossAccount?: boolean | undefined;
297
297
  /**
298
298
  * <p>Tags associated with the resource.</p>
299
299
  * @public
300
300
  */
301
- Tags?: Record<string, string>;
301
+ Tags?: Record<string, string> | undefined;
302
302
  }
303
303
  /**
304
304
  * @public
@@ -392,7 +392,7 @@ export interface CreateRegistryRequest {
392
392
  * <p>A description of the registry to be created.</p>
393
393
  * @public
394
394
  */
395
- Description?: string;
395
+ Description?: string | undefined;
396
396
  /**
397
397
  * <p>The name of the registry.</p>
398
398
  * @public
@@ -402,7 +402,7 @@ export interface CreateRegistryRequest {
402
402
  * <p>Tags to associate with the registry.</p>
403
403
  * @public
404
404
  */
405
- Tags?: Record<string, string>;
405
+ Tags?: Record<string, string> | undefined;
406
406
  }
407
407
  /**
408
408
  * @public
@@ -412,22 +412,22 @@ export interface CreateRegistryResponse {
412
412
  * <p>The description of the registry.</p>
413
413
  * @public
414
414
  */
415
- Description?: string;
415
+ Description?: string | undefined;
416
416
  /**
417
417
  * <p>The ARN of the registry.</p>
418
418
  * @public
419
419
  */
420
- RegistryArn?: string;
420
+ RegistryArn?: string | undefined;
421
421
  /**
422
422
  * <p>The name of the registry.</p>
423
423
  * @public
424
424
  */
425
- RegistryName?: string;
425
+ RegistryName?: string | undefined;
426
426
  /**
427
427
  * <p>Tags associated with the registry.</p>
428
428
  * @public
429
429
  */
430
- Tags?: Record<string, string>;
430
+ Tags?: Record<string, string> | undefined;
431
431
  }
432
432
  /**
433
433
  * @public
@@ -442,7 +442,7 @@ export interface CreateSchemaRequest {
442
442
  * <p>A description of the schema.</p>
443
443
  * @public
444
444
  */
445
- Description?: string;
445
+ Description?: string | undefined;
446
446
  /**
447
447
  * <p>The name of the registry.</p>
448
448
  * @public
@@ -457,7 +457,7 @@ export interface CreateSchemaRequest {
457
457
  * <p>Tags associated with the schema.</p>
458
458
  * @public
459
459
  */
460
- Tags?: Record<string, string>;
460
+ Tags?: Record<string, string> | undefined;
461
461
  /**
462
462
  * <p>The type of schema.</p>
463
463
  * @public
@@ -472,42 +472,42 @@ export interface CreateSchemaResponse {
472
472
  * <p>The description of the schema.</p>
473
473
  * @public
474
474
  */
475
- Description?: string;
475
+ Description?: string | undefined;
476
476
  /**
477
477
  * <p>The date and time that schema was modified.</p>
478
478
  * @public
479
479
  */
480
- LastModified?: Date;
480
+ LastModified?: Date | undefined;
481
481
  /**
482
482
  * <p>The ARN of the schema.</p>
483
483
  * @public
484
484
  */
485
- SchemaArn?: string;
485
+ SchemaArn?: string | undefined;
486
486
  /**
487
487
  * <p>The name of the schema.</p>
488
488
  * @public
489
489
  */
490
- SchemaName?: string;
490
+ SchemaName?: string | undefined;
491
491
  /**
492
492
  * <p>The version number of the schema</p>
493
493
  * @public
494
494
  */
495
- SchemaVersion?: string;
495
+ SchemaVersion?: string | undefined;
496
496
  /**
497
497
  * <p>Key-value pairs associated with a resource.</p>
498
498
  * @public
499
499
  */
500
- Tags?: Record<string, string>;
500
+ Tags?: Record<string, string> | undefined;
501
501
  /**
502
502
  * <p>The type of the schema.</p>
503
503
  * @public
504
504
  */
505
- Type?: string;
505
+ Type?: string | undefined;
506
506
  /**
507
507
  * <p>The date the schema version was created.</p>
508
508
  * @public
509
509
  */
510
- VersionCreatedDate?: Date;
510
+ VersionCreatedDate?: Date | undefined;
511
511
  }
512
512
  /**
513
513
  * @public
@@ -558,7 +558,7 @@ export interface DeleteResourcePolicyRequest {
558
558
  * <p>The name of the registry.</p>
559
559
  * @public
560
560
  */
561
- RegistryName?: string;
561
+ RegistryName?: string | undefined;
562
562
  }
563
563
  /**
564
564
  * @public
@@ -618,7 +618,7 @@ export interface DescribeCodeBindingRequest {
618
618
  * <p>Specifying this limits the results to only this schema version.</p>
619
619
  * @public
620
620
  */
621
- SchemaVersion?: string;
621
+ SchemaVersion?: string | undefined;
622
622
  }
623
623
  /**
624
624
  * @public
@@ -628,22 +628,22 @@ export interface DescribeCodeBindingResponse {
628
628
  * <p>The time and date that the code binding was created.</p>
629
629
  * @public
630
630
  */
631
- CreationDate?: Date;
631
+ CreationDate?: Date | undefined;
632
632
  /**
633
633
  * <p>The date and time that code bindings were modified.</p>
634
634
  * @public
635
635
  */
636
- LastModified?: Date;
636
+ LastModified?: Date | undefined;
637
637
  /**
638
638
  * <p>The version number of the schema.</p>
639
639
  * @public
640
640
  */
641
- SchemaVersion?: string;
641
+ SchemaVersion?: string | undefined;
642
642
  /**
643
643
  * <p>The current status of code binding generation.</p>
644
644
  * @public
645
645
  */
646
- Status?: CodeGenerationStatus;
646
+ Status?: CodeGenerationStatus | undefined;
647
647
  }
648
648
  /**
649
649
  * @public
@@ -684,37 +684,37 @@ export interface DescribeDiscovererResponse {
684
684
  * <p>The description of the discoverer.</p>
685
685
  * @public
686
686
  */
687
- Description?: string;
687
+ Description?: string | undefined;
688
688
  /**
689
689
  * <p>The ARN of the discoverer.</p>
690
690
  * @public
691
691
  */
692
- DiscovererArn?: string;
692
+ DiscovererArn?: string | undefined;
693
693
  /**
694
694
  * <p>The ID of the discoverer.</p>
695
695
  * @public
696
696
  */
697
- DiscovererId?: string;
697
+ DiscovererId?: string | undefined;
698
698
  /**
699
699
  * <p>The ARN of the event bus.</p>
700
700
  * @public
701
701
  */
702
- SourceArn?: string;
702
+ SourceArn?: string | undefined;
703
703
  /**
704
704
  * <p>The state of the discoverer.</p>
705
705
  * @public
706
706
  */
707
- State?: DiscovererState;
707
+ State?: DiscovererState | undefined;
708
708
  /**
709
709
  * <p>The Status if the discoverer will discover schemas from events sent from another account.</p>
710
710
  * @public
711
711
  */
712
- CrossAccount?: boolean;
712
+ CrossAccount?: boolean | undefined;
713
713
  /**
714
714
  * <p>Tags associated with the resource.</p>
715
715
  * @public
716
716
  */
717
- Tags?: Record<string, string>;
717
+ Tags?: Record<string, string> | undefined;
718
718
  }
719
719
  /**
720
720
  * @public
@@ -734,22 +734,22 @@ export interface DescribeRegistryResponse {
734
734
  * <p>The description of the registry.</p>
735
735
  * @public
736
736
  */
737
- Description?: string;
737
+ Description?: string | undefined;
738
738
  /**
739
739
  * <p>The ARN of the registry.</p>
740
740
  * @public
741
741
  */
742
- RegistryArn?: string;
742
+ RegistryArn?: string | undefined;
743
743
  /**
744
744
  * <p>The name of the registry.</p>
745
745
  * @public
746
746
  */
747
- RegistryName?: string;
747
+ RegistryName?: string | undefined;
748
748
  /**
749
749
  * <p>Tags associated with the registry.</p>
750
750
  * @public
751
751
  */
752
- Tags?: Record<string, string>;
752
+ Tags?: Record<string, string> | undefined;
753
753
  }
754
754
  /**
755
755
  * @public
@@ -769,7 +769,7 @@ export interface DescribeSchemaRequest {
769
769
  * <p>Specifying this limits the results to only this schema version.</p>
770
770
  * @public
771
771
  */
772
- SchemaVersion?: string;
772
+ SchemaVersion?: string | undefined;
773
773
  }
774
774
  /**
775
775
  * @public
@@ -779,47 +779,47 @@ export interface DescribeSchemaResponse {
779
779
  * <p>The source of the schema definition.</p>
780
780
  * @public
781
781
  */
782
- Content?: string;
782
+ Content?: string | undefined;
783
783
  /**
784
784
  * <p>The description of the schema.</p>
785
785
  * @public
786
786
  */
787
- Description?: string;
787
+ Description?: string | undefined;
788
788
  /**
789
789
  * <p>The date and time that schema was modified.</p>
790
790
  * @public
791
791
  */
792
- LastModified?: Date;
792
+ LastModified?: Date | undefined;
793
793
  /**
794
794
  * <p>The ARN of the schema.</p>
795
795
  * @public
796
796
  */
797
- SchemaArn?: string;
797
+ SchemaArn?: string | undefined;
798
798
  /**
799
799
  * <p>The name of the schema.</p>
800
800
  * @public
801
801
  */
802
- SchemaName?: string;
802
+ SchemaName?: string | undefined;
803
803
  /**
804
804
  * <p>The version number of the schema</p>
805
805
  * @public
806
806
  */
807
- SchemaVersion?: string;
807
+ SchemaVersion?: string | undefined;
808
808
  /**
809
809
  * <p>Tags associated with the resource.</p>
810
810
  * @public
811
811
  */
812
- Tags?: Record<string, string>;
812
+ Tags?: Record<string, string> | undefined;
813
813
  /**
814
814
  * <p>The type of the schema.</p>
815
815
  * @public
816
816
  */
817
- Type?: string;
817
+ Type?: string | undefined;
818
818
  /**
819
819
  * <p>The date the schema version was created.</p>
820
820
  * @public
821
821
  */
822
- VersionCreatedDate?: Date;
822
+ VersionCreatedDate?: Date | undefined;
823
823
  }
824
824
  /**
825
825
  * @public
@@ -839,18 +839,18 @@ export interface ExportSchemaRequest {
839
839
  * <p>Specifying this limits the results to only this schema version.</p>
840
840
  * @public
841
841
  */
842
- SchemaVersion?: string;
842
+ SchemaVersion?: string | undefined;
843
843
  Type: string | undefined;
844
844
  }
845
845
  /**
846
846
  * @public
847
847
  */
848
848
  export interface ExportSchemaResponse {
849
- Content?: string;
850
- SchemaArn?: string;
851
- SchemaName?: string;
852
- SchemaVersion?: string;
853
- Type?: string;
849
+ Content?: string | undefined;
850
+ SchemaArn?: string | undefined;
851
+ SchemaName?: string | undefined;
852
+ SchemaVersion?: string | undefined;
853
+ Type?: string | undefined;
854
854
  }
855
855
  /**
856
856
  * @public
@@ -875,13 +875,13 @@ export interface GetCodeBindingSourceRequest {
875
875
  * <p>Specifying this limits the results to only this schema version.</p>
876
876
  * @public
877
877
  */
878
- SchemaVersion?: string;
878
+ SchemaVersion?: string | undefined;
879
879
  }
880
880
  /**
881
881
  * @public
882
882
  */
883
883
  export interface GetCodeBindingSourceResponse {
884
- Body?: Uint8Array;
884
+ Body?: Uint8Array | undefined;
885
885
  }
886
886
  /**
887
887
  * @public
@@ -906,7 +906,7 @@ export interface GetDiscoveredSchemaResponse {
906
906
  * <p>The source of the schema definition.</p>
907
907
  * @public
908
908
  */
909
- Content?: string;
909
+ Content?: string | undefined;
910
910
  }
911
911
  /**
912
912
  * @public
@@ -916,7 +916,7 @@ export interface GetResourcePolicyRequest {
916
916
  * <p>The name of the registry.</p>
917
917
  * @public
918
918
  */
919
- RegistryName?: string;
919
+ RegistryName?: string | undefined;
920
920
  }
921
921
  /**
922
922
  * @public
@@ -926,12 +926,12 @@ export interface GetResourcePolicyResponse {
926
926
  * <p>The resource-based policy.</p>
927
927
  * @public
928
928
  */
929
- Policy?: __LazyJsonString | string;
929
+ Policy?: __LazyJsonString | string | undefined;
930
930
  /**
931
931
  * <p>The revision ID.</p>
932
932
  * @public
933
933
  */
934
- RevisionId?: string;
934
+ RevisionId?: string | undefined;
935
935
  }
936
936
  /**
937
937
  * @public
@@ -962,18 +962,18 @@ export interface ListDiscoverersRequest {
962
962
  * <p>Specifying this limits the results to only those discoverer IDs that start with the specified prefix.</p>
963
963
  * @public
964
964
  */
965
- DiscovererIdPrefix?: string;
966
- Limit?: number;
965
+ DiscovererIdPrefix?: string | undefined;
966
+ Limit?: number | undefined;
967
967
  /**
968
968
  * <p>The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.</p>
969
969
  * @public
970
970
  */
971
- NextToken?: string;
971
+ NextToken?: string | undefined;
972
972
  /**
973
973
  * <p>Specifying this limits the results to only those ARNs that start with the specified prefix.</p>
974
974
  * @public
975
975
  */
976
- SourceArnPrefix?: string;
976
+ SourceArnPrefix?: string | undefined;
977
977
  }
978
978
  /**
979
979
  * @public
@@ -983,33 +983,33 @@ export interface ListDiscoverersResponse {
983
983
  * <p>An array of DiscovererSummary information.</p>
984
984
  * @public
985
985
  */
986
- Discoverers?: DiscovererSummary[];
986
+ Discoverers?: DiscovererSummary[] | undefined;
987
987
  /**
988
988
  * <p>The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.</p>
989
989
  * @public
990
990
  */
991
- NextToken?: string;
991
+ NextToken?: string | undefined;
992
992
  }
993
993
  /**
994
994
  * @public
995
995
  */
996
996
  export interface ListRegistriesRequest {
997
- Limit?: number;
997
+ Limit?: number | undefined;
998
998
  /**
999
999
  * <p>The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.</p>
1000
1000
  * @public
1001
1001
  */
1002
- NextToken?: string;
1002
+ NextToken?: string | undefined;
1003
1003
  /**
1004
1004
  * <p>Specifying this limits the results to only those registry names that start with the specified prefix.</p>
1005
1005
  * @public
1006
1006
  */
1007
- RegistryNamePrefix?: string;
1007
+ RegistryNamePrefix?: string | undefined;
1008
1008
  /**
1009
1009
  * <p>Can be set to Local or AWS to limit responses to your custom registries, or the ones provided by AWS.</p>
1010
1010
  * @public
1011
1011
  */
1012
- Scope?: string;
1012
+ Scope?: string | undefined;
1013
1013
  }
1014
1014
  /**
1015
1015
  * @public
@@ -1019,23 +1019,23 @@ export interface ListRegistriesResponse {
1019
1019
  * <p>The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.</p>
1020
1020
  * @public
1021
1021
  */
1022
- NextToken?: string;
1022
+ NextToken?: string | undefined;
1023
1023
  /**
1024
1024
  * <p>An array of registry summaries.</p>
1025
1025
  * @public
1026
1026
  */
1027
- Registries?: RegistrySummary[];
1027
+ Registries?: RegistrySummary[] | undefined;
1028
1028
  }
1029
1029
  /**
1030
1030
  * @public
1031
1031
  */
1032
1032
  export interface ListSchemasRequest {
1033
- Limit?: number;
1033
+ Limit?: number | undefined;
1034
1034
  /**
1035
1035
  * <p>The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.</p>
1036
1036
  * @public
1037
1037
  */
1038
- NextToken?: string;
1038
+ NextToken?: string | undefined;
1039
1039
  /**
1040
1040
  * <p>The name of the registry.</p>
1041
1041
  * @public
@@ -1045,7 +1045,7 @@ export interface ListSchemasRequest {
1045
1045
  * <p>Specifying this limits the results to only those schema names that start with the specified prefix.</p>
1046
1046
  * @public
1047
1047
  */
1048
- SchemaNamePrefix?: string;
1048
+ SchemaNamePrefix?: string | undefined;
1049
1049
  }
1050
1050
  /**
1051
1051
  * @public
@@ -1055,23 +1055,23 @@ export interface ListSchemasResponse {
1055
1055
  * <p>The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.</p>
1056
1056
  * @public
1057
1057
  */
1058
- NextToken?: string;
1058
+ NextToken?: string | undefined;
1059
1059
  /**
1060
1060
  * <p>An array of schema summaries.</p>
1061
1061
  * @public
1062
1062
  */
1063
- Schemas?: SchemaSummary[];
1063
+ Schemas?: SchemaSummary[] | undefined;
1064
1064
  }
1065
1065
  /**
1066
1066
  * @public
1067
1067
  */
1068
1068
  export interface ListSchemaVersionsRequest {
1069
- Limit?: number;
1069
+ Limit?: number | undefined;
1070
1070
  /**
1071
1071
  * <p>The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.</p>
1072
1072
  * @public
1073
1073
  */
1074
- NextToken?: string;
1074
+ NextToken?: string | undefined;
1075
1075
  /**
1076
1076
  * <p>The name of the registry.</p>
1077
1077
  * @public
@@ -1091,12 +1091,12 @@ export interface ListSchemaVersionsResponse {
1091
1091
  * <p>The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.</p>
1092
1092
  * @public
1093
1093
  */
1094
- NextToken?: string;
1094
+ NextToken?: string | undefined;
1095
1095
  /**
1096
1096
  * <p>An array of schema version summaries.</p>
1097
1097
  * @public
1098
1098
  */
1099
- SchemaVersions?: SchemaVersionSummary[];
1099
+ SchemaVersions?: SchemaVersionSummary[] | undefined;
1100
1100
  }
1101
1101
  /**
1102
1102
  * @public
@@ -1116,7 +1116,7 @@ export interface ListTagsForResourceResponse {
1116
1116
  * <p>Key-value pairs associated with a resource.</p>
1117
1117
  * @public
1118
1118
  */
1119
- Tags?: Record<string, string>;
1119
+ Tags?: Record<string, string> | undefined;
1120
1120
  }
1121
1121
  /**
1122
1122
  * @public
@@ -1162,7 +1162,7 @@ export interface PutCodeBindingRequest {
1162
1162
  * <p>Specifying this limits the results to only this schema version.</p>
1163
1163
  * @public
1164
1164
  */
1165
- SchemaVersion?: string;
1165
+ SchemaVersion?: string | undefined;
1166
1166
  }
1167
1167
  /**
1168
1168
  * @public
@@ -1172,22 +1172,22 @@ export interface PutCodeBindingResponse {
1172
1172
  * <p>The time and date that the code binding was created.</p>
1173
1173
  * @public
1174
1174
  */
1175
- CreationDate?: Date;
1175
+ CreationDate?: Date | undefined;
1176
1176
  /**
1177
1177
  * <p>The date and time that code bindings were modified.</p>
1178
1178
  * @public
1179
1179
  */
1180
- LastModified?: Date;
1180
+ LastModified?: Date | undefined;
1181
1181
  /**
1182
1182
  * <p>The version number of the schema.</p>
1183
1183
  * @public
1184
1184
  */
1185
- SchemaVersion?: string;
1185
+ SchemaVersion?: string | undefined;
1186
1186
  /**
1187
1187
  * <p>The current status of code binding generation.</p>
1188
1188
  * @public
1189
1189
  */
1190
- Status?: CodeGenerationStatus;
1190
+ Status?: CodeGenerationStatus | undefined;
1191
1191
  }
1192
1192
  /**
1193
1193
  * <p>The name of the policy.</p>
@@ -1203,12 +1203,12 @@ export interface PutResourcePolicyRequest {
1203
1203
  * <p>The name of the registry.</p>
1204
1204
  * @public
1205
1205
  */
1206
- RegistryName?: string;
1206
+ RegistryName?: string | undefined;
1207
1207
  /**
1208
1208
  * <p>The revision ID of the policy.</p>
1209
1209
  * @public
1210
1210
  */
1211
- RevisionId?: string;
1211
+ RevisionId?: string | undefined;
1212
1212
  }
1213
1213
  /**
1214
1214
  * @public
@@ -1218,12 +1218,12 @@ export interface PutResourcePolicyResponse {
1218
1218
  * <p>The resource-based policy.</p>
1219
1219
  * @public
1220
1220
  */
1221
- Policy?: __LazyJsonString | string;
1221
+ Policy?: __LazyJsonString | string | undefined;
1222
1222
  /**
1223
1223
  * <p>The revision ID of the policy.</p>
1224
1224
  * @public
1225
1225
  */
1226
- RevisionId?: string;
1226
+ RevisionId?: string | undefined;
1227
1227
  }
1228
1228
  /**
1229
1229
  * @public
@@ -1234,12 +1234,12 @@ export interface SearchSchemasRequest {
1234
1234
  * @public
1235
1235
  */
1236
1236
  Keywords: string | undefined;
1237
- Limit?: number;
1237
+ Limit?: number | undefined;
1238
1238
  /**
1239
1239
  * <p>The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.</p>
1240
1240
  * @public
1241
1241
  */
1242
- NextToken?: string;
1242
+ NextToken?: string | undefined;
1243
1243
  /**
1244
1244
  * <p>The name of the registry.</p>
1245
1245
  * @public
@@ -1254,12 +1254,12 @@ export interface SearchSchemasResponse {
1254
1254
  * <p>The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.</p>
1255
1255
  * @public
1256
1256
  */
1257
- NextToken?: string;
1257
+ NextToken?: string | undefined;
1258
1258
  /**
1259
1259
  * <p>An array of SearchSchemaSummary information.</p>
1260
1260
  * @public
1261
1261
  */
1262
- Schemas?: SearchSchemaSummary[];
1262
+ Schemas?: SearchSchemaSummary[] | undefined;
1263
1263
  }
1264
1264
  /**
1265
1265
  * @public
@@ -1279,12 +1279,12 @@ export interface StartDiscovererResponse {
1279
1279
  * <p>The ID of the discoverer.</p>
1280
1280
  * @public
1281
1281
  */
1282
- DiscovererId?: string;
1282
+ DiscovererId?: string | undefined;
1283
1283
  /**
1284
1284
  * <p>The state of the discoverer.</p>
1285
1285
  * @public
1286
1286
  */
1287
- State?: DiscovererState;
1287
+ State?: DiscovererState | undefined;
1288
1288
  }
1289
1289
  /**
1290
1290
  * @public
@@ -1304,12 +1304,12 @@ export interface StopDiscovererResponse {
1304
1304
  * <p>The ID of the discoverer.</p>
1305
1305
  * @public
1306
1306
  */
1307
- DiscovererId?: string;
1307
+ DiscovererId?: string | undefined;
1308
1308
  /**
1309
1309
  * <p>The state of the discoverer.</p>
1310
1310
  * @public
1311
1311
  */
1312
- State?: DiscovererState;
1312
+ State?: DiscovererState | undefined;
1313
1313
  }
1314
1314
  /**
1315
1315
  * <p></p>
@@ -1350,7 +1350,7 @@ export interface UpdateDiscovererRequest {
1350
1350
  * <p>The description of the discoverer to update.</p>
1351
1351
  * @public
1352
1352
  */
1353
- Description?: string;
1353
+ Description?: string | undefined;
1354
1354
  /**
1355
1355
  * <p>The ID of the discoverer.</p>
1356
1356
  * @public
@@ -1360,7 +1360,7 @@ export interface UpdateDiscovererRequest {
1360
1360
  * <p>Support discovery of schemas in events sent to the bus from another account. (default: true)</p>
1361
1361
  * @public
1362
1362
  */
1363
- CrossAccount?: boolean;
1363
+ CrossAccount?: boolean | undefined;
1364
1364
  }
1365
1365
  /**
1366
1366
  * @public
@@ -1370,37 +1370,37 @@ export interface UpdateDiscovererResponse {
1370
1370
  * <p>The description of the discoverer.</p>
1371
1371
  * @public
1372
1372
  */
1373
- Description?: string;
1373
+ Description?: string | undefined;
1374
1374
  /**
1375
1375
  * <p>The ARN of the discoverer.</p>
1376
1376
  * @public
1377
1377
  */
1378
- DiscovererArn?: string;
1378
+ DiscovererArn?: string | undefined;
1379
1379
  /**
1380
1380
  * <p>The ID of the discoverer.</p>
1381
1381
  * @public
1382
1382
  */
1383
- DiscovererId?: string;
1383
+ DiscovererId?: string | undefined;
1384
1384
  /**
1385
1385
  * <p>The ARN of the event bus.</p>
1386
1386
  * @public
1387
1387
  */
1388
- SourceArn?: string;
1388
+ SourceArn?: string | undefined;
1389
1389
  /**
1390
1390
  * <p>The state of the discoverer.</p>
1391
1391
  * @public
1392
1392
  */
1393
- State?: DiscovererState;
1393
+ State?: DiscovererState | undefined;
1394
1394
  /**
1395
1395
  * <p>The Status if the discoverer will discover schemas from events sent from another account.</p>
1396
1396
  * @public
1397
1397
  */
1398
- CrossAccount?: boolean;
1398
+ CrossAccount?: boolean | undefined;
1399
1399
  /**
1400
1400
  * <p>Tags associated with the resource.</p>
1401
1401
  * @public
1402
1402
  */
1403
- Tags?: Record<string, string>;
1403
+ Tags?: Record<string, string> | undefined;
1404
1404
  }
1405
1405
  /**
1406
1406
  * <p>Updates the registry.</p>
@@ -1411,7 +1411,7 @@ export interface UpdateRegistryRequest {
1411
1411
  * <p>The description of the registry to update.</p>
1412
1412
  * @public
1413
1413
  */
1414
- Description?: string;
1414
+ Description?: string | undefined;
1415
1415
  /**
1416
1416
  * <p>The name of the registry.</p>
1417
1417
  * @public
@@ -1426,22 +1426,22 @@ export interface UpdateRegistryResponse {
1426
1426
  * <p>The description of the registry.</p>
1427
1427
  * @public
1428
1428
  */
1429
- Description?: string;
1429
+ Description?: string | undefined;
1430
1430
  /**
1431
1431
  * <p>The ARN of the registry.</p>
1432
1432
  * @public
1433
1433
  */
1434
- RegistryArn?: string;
1434
+ RegistryArn?: string | undefined;
1435
1435
  /**
1436
1436
  * <p>The name of the registry.</p>
1437
1437
  * @public
1438
1438
  */
1439
- RegistryName?: string;
1439
+ RegistryName?: string | undefined;
1440
1440
  /**
1441
1441
  * <p>Tags associated with the registry.</p>
1442
1442
  * @public
1443
1443
  */
1444
- Tags?: Record<string, string>;
1444
+ Tags?: Record<string, string> | undefined;
1445
1445
  }
1446
1446
  /**
1447
1447
  * @public
@@ -1451,17 +1451,17 @@ export interface UpdateSchemaRequest {
1451
1451
  * <p>The ID of the client token.</p>
1452
1452
  * @public
1453
1453
  */
1454
- ClientTokenId?: string;
1454
+ ClientTokenId?: string | undefined;
1455
1455
  /**
1456
1456
  * <p>The source of the schema definition.</p>
1457
1457
  * @public
1458
1458
  */
1459
- Content?: string;
1459
+ Content?: string | undefined;
1460
1460
  /**
1461
1461
  * <p>The description of the schema.</p>
1462
1462
  * @public
1463
1463
  */
1464
- Description?: string;
1464
+ Description?: string | undefined;
1465
1465
  /**
1466
1466
  * <p>The name of the registry.</p>
1467
1467
  * @public
@@ -1476,7 +1476,7 @@ export interface UpdateSchemaRequest {
1476
1476
  * <p>The schema type for the events schema.</p>
1477
1477
  * @public
1478
1478
  */
1479
- Type?: Type;
1479
+ Type?: Type | undefined;
1480
1480
  }
1481
1481
  /**
1482
1482
  * @public
@@ -1486,40 +1486,40 @@ export interface UpdateSchemaResponse {
1486
1486
  * <p>The description of the schema.</p>
1487
1487
  * @public
1488
1488
  */
1489
- Description?: string;
1489
+ Description?: string | undefined;
1490
1490
  /**
1491
1491
  * <p>The date and time that schema was modified.</p>
1492
1492
  * @public
1493
1493
  */
1494
- LastModified?: Date;
1494
+ LastModified?: Date | undefined;
1495
1495
  /**
1496
1496
  * <p>The ARN of the schema.</p>
1497
1497
  * @public
1498
1498
  */
1499
- SchemaArn?: string;
1499
+ SchemaArn?: string | undefined;
1500
1500
  /**
1501
1501
  * <p>The name of the schema.</p>
1502
1502
  * @public
1503
1503
  */
1504
- SchemaName?: string;
1504
+ SchemaName?: string | undefined;
1505
1505
  /**
1506
1506
  * <p>The version number of the schema</p>
1507
1507
  * @public
1508
1508
  */
1509
- SchemaVersion?: string;
1509
+ SchemaVersion?: string | undefined;
1510
1510
  /**
1511
1511
  * <p>Key-value pairs associated with a resource.</p>
1512
1512
  * @public
1513
1513
  */
1514
- Tags?: Record<string, string>;
1514
+ Tags?: Record<string, string> | undefined;
1515
1515
  /**
1516
1516
  * <p>The type of the schema.</p>
1517
1517
  * @public
1518
1518
  */
1519
- Type?: string;
1519
+ Type?: string | undefined;
1520
1520
  /**
1521
1521
  * <p>The date the schema version was created.</p>
1522
1522
  * @public
1523
1523
  */
1524
- VersionCreatedDate?: Date;
1524
+ VersionCreatedDate?: Date | undefined;
1525
1525
  }