@aws-sdk/client-kafka 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.
@@ -9,12 +9,12 @@ export interface ProvisionedThroughput {
9
9
  * <p>Provisioned throughput is enabled or not.</p>
10
10
  * @public
11
11
  */
12
- Enabled?: boolean;
12
+ Enabled?: boolean | undefined;
13
13
  /**
14
14
  * <p>Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.</p>
15
15
  * @public
16
16
  */
17
- VolumeThroughput?: number;
17
+ VolumeThroughput?: number | undefined;
18
18
  }
19
19
  /**
20
20
  * <p>Specifies the EBS volume upgrade information. The broker identifier must be set to the keyword ALL. This means the changes apply to all the brokers in the cluster.</p>
@@ -30,12 +30,12 @@ export interface BrokerEBSVolumeInfo {
30
30
  * <p>EBS volume provisioned throughput information.</p>
31
31
  * @public
32
32
  */
33
- ProvisionedThroughput?: ProvisionedThroughput;
33
+ ProvisionedThroughput?: ProvisionedThroughput | undefined;
34
34
  /**
35
35
  * <p>Size of the EBS volume to update.</p>
36
36
  * @public
37
37
  */
38
- VolumeSizeGB?: number;
38
+ VolumeSizeGB?: number | undefined;
39
39
  }
40
40
  /**
41
41
  * @public
@@ -64,17 +64,17 @@ export interface ClientVpcConnection {
64
64
  * <p>Information about the auth scheme of Vpc Connection.</p>
65
65
  * @public
66
66
  */
67
- Authentication?: string;
67
+ Authentication?: string | undefined;
68
68
  /**
69
69
  * <p>Creation time of the Vpc Connection.</p>
70
70
  * @public
71
71
  */
72
- CreationTime?: Date;
72
+ CreationTime?: Date | undefined;
73
73
  /**
74
74
  * <p>State of the Vpc Connection.</p>
75
75
  * @public
76
76
  */
77
- State?: VpcConnectionState;
77
+ State?: VpcConnectionState | undefined;
78
78
  /**
79
79
  * <p>The ARN that identifies the Vpc Connection.</p>
80
80
  * @public
@@ -84,7 +84,7 @@ export interface ClientVpcConnection {
84
84
  * <p>The Owner of the Vpc Connection.</p>
85
85
  * @public
86
86
  */
87
- Owner?: string;
87
+ Owner?: string | undefined;
88
88
  }
89
89
  /**
90
90
  * @public
@@ -118,7 +118,7 @@ export interface PublicAccess {
118
118
  * <p>The value DISABLED indicates that public access is turned off. SERVICE_PROVIDED_EIPS indicates that public access is turned on.</p>
119
119
  * @public
120
120
  */
121
- Type?: string;
121
+ Type?: string | undefined;
122
122
  }
123
123
  /**
124
124
  * <p>Details for IAM access control for VPC connectivity.</p>
@@ -129,7 +129,7 @@ export interface VpcConnectivityIam {
129
129
  * <p>SASL/IAM authentication is on or off for VPC connectivity.</p>
130
130
  * @public
131
131
  */
132
- Enabled?: boolean;
132
+ Enabled?: boolean | undefined;
133
133
  }
134
134
  /**
135
135
  * <p>Details for SASL/SCRAM client authentication for VPC connectivity.</p>
@@ -140,7 +140,7 @@ export interface VpcConnectivityScram {
140
140
  * <p>SASL/SCRAM authentication is on or off for VPC connectivity.</p>
141
141
  * @public
142
142
  */
143
- Enabled?: boolean;
143
+ Enabled?: boolean | undefined;
144
144
  }
145
145
  /**
146
146
  * <p>Details for SASL client authentication for VPC connectivity.</p>
@@ -151,12 +151,12 @@ export interface VpcConnectivitySasl {
151
151
  * <p>Details for SASL/SCRAM client authentication for VPC connectivity.</p>
152
152
  * @public
153
153
  */
154
- Scram?: VpcConnectivityScram;
154
+ Scram?: VpcConnectivityScram | undefined;
155
155
  /**
156
156
  * <p>Details for SASL/IAM client authentication for VPC connectivity.</p>
157
157
  * @public
158
158
  */
159
- Iam?: VpcConnectivityIam;
159
+ Iam?: VpcConnectivityIam | undefined;
160
160
  }
161
161
  /**
162
162
  * <p>Details for TLS client authentication for VPC connectivity.</p>
@@ -167,7 +167,7 @@ export interface VpcConnectivityTls {
167
167
  * <p>TLS authentication is on or off for VPC connectivity.</p>
168
168
  * @public
169
169
  */
170
- Enabled?: boolean;
170
+ Enabled?: boolean | undefined;
171
171
  }
172
172
  /**
173
173
  * <p>Includes all client authentication information for VPC connectivity.</p>
@@ -178,12 +178,12 @@ export interface VpcConnectivityClientAuthentication {
178
178
  * <p>SASL authentication type details for VPC connectivity.</p>
179
179
  * @public
180
180
  */
181
- Sasl?: VpcConnectivitySasl;
181
+ Sasl?: VpcConnectivitySasl | undefined;
182
182
  /**
183
183
  * <p>TLS authentication type details for VPC connectivity.</p>
184
184
  * @public
185
185
  */
186
- Tls?: VpcConnectivityTls;
186
+ Tls?: VpcConnectivityTls | undefined;
187
187
  }
188
188
  /**
189
189
  * VPC connectivity access control for brokers.
@@ -194,7 +194,7 @@ export interface VpcConnectivity {
194
194
  * <p>Includes all client authentication information for VPC connectivity.</p>
195
195
  * @public
196
196
  */
197
- ClientAuthentication?: VpcConnectivityClientAuthentication;
197
+ ClientAuthentication?: VpcConnectivityClientAuthentication | undefined;
198
198
  }
199
199
  /**
200
200
  * <p>Information about the broker access configuration.</p>
@@ -205,12 +205,12 @@ export interface ConnectivityInfo {
205
205
  * <p>Public access control for brokers.</p>
206
206
  * @public
207
207
  */
208
- PublicAccess?: PublicAccess;
208
+ PublicAccess?: PublicAccess | undefined;
209
209
  /**
210
210
  * <p>VPC connectivity access control for brokers.</p>
211
211
  * @public
212
212
  */
213
- VpcConnectivity?: VpcConnectivity;
213
+ VpcConnectivity?: VpcConnectivity | undefined;
214
214
  }
215
215
  /**
216
216
  * <p>Contains information about the EBS storage volumes attached to Apache Kafka broker nodes.</p>
@@ -221,12 +221,12 @@ export interface EBSStorageInfo {
221
221
  * <p>EBS volume provisioned throughput information.</p>
222
222
  * @public
223
223
  */
224
- ProvisionedThroughput?: ProvisionedThroughput;
224
+ ProvisionedThroughput?: ProvisionedThroughput | undefined;
225
225
  /**
226
226
  * <p>The size in GiB of the EBS volume for the data drive on each broker node.</p>
227
227
  * @public
228
228
  */
229
- VolumeSize?: number;
229
+ VolumeSize?: number | undefined;
230
230
  }
231
231
  /**
232
232
  * <p>Contains information about storage volumes attached to MSK broker nodes.</p>
@@ -237,7 +237,7 @@ export interface StorageInfo {
237
237
  * <p>EBS volume information.</p>
238
238
  * @public
239
239
  */
240
- EbsStorageInfo?: EBSStorageInfo;
240
+ EbsStorageInfo?: EBSStorageInfo | undefined;
241
241
  }
242
242
  /**
243
243
  * <p>Describes the setup to be used for Apache Kafka broker nodes in the cluster.</p>
@@ -249,7 +249,7 @@ export interface BrokerNodeGroupInfo {
249
249
  * <p>Amazon MSK distributes the broker nodes evenly across the Availability Zones that correspond to the subnets you provide when you create the cluster.</p>
250
250
  * @public
251
251
  */
252
- BrokerAZDistribution?: BrokerAZDistribution;
252
+ BrokerAZDistribution?: BrokerAZDistribution | undefined;
253
253
  /**
254
254
  * <p>The list of subnets to connect to in the client virtual private cloud (VPC). AWS creates elastic network interfaces inside these subnets. Client applications use elastic network interfaces to produce and consume data. Client subnets can't occupy the Availability Zone with ID use use1-az3.</p>
255
255
  * @public
@@ -265,22 +265,22 @@ export interface BrokerNodeGroupInfo {
265
265
  * <p>The AWS security groups to associate with the elastic network interfaces in order to specify who can connect to and communicate with the Amazon MSK cluster. If you don't specify a security group, Amazon MSK uses the default security group associated with the VPC.</p>
266
266
  * @public
267
267
  */
268
- SecurityGroups?: string[];
268
+ SecurityGroups?: string[] | undefined;
269
269
  /**
270
270
  * <p>Contains information about storage volumes attached to MSK broker nodes.</p>
271
271
  * @public
272
272
  */
273
- StorageInfo?: StorageInfo;
273
+ StorageInfo?: StorageInfo | undefined;
274
274
  /**
275
275
  * <p>Information about the broker access configuration.</p>
276
276
  * @public
277
277
  */
278
- ConnectivityInfo?: ConnectivityInfo;
278
+ ConnectivityInfo?: ConnectivityInfo | undefined;
279
279
  /**
280
280
  * <p>The list of zoneIds for the cluster in the virtual private cloud (VPC).</p>
281
281
  * @public
282
282
  */
283
- ZoneIds?: string[];
283
+ ZoneIds?: string[] | undefined;
284
284
  }
285
285
  /**
286
286
  * <p>Details for IAM access control.</p>
@@ -291,7 +291,7 @@ export interface Iam {
291
291
  * <p>Indicates whether IAM access control is enabled.</p>
292
292
  * @public
293
293
  */
294
- Enabled?: boolean;
294
+ Enabled?: boolean | undefined;
295
295
  }
296
296
  /**
297
297
  * <p>Details for SASL/SCRAM client authentication.</p>
@@ -302,7 +302,7 @@ export interface Scram {
302
302
  * <p>SASL/SCRAM authentication is enabled or not.</p>
303
303
  * @public
304
304
  */
305
- Enabled?: boolean;
305
+ Enabled?: boolean | undefined;
306
306
  }
307
307
  /**
308
308
  * <p>Details for client authentication using SASL.</p>
@@ -313,12 +313,12 @@ export interface Sasl {
313
313
  * <p>Details for SASL/SCRAM client authentication.</p>
314
314
  * @public
315
315
  */
316
- Scram?: Scram;
316
+ Scram?: Scram | undefined;
317
317
  /**
318
318
  * <p>Indicates whether IAM access control is enabled.</p>
319
319
  * @public
320
320
  */
321
- Iam?: Iam;
321
+ Iam?: Iam | undefined;
322
322
  }
323
323
  /**
324
324
  * <p>Details for client authentication using TLS.</p>
@@ -329,12 +329,12 @@ export interface Tls {
329
329
  * <p>List of ACM Certificate Authority ARNs.</p>
330
330
  * @public
331
331
  */
332
- CertificateAuthorityArnList?: string[];
332
+ CertificateAuthorityArnList?: string[] | undefined;
333
333
  /**
334
334
  * <p>Specifies whether you want to turn on or turn off TLS authentication.</p>
335
335
  * @public
336
336
  */
337
- Enabled?: boolean;
337
+ Enabled?: boolean | undefined;
338
338
  }
339
339
  /**
340
340
  * @public
@@ -344,7 +344,7 @@ export interface Unauthenticated {
344
344
  * <p>Specifies whether you want to turn on or turn off unauthenticated traffic to your cluster.</p>
345
345
  * @public
346
346
  */
347
- Enabled?: boolean;
347
+ Enabled?: boolean | undefined;
348
348
  }
349
349
  /**
350
350
  * <p>Includes all client authentication information.</p>
@@ -355,17 +355,17 @@ export interface ClientAuthentication {
355
355
  * <p>Details for ClientAuthentication using SASL.</p>
356
356
  * @public
357
357
  */
358
- Sasl?: Sasl;
358
+ Sasl?: Sasl | undefined;
359
359
  /**
360
360
  * <p>Details for ClientAuthentication using TLS.</p>
361
361
  * @public
362
362
  */
363
- Tls?: Tls;
363
+ Tls?: Tls | undefined;
364
364
  /**
365
365
  * <p>Contains information about unauthenticated traffic to the cluster.</p>
366
366
  * @public
367
367
  */
368
- Unauthenticated?: Unauthenticated;
368
+ Unauthenticated?: Unauthenticated | undefined;
369
369
  }
370
370
  /**
371
371
  * <p>Information about the current software installed on the cluster.</p>
@@ -376,17 +376,17 @@ export interface BrokerSoftwareInfo {
376
376
  * <p>The Amazon Resource Name (ARN) of the configuration used for the cluster. This field isn't visible in this preview release.</p>
377
377
  * @public
378
378
  */
379
- ConfigurationArn?: string;
379
+ ConfigurationArn?: string | undefined;
380
380
  /**
381
381
  * <p>The revision of the configuration to use. This field isn't visible in this preview release.</p>
382
382
  * @public
383
383
  */
384
- ConfigurationRevision?: number;
384
+ ConfigurationRevision?: number | undefined;
385
385
  /**
386
386
  * <p>The version of Apache Kafka.</p>
387
387
  * @public
388
388
  */
389
- KafkaVersion?: string;
389
+ KafkaVersion?: string | undefined;
390
390
  }
391
391
  /**
392
392
  * @public
@@ -441,13 +441,13 @@ export interface EncryptionInTransit {
441
441
  * <p>The default value is TLS_PLAINTEXT.</p>
442
442
  * @public
443
443
  */
444
- ClientBroker?: ClientBroker;
444
+ ClientBroker?: ClientBroker | undefined;
445
445
  /**
446
446
  * <p>When set to true, it indicates that data communication among the broker nodes of the cluster is encrypted. When set to false, the communication happens in plaintext.</p>
447
447
  * <p>The default value is true.</p>
448
448
  * @public
449
449
  */
450
- InCluster?: boolean;
450
+ InCluster?: boolean | undefined;
451
451
  }
452
452
  /**
453
453
  * <p>Includes encryption-related information, such as the AWS KMS key used for encrypting data at rest and whether you want MSK to encrypt your data in transit.</p>
@@ -458,12 +458,12 @@ export interface EncryptionInfo {
458
458
  * <p>The data-volume encryption details.</p>
459
459
  * @public
460
460
  */
461
- EncryptionAtRest?: EncryptionAtRest;
461
+ EncryptionAtRest?: EncryptionAtRest | undefined;
462
462
  /**
463
463
  * <p>The details for encryption in transit.</p>
464
464
  * @public
465
465
  */
466
- EncryptionInTransit?: EncryptionInTransit;
466
+ EncryptionInTransit?: EncryptionInTransit | undefined;
467
467
  }
468
468
  /**
469
469
  * @public
@@ -484,30 +484,30 @@ export type EnhancedMonitoring = (typeof EnhancedMonitoring)[keyof typeof Enhanc
484
484
  */
485
485
  export interface CloudWatchLogs {
486
486
  Enabled: boolean | undefined;
487
- LogGroup?: string;
487
+ LogGroup?: string | undefined;
488
488
  }
489
489
  /**
490
490
  * @public
491
491
  */
492
492
  export interface Firehose {
493
- DeliveryStream?: string;
493
+ DeliveryStream?: string | undefined;
494
494
  Enabled: boolean | undefined;
495
495
  }
496
496
  /**
497
497
  * @public
498
498
  */
499
499
  export interface S3 {
500
- Bucket?: string;
500
+ Bucket?: string | undefined;
501
501
  Enabled: boolean | undefined;
502
- Prefix?: string;
502
+ Prefix?: string | undefined;
503
503
  }
504
504
  /**
505
505
  * @public
506
506
  */
507
507
  export interface BrokerLogs {
508
- CloudWatchLogs?: CloudWatchLogs;
509
- Firehose?: Firehose;
510
- S3?: S3;
508
+ CloudWatchLogs?: CloudWatchLogs | undefined;
509
+ Firehose?: Firehose | undefined;
510
+ S3?: S3 | undefined;
511
511
  }
512
512
  /**
513
513
  * @public
@@ -546,12 +546,12 @@ export interface PrometheusInfo {
546
546
  * <p>Indicates whether you want to turn on or turn off the JMX Exporter.</p>
547
547
  * @public
548
548
  */
549
- JmxExporter?: JmxExporterInfo;
549
+ JmxExporter?: JmxExporterInfo | undefined;
550
550
  /**
551
551
  * <p>Indicates whether you want to turn on or turn off the Node Exporter.</p>
552
552
  * @public
553
553
  */
554
- NodeExporter?: NodeExporterInfo;
554
+ NodeExporter?: NodeExporterInfo | undefined;
555
555
  }
556
556
  /**
557
557
  * <p>JMX and Node monitoring for the MSK cluster.</p>
@@ -590,32 +590,32 @@ export interface Provisioned {
590
590
  * <p>Information about the Apache Kafka version deployed on the brokers.</p>
591
591
  * @public
592
592
  */
593
- CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
593
+ CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo | undefined;
594
594
  /**
595
595
  * <p>Includes all client authentication information.</p>
596
596
  * @public
597
597
  */
598
- ClientAuthentication?: ClientAuthentication;
598
+ ClientAuthentication?: ClientAuthentication | undefined;
599
599
  /**
600
600
  * <p>Includes all encryption-related information.</p>
601
601
  * @public
602
602
  */
603
- EncryptionInfo?: EncryptionInfo;
603
+ EncryptionInfo?: EncryptionInfo | undefined;
604
604
  /**
605
605
  * <p>Specifies the level of monitoring for the MSK cluster. The possible values are DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, and PER_TOPIC_PER_PARTITION.</p>
606
606
  * @public
607
607
  */
608
- EnhancedMonitoring?: EnhancedMonitoring;
608
+ EnhancedMonitoring?: EnhancedMonitoring | undefined;
609
609
  /**
610
610
  * <p>The settings for open monitoring.</p>
611
611
  * @public
612
612
  */
613
- OpenMonitoring?: OpenMonitoringInfo;
613
+ OpenMonitoring?: OpenMonitoringInfo | undefined;
614
614
  /**
615
615
  * <p>Log delivery information for the cluster.</p>
616
616
  * @public
617
617
  */
618
- LoggingInfo?: LoggingInfo;
618
+ LoggingInfo?: LoggingInfo | undefined;
619
619
  /**
620
620
  * <p>The number of broker nodes in the cluster.</p>
621
621
  * @public
@@ -625,22 +625,22 @@ export interface Provisioned {
625
625
  * <p>The connection string to use to connect to the Apache ZooKeeper cluster.</p>
626
626
  * @public
627
627
  */
628
- ZookeeperConnectString?: string;
628
+ ZookeeperConnectString?: string | undefined;
629
629
  /**
630
630
  * <p>The connection string to use to connect to the Apache ZooKeeper cluster on a TLS port.</p>
631
631
  * @public
632
632
  */
633
- ZookeeperConnectStringTls?: string;
633
+ ZookeeperConnectStringTls?: string | undefined;
634
634
  /**
635
635
  * <p>This controls storage mode for supported storage tiers.</p>
636
636
  * @public
637
637
  */
638
- StorageMode?: StorageMode;
638
+ StorageMode?: StorageMode | undefined;
639
639
  /**
640
640
  * <p>Determines if there is an action required from the customer.</p>
641
641
  * @public
642
642
  */
643
- CustomerActionStatus?: CustomerActionStatus;
643
+ CustomerActionStatus?: CustomerActionStatus | undefined;
644
644
  }
645
645
  /**
646
646
  * <p>Details for client authentication using SASL.</p>
@@ -651,7 +651,7 @@ export interface ServerlessSasl {
651
651
  * <p>Indicates whether IAM access control is enabled.</p>
652
652
  * @public
653
653
  */
654
- Iam?: Iam;
654
+ Iam?: Iam | undefined;
655
655
  }
656
656
  /**
657
657
  * <p>Includes all client authentication information.</p>
@@ -662,7 +662,7 @@ export interface ServerlessClientAuthentication {
662
662
  * <p>Details for ClientAuthentication using SASL.</p>
663
663
  * @public
664
664
  */
665
- Sasl?: ServerlessSasl;
665
+ Sasl?: ServerlessSasl | undefined;
666
666
  }
667
667
  /**
668
668
  * <p>The configuration of the Amazon VPCs for the cluster.</p>
@@ -678,7 +678,7 @@ export interface VpcConfig {
678
678
  * <p>The IDs of the security groups associated with the cluster.</p>
679
679
  * @public
680
680
  */
681
- SecurityGroupIds?: string[];
681
+ SecurityGroupIds?: string[] | undefined;
682
682
  }
683
683
  /**
684
684
  * <p>Serverless cluster.</p>
@@ -694,7 +694,7 @@ export interface Serverless {
694
694
  * <p>Includes all client authentication information.</p>
695
695
  * @public
696
696
  */
697
- ClientAuthentication?: ServerlessClientAuthentication;
697
+ ClientAuthentication?: ServerlessClientAuthentication | undefined;
698
698
  }
699
699
  /**
700
700
  * @public
@@ -718,8 +718,8 @@ export type ClusterState = (typeof ClusterState)[keyof typeof ClusterState];
718
718
  * @public
719
719
  */
720
720
  export interface StateInfo {
721
- Code?: string;
722
- Message?: string;
721
+ Code?: string | undefined;
722
+ Message?: string | undefined;
723
723
  }
724
724
  /**
725
725
  * <p>Returns information about a cluster.</p>
@@ -730,57 +730,57 @@ export interface Cluster {
730
730
  * <p>The Amazon Resource Name (ARN) that uniquely identifies a cluster operation.</p>
731
731
  * @public
732
732
  */
733
- ActiveOperationArn?: string;
733
+ ActiveOperationArn?: string | undefined;
734
734
  /**
735
735
  * <p>Cluster Type.</p>
736
736
  * @public
737
737
  */
738
- ClusterType?: ClusterType;
738
+ ClusterType?: ClusterType | undefined;
739
739
  /**
740
740
  * <p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>
741
741
  * @public
742
742
  */
743
- ClusterArn?: string;
743
+ ClusterArn?: string | undefined;
744
744
  /**
745
745
  * <p>The name of the cluster.</p>
746
746
  * @public
747
747
  */
748
- ClusterName?: string;
748
+ ClusterName?: string | undefined;
749
749
  /**
750
750
  * <p>The time when the cluster was created.</p>
751
751
  * @public
752
752
  */
753
- CreationTime?: Date;
753
+ CreationTime?: Date | undefined;
754
754
  /**
755
755
  * <p>The current version of the MSK cluster.</p>
756
756
  * @public
757
757
  */
758
- CurrentVersion?: string;
758
+ CurrentVersion?: string | undefined;
759
759
  /**
760
760
  * <p>The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.</p>
761
761
  * @public
762
762
  */
763
- State?: ClusterState;
763
+ State?: ClusterState | undefined;
764
764
  /**
765
765
  * <p>State Info for the Amazon MSK cluster.</p>
766
766
  * @public
767
767
  */
768
- StateInfo?: StateInfo;
768
+ StateInfo?: StateInfo | undefined;
769
769
  /**
770
770
  * <p>Tags attached to the cluster.</p>
771
771
  * @public
772
772
  */
773
- Tags?: Record<string, string>;
773
+ Tags?: Record<string, string> | undefined;
774
774
  /**
775
775
  * <p>Information about the provisioned cluster.</p>
776
776
  * @public
777
777
  */
778
- Provisioned?: Provisioned;
778
+ Provisioned?: Provisioned | undefined;
779
779
  /**
780
780
  * <p>Information about the serverless cluster.</p>
781
781
  * @public
782
782
  */
783
- Serverless?: Serverless;
783
+ Serverless?: Serverless | undefined;
784
784
  }
785
785
  /**
786
786
  * <p>Indicates whether you want to turn on or turn off the JMX Exporter.</p>
@@ -813,12 +813,12 @@ export interface Prometheus {
813
813
  * <p>Indicates whether you want to turn on or turn off the JMX Exporter.</p>
814
814
  * @public
815
815
  */
816
- JmxExporter?: JmxExporter;
816
+ JmxExporter?: JmxExporter | undefined;
817
817
  /**
818
818
  * <p>Indicates whether you want to turn on or turn off the Node Exporter.</p>
819
819
  * @public
820
820
  */
821
- NodeExporter?: NodeExporter;
821
+ NodeExporter?: NodeExporter | undefined;
822
822
  }
823
823
  /**
824
824
  * <p>JMX and Node monitoring for the MSK cluster.</p>
@@ -840,94 +840,94 @@ export interface ClusterInfo {
840
840
  * <p>Arn of active cluster operation.</p>
841
841
  * @public
842
842
  */
843
- ActiveOperationArn?: string;
843
+ ActiveOperationArn?: string | undefined;
844
844
  /**
845
845
  * <p>Information about the broker nodes.</p>
846
846
  * @public
847
847
  */
848
- BrokerNodeGroupInfo?: BrokerNodeGroupInfo;
848
+ BrokerNodeGroupInfo?: BrokerNodeGroupInfo | undefined;
849
849
  /**
850
850
  * <p>Includes all client authentication information.</p>
851
851
  * @public
852
852
  */
853
- ClientAuthentication?: ClientAuthentication;
853
+ ClientAuthentication?: ClientAuthentication | undefined;
854
854
  /**
855
855
  * <p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>
856
856
  * @public
857
857
  */
858
- ClusterArn?: string;
858
+ ClusterArn?: string | undefined;
859
859
  /**
860
860
  * <p>The name of the cluster.</p>
861
861
  * @public
862
862
  */
863
- ClusterName?: string;
863
+ ClusterName?: string | undefined;
864
864
  /**
865
865
  * <p>The time when the cluster was created.</p>
866
866
  * @public
867
867
  */
868
- CreationTime?: Date;
868
+ CreationTime?: Date | undefined;
869
869
  /**
870
870
  * <p>Information about the version of software currently deployed on the Apache Kafka brokers in the cluster.</p>
871
871
  * @public
872
872
  */
873
- CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
873
+ CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo | undefined;
874
874
  /**
875
875
  * <p>The current version of the MSK cluster.</p>
876
876
  * @public
877
877
  */
878
- CurrentVersion?: string;
878
+ CurrentVersion?: string | undefined;
879
879
  /**
880
880
  * <p>Includes all encryption-related information.</p>
881
881
  * @public
882
882
  */
883
- EncryptionInfo?: EncryptionInfo;
883
+ EncryptionInfo?: EncryptionInfo | undefined;
884
884
  /**
885
885
  * <p>Specifies which metrics are gathered for the MSK cluster. This property has the following possible values: DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, and PER_TOPIC_PER_PARTITION. For a list of the metrics associated with each of these levels of monitoring, see <a href="https://docs.aws.amazon.com/msk/latest/developerguide/monitoring.html">Monitoring</a>.</p>
886
886
  * @public
887
887
  */
888
- EnhancedMonitoring?: EnhancedMonitoring;
888
+ EnhancedMonitoring?: EnhancedMonitoring | undefined;
889
889
  /**
890
890
  * <p>Settings for open monitoring using Prometheus.</p>
891
891
  * @public
892
892
  */
893
- OpenMonitoring?: OpenMonitoring;
894
- LoggingInfo?: LoggingInfo;
893
+ OpenMonitoring?: OpenMonitoring | undefined;
894
+ LoggingInfo?: LoggingInfo | undefined;
895
895
  /**
896
896
  * <p>The number of broker nodes in the cluster.</p>
897
897
  * @public
898
898
  */
899
- NumberOfBrokerNodes?: number;
899
+ NumberOfBrokerNodes?: number | undefined;
900
900
  /**
901
901
  * <p>The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.</p>
902
902
  * @public
903
903
  */
904
- State?: ClusterState;
905
- StateInfo?: StateInfo;
904
+ State?: ClusterState | undefined;
905
+ StateInfo?: StateInfo | undefined;
906
906
  /**
907
907
  * <p>Tags attached to the cluster.</p>
908
908
  * @public
909
909
  */
910
- Tags?: Record<string, string>;
910
+ Tags?: Record<string, string> | undefined;
911
911
  /**
912
912
  * <p>The connection string to use to connect to the Apache ZooKeeper cluster.</p>
913
913
  * @public
914
914
  */
915
- ZookeeperConnectString?: string;
915
+ ZookeeperConnectString?: string | undefined;
916
916
  /**
917
917
  * <p>The connection string to use to connect to zookeeper cluster on Tls port.</p>
918
918
  * @public
919
919
  */
920
- ZookeeperConnectStringTls?: string;
920
+ ZookeeperConnectStringTls?: string | undefined;
921
921
  /**
922
922
  * <p>This controls storage mode for supported storage tiers.</p>
923
923
  * @public
924
924
  */
925
- StorageMode?: StorageMode;
925
+ StorageMode?: StorageMode | undefined;
926
926
  /**
927
927
  * <p>Determines if there is an action required from the customer.</p>
928
928
  * @public
929
929
  */
930
- CustomerActionStatus?: CustomerActionStatus;
930
+ CustomerActionStatus?: CustomerActionStatus | undefined;
931
931
  }
932
932
  /**
933
933
  * <p>Returns information about an error state of the cluster.</p>
@@ -938,12 +938,12 @@ export interface ErrorInfo {
938
938
  * <p>A number describing the error programmatically.</p>
939
939
  * @public
940
940
  */
941
- ErrorCode?: string;
941
+ ErrorCode?: string | undefined;
942
942
  /**
943
943
  * <p>An optional field to provide more details about the error.</p>
944
944
  * @public
945
945
  */
946
- ErrorString?: string;
946
+ ErrorString?: string | undefined;
947
947
  }
948
948
  /**
949
949
  * <p>State information about the operation step.</p>
@@ -954,7 +954,7 @@ export interface ClusterOperationStepInfo {
954
954
  * <p>The steps current status.</p>
955
955
  * @public
956
956
  */
957
- StepStatus?: string;
957
+ StepStatus?: string | undefined;
958
958
  }
959
959
  /**
960
960
  * <p>Step taken during a cluster operation.</p>
@@ -965,12 +965,12 @@ export interface ClusterOperationStep {
965
965
  * <p>Information about the step and its status.</p>
966
966
  * @public
967
967
  */
968
- StepInfo?: ClusterOperationStepInfo;
968
+ StepInfo?: ClusterOperationStepInfo | undefined;
969
969
  /**
970
970
  * <p>The name of the step.</p>
971
971
  * @public
972
972
  */
973
- StepName?: string;
973
+ StepName?: string | undefined;
974
974
  }
975
975
  /**
976
976
  * <p>Information regarding UpdateBrokerCount.</p>
@@ -981,12 +981,12 @@ export interface BrokerCountUpdateInfo {
981
981
  * <p>Kafka Broker IDs of brokers being created.</p>
982
982
  * @public
983
983
  */
984
- CreatedBrokerIds?: number[];
984
+ CreatedBrokerIds?: number[] | undefined;
985
985
  /**
986
986
  * <p>Kafka Broker IDs of brokers being deleted.</p>
987
987
  * @public
988
988
  */
989
- DeletedBrokerIds?: number[];
989
+ DeletedBrokerIds?: number[] | undefined;
990
990
  }
991
991
  /**
992
992
  * <p>Specifies the configuration to use for the brokers.</p>
@@ -1013,67 +1013,67 @@ export interface MutableClusterInfo {
1013
1013
  * <p>Specifies the size of the EBS volume and the ID of the associated broker.</p>
1014
1014
  * @public
1015
1015
  */
1016
- BrokerEBSVolumeInfo?: BrokerEBSVolumeInfo[];
1016
+ BrokerEBSVolumeInfo?: BrokerEBSVolumeInfo[] | undefined;
1017
1017
  /**
1018
1018
  * <p>Information about the changes in the configuration of the brokers.</p>
1019
1019
  * @public
1020
1020
  */
1021
- ConfigurationInfo?: ConfigurationInfo;
1021
+ ConfigurationInfo?: ConfigurationInfo | undefined;
1022
1022
  /**
1023
1023
  * <p>The number of broker nodes in the cluster.</p>
1024
1024
  * @public
1025
1025
  */
1026
- NumberOfBrokerNodes?: number;
1026
+ NumberOfBrokerNodes?: number | undefined;
1027
1027
  /**
1028
1028
  * <p>Specifies which Apache Kafka metrics Amazon MSK gathers and sends to Amazon CloudWatch for this cluster.</p>
1029
1029
  * @public
1030
1030
  */
1031
- EnhancedMonitoring?: EnhancedMonitoring;
1031
+ EnhancedMonitoring?: EnhancedMonitoring | undefined;
1032
1032
  /**
1033
1033
  * <p>The settings for open monitoring.</p>
1034
1034
  * @public
1035
1035
  */
1036
- OpenMonitoring?: OpenMonitoring;
1036
+ OpenMonitoring?: OpenMonitoring | undefined;
1037
1037
  /**
1038
1038
  * <p>The Apache Kafka version.</p>
1039
1039
  * @public
1040
1040
  */
1041
- KafkaVersion?: string;
1041
+ KafkaVersion?: string | undefined;
1042
1042
  /**
1043
1043
  * <p>You can configure your MSK cluster to send broker logs to different destination types. This is a container for the configuration details related to broker logs.</p>
1044
1044
  * @public
1045
1045
  */
1046
- LoggingInfo?: LoggingInfo;
1046
+ LoggingInfo?: LoggingInfo | undefined;
1047
1047
  /**
1048
1048
  * <p>Information about the Amazon MSK broker type.</p>
1049
1049
  * @public
1050
1050
  */
1051
- InstanceType?: string;
1051
+ InstanceType?: string | undefined;
1052
1052
  /**
1053
1053
  * <p>Includes all client authentication information.</p>
1054
1054
  * @public
1055
1055
  */
1056
- ClientAuthentication?: ClientAuthentication;
1056
+ ClientAuthentication?: ClientAuthentication | undefined;
1057
1057
  /**
1058
1058
  * <p>Includes all encryption-related information.</p>
1059
1059
  * @public
1060
1060
  */
1061
- EncryptionInfo?: EncryptionInfo;
1061
+ EncryptionInfo?: EncryptionInfo | undefined;
1062
1062
  /**
1063
1063
  * <p>Information about the broker access configuration.</p>
1064
1064
  * @public
1065
1065
  */
1066
- ConnectivityInfo?: ConnectivityInfo;
1066
+ ConnectivityInfo?: ConnectivityInfo | undefined;
1067
1067
  /**
1068
1068
  * <p>This controls storage mode for supported storage tiers.</p>
1069
1069
  * @public
1070
1070
  */
1071
- StorageMode?: StorageMode;
1071
+ StorageMode?: StorageMode | undefined;
1072
1072
  /**
1073
1073
  * <p>Describes brokers being changed during a broker count update.</p>
1074
1074
  * @public
1075
1075
  */
1076
- BrokerCountUpdateInfo?: BrokerCountUpdateInfo;
1076
+ BrokerCountUpdateInfo?: BrokerCountUpdateInfo | undefined;
1077
1077
  }
1078
1078
  /**
1079
1079
  * @public
@@ -1096,12 +1096,12 @@ export interface UserIdentity {
1096
1096
  * <p>The identity type of the requester that calls the API operation.</p>
1097
1097
  * @public
1098
1098
  */
1099
- Type?: UserIdentityType;
1099
+ Type?: UserIdentityType | undefined;
1100
1100
  /**
1101
1101
  * <p>A unique identifier for the requester that calls the API operation.</p>
1102
1102
  * @public
1103
1103
  */
1104
- PrincipalId?: string;
1104
+ PrincipalId?: string | undefined;
1105
1105
  }
1106
1106
  /**
1107
1107
  * <p>Description of the VPC connection.</p>
@@ -1112,22 +1112,22 @@ export interface VpcConnectionInfo {
1112
1112
  * <p>The Amazon Resource Name (ARN) of the VPC connection.</p>
1113
1113
  * @public
1114
1114
  */
1115
- VpcConnectionArn?: string;
1115
+ VpcConnectionArn?: string | undefined;
1116
1116
  /**
1117
1117
  * <p>The owner of the VPC Connection.</p>
1118
1118
  * @public
1119
1119
  */
1120
- Owner?: string;
1120
+ Owner?: string | undefined;
1121
1121
  /**
1122
1122
  * <p>Description of the requester that calls the API operation.</p>
1123
1123
  * @public
1124
1124
  */
1125
- UserIdentity?: UserIdentity;
1125
+ UserIdentity?: UserIdentity | undefined;
1126
1126
  /**
1127
1127
  * <p>The time when Amazon MSK creates the VPC Connnection.</p>
1128
1128
  * @public
1129
1129
  */
1130
- CreationTime?: Date;
1130
+ CreationTime?: Date | undefined;
1131
1131
  }
1132
1132
  /**
1133
1133
  * <p>Returns information about a cluster operation.</p>
@@ -1138,62 +1138,62 @@ export interface ClusterOperationInfo {
1138
1138
  * <p>The ID of the API request that triggered this operation.</p>
1139
1139
  * @public
1140
1140
  */
1141
- ClientRequestId?: string;
1141
+ ClientRequestId?: string | undefined;
1142
1142
  /**
1143
1143
  * <p>ARN of the cluster.</p>
1144
1144
  * @public
1145
1145
  */
1146
- ClusterArn?: string;
1146
+ ClusterArn?: string | undefined;
1147
1147
  /**
1148
1148
  * <p>The time that the operation was created.</p>
1149
1149
  * @public
1150
1150
  */
1151
- CreationTime?: Date;
1151
+ CreationTime?: Date | undefined;
1152
1152
  /**
1153
1153
  * <p>The time at which the operation finished.</p>
1154
1154
  * @public
1155
1155
  */
1156
- EndTime?: Date;
1156
+ EndTime?: Date | undefined;
1157
1157
  /**
1158
1158
  * <p>Describes the error if the operation fails.</p>
1159
1159
  * @public
1160
1160
  */
1161
- ErrorInfo?: ErrorInfo;
1161
+ ErrorInfo?: ErrorInfo | undefined;
1162
1162
  /**
1163
1163
  * <p>ARN of the cluster operation.</p>
1164
1164
  * @public
1165
1165
  */
1166
- OperationArn?: string;
1166
+ OperationArn?: string | undefined;
1167
1167
  /**
1168
1168
  * <p>State of the cluster operation.</p>
1169
1169
  * @public
1170
1170
  */
1171
- OperationState?: string;
1171
+ OperationState?: string | undefined;
1172
1172
  /**
1173
1173
  * <p>Steps completed during the operation.</p>
1174
1174
  * @public
1175
1175
  */
1176
- OperationSteps?: ClusterOperationStep[];
1176
+ OperationSteps?: ClusterOperationStep[] | undefined;
1177
1177
  /**
1178
1178
  * <p>Type of the cluster operation.</p>
1179
1179
  * @public
1180
1180
  */
1181
- OperationType?: string;
1181
+ OperationType?: string | undefined;
1182
1182
  /**
1183
1183
  * <p>Information about cluster attributes before a cluster is updated.</p>
1184
1184
  * @public
1185
1185
  */
1186
- SourceClusterInfo?: MutableClusterInfo;
1186
+ SourceClusterInfo?: MutableClusterInfo | undefined;
1187
1187
  /**
1188
1188
  * <p>Information about cluster attributes after a cluster is updated.</p>
1189
1189
  * @public
1190
1190
  */
1191
- TargetClusterInfo?: MutableClusterInfo;
1191
+ TargetClusterInfo?: MutableClusterInfo | undefined;
1192
1192
  /**
1193
1193
  * <p>Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.</p>
1194
1194
  * @public
1195
1195
  */
1196
- VpcConnectionInfo?: VpcConnectionInfo;
1196
+ VpcConnectionInfo?: VpcConnectionInfo | undefined;
1197
1197
  }
1198
1198
  /**
1199
1199
  * <p>Returns information about a cluster operation.</p>
@@ -1204,37 +1204,37 @@ export interface ClusterOperationV2Summary {
1204
1204
  * <p>ARN of the cluster.</p>
1205
1205
  * @public
1206
1206
  */
1207
- ClusterArn?: string;
1207
+ ClusterArn?: string | undefined;
1208
1208
  /**
1209
1209
  * <p>Type of the backend cluster.</p>
1210
1210
  * @public
1211
1211
  */
1212
- ClusterType?: ClusterType;
1212
+ ClusterType?: ClusterType | undefined;
1213
1213
  /**
1214
1214
  * <p>The time at which operation was started.</p>
1215
1215
  * @public
1216
1216
  */
1217
- StartTime?: Date;
1217
+ StartTime?: Date | undefined;
1218
1218
  /**
1219
1219
  * <p>The time at which the operation finished.</p>
1220
1220
  * @public
1221
1221
  */
1222
- EndTime?: Date;
1222
+ EndTime?: Date | undefined;
1223
1223
  /**
1224
1224
  * <p>ARN of the cluster operation.</p>
1225
1225
  * @public
1226
1226
  */
1227
- OperationArn?: string;
1227
+ OperationArn?: string | undefined;
1228
1228
  /**
1229
1229
  * <p>State of the cluster operation.</p>
1230
1230
  * @public
1231
1231
  */
1232
- OperationState?: string;
1232
+ OperationState?: string | undefined;
1233
1233
  /**
1234
1234
  * <p>Type of the cluster operation.</p>
1235
1235
  * @public
1236
1236
  */
1237
- OperationType?: string;
1237
+ OperationType?: string | undefined;
1238
1238
  }
1239
1239
  /**
1240
1240
  * <p>Contains source Apache Kafka versions and compatible target Apache Kafka versions.</p>
@@ -1245,12 +1245,12 @@ export interface CompatibleKafkaVersion {
1245
1245
  * <p>An Apache Kafka version.</p>
1246
1246
  * @public
1247
1247
  */
1248
- SourceVersion?: string;
1248
+ SourceVersion?: string | undefined;
1249
1249
  /**
1250
1250
  * <p>A list of Apache Kafka versions.</p>
1251
1251
  * @public
1252
1252
  */
1253
- TargetVersions?: string[];
1253
+ TargetVersions?: string[] | undefined;
1254
1254
  }
1255
1255
  /**
1256
1256
  * <p>Describes a configuration revision.</p>
@@ -1266,7 +1266,7 @@ export interface ConfigurationRevision {
1266
1266
  * <p>The description of the configuration revision.</p>
1267
1267
  * @public
1268
1268
  */
1269
- Description?: string;
1269
+ Description?: string | undefined;
1270
1270
  /**
1271
1271
  * <p>The revision number.</p>
1272
1272
  * @public
@@ -1347,7 +1347,7 @@ export interface KafkaClusterClientVpcConfig {
1347
1347
  * <p>The security groups to attach to the ENIs for the broker nodes.</p>
1348
1348
  * @public
1349
1349
  */
1350
- SecurityGroupIds?: string[];
1350
+ SecurityGroupIds?: string[] | undefined;
1351
1351
  /**
1352
1352
  * <p>The list of subnets in the client VPC to connect to.</p>
1353
1353
  * @public
@@ -1379,17 +1379,17 @@ export interface KafkaClusterDescription {
1379
1379
  * <p>Details of an Amazon MSK Cluster.</p>
1380
1380
  * @public
1381
1381
  */
1382
- AmazonMskCluster?: AmazonMskCluster;
1382
+ AmazonMskCluster?: AmazonMskCluster | undefined;
1383
1383
  /**
1384
1384
  * <p>The alias of the Kafka cluster. Used to prefix names of replicated topics.</p>
1385
1385
  * @public
1386
1386
  */
1387
- KafkaClusterAlias?: string;
1387
+ KafkaClusterAlias?: string | undefined;
1388
1388
  /**
1389
1389
  * <p>Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.</p>
1390
1390
  * @public
1391
1391
  */
1392
- VpcConfig?: KafkaClusterClientVpcConfig;
1392
+ VpcConfig?: KafkaClusterClientVpcConfig | undefined;
1393
1393
  }
1394
1394
  /**
1395
1395
  * <p>Summarized information about Kafka Cluster used as source / target for replication.</p>
@@ -1400,12 +1400,12 @@ export interface KafkaClusterSummary {
1400
1400
  * <p>Details of an Amazon MSK Cluster.</p>
1401
1401
  * @public
1402
1402
  */
1403
- AmazonMskCluster?: AmazonMskCluster;
1403
+ AmazonMskCluster?: AmazonMskCluster | undefined;
1404
1404
  /**
1405
1405
  * <p>The alias of the Kafka cluster. Used to prefix names of replicated topics.</p>
1406
1406
  * @public
1407
1407
  */
1408
- KafkaClusterAlias?: string;
1408
+ KafkaClusterAlias?: string | undefined;
1409
1409
  }
1410
1410
  /**
1411
1411
  * @public
@@ -1423,8 +1423,8 @@ export type KafkaVersionStatus = (typeof KafkaVersionStatus)[keyof typeof KafkaV
1423
1423
  * @public
1424
1424
  */
1425
1425
  export interface KafkaVersion {
1426
- Version?: string;
1427
- Status?: KafkaVersionStatus;
1426
+ Version?: string | undefined;
1427
+ Status?: KafkaVersionStatus | undefined;
1428
1428
  }
1429
1429
  /**
1430
1430
  * <p>BrokerNodeInfo</p>
@@ -1435,32 +1435,32 @@ export interface BrokerNodeInfo {
1435
1435
  * <p>The attached elastic network interface of the broker.</p>
1436
1436
  * @public
1437
1437
  */
1438
- AttachedENIId?: string;
1438
+ AttachedENIId?: string | undefined;
1439
1439
  /**
1440
1440
  * <p>The ID of the broker.</p>
1441
1441
  * @public
1442
1442
  */
1443
- BrokerId?: number;
1443
+ BrokerId?: number | undefined;
1444
1444
  /**
1445
1445
  * <p>The client subnet to which this broker node belongs.</p>
1446
1446
  * @public
1447
1447
  */
1448
- ClientSubnet?: string;
1448
+ ClientSubnet?: string | undefined;
1449
1449
  /**
1450
1450
  * <p>The virtual private cloud (VPC) of the client.</p>
1451
1451
  * @public
1452
1452
  */
1453
- ClientVpcIpAddress?: string;
1453
+ ClientVpcIpAddress?: string | undefined;
1454
1454
  /**
1455
1455
  * <p>Information about the version of software currently deployed on the Apache Kafka brokers in the cluster.</p>
1456
1456
  * @public
1457
1457
  */
1458
- CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
1458
+ CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo | undefined;
1459
1459
  /**
1460
1460
  * <p>Endpoints for accessing the broker.</p>
1461
1461
  * @public
1462
1462
  */
1463
- Endpoints?: string[];
1463
+ Endpoints?: string[] | undefined;
1464
1464
  }
1465
1465
  /**
1466
1466
  * <p>Controller node information.</p>
@@ -1471,7 +1471,7 @@ export interface ControllerNodeInfo {
1471
1471
  * <p>Endpoints for accessing the Controller.</p>
1472
1472
  * @public
1473
1473
  */
1474
- Endpoints?: string[];
1474
+ Endpoints?: string[] | undefined;
1475
1475
  }
1476
1476
  /**
1477
1477
  * @public
@@ -1493,27 +1493,27 @@ export interface ZookeeperNodeInfo {
1493
1493
  * <p>The attached elastic network interface of the broker.</p>
1494
1494
  * @public
1495
1495
  */
1496
- AttachedENIId?: string;
1496
+ AttachedENIId?: string | undefined;
1497
1497
  /**
1498
1498
  * <p>The virtual private cloud (VPC) IP address of the client.</p>
1499
1499
  * @public
1500
1500
  */
1501
- ClientVpcIpAddress?: string;
1501
+ ClientVpcIpAddress?: string | undefined;
1502
1502
  /**
1503
1503
  * <p>Endpoints for accessing the ZooKeeper.</p>
1504
1504
  * @public
1505
1505
  */
1506
- Endpoints?: string[];
1506
+ Endpoints?: string[] | undefined;
1507
1507
  /**
1508
1508
  * <p>The role-specific ID for Zookeeper.</p>
1509
1509
  * @public
1510
1510
  */
1511
- ZookeeperId?: number;
1511
+ ZookeeperId?: number | undefined;
1512
1512
  /**
1513
1513
  * <p>The version of Zookeeper.</p>
1514
1514
  * @public
1515
1515
  */
1516
- ZookeeperVersion?: string;
1516
+ ZookeeperVersion?: string | undefined;
1517
1517
  }
1518
1518
  /**
1519
1519
  * <p>The node information object.</p>
@@ -1524,37 +1524,37 @@ export interface NodeInfo {
1524
1524
  * <p>The start time.</p>
1525
1525
  * @public
1526
1526
  */
1527
- AddedToClusterTime?: string;
1527
+ AddedToClusterTime?: string | undefined;
1528
1528
  /**
1529
1529
  * <p>The broker node info.</p>
1530
1530
  * @public
1531
1531
  */
1532
- BrokerNodeInfo?: BrokerNodeInfo;
1532
+ BrokerNodeInfo?: BrokerNodeInfo | undefined;
1533
1533
  /**
1534
1534
  * <p>The ControllerNodeInfo.</p>
1535
1535
  * @public
1536
1536
  */
1537
- ControllerNodeInfo?: ControllerNodeInfo;
1537
+ ControllerNodeInfo?: ControllerNodeInfo | undefined;
1538
1538
  /**
1539
1539
  * <p>The instance type.</p>
1540
1540
  * @public
1541
1541
  */
1542
- InstanceType?: string;
1542
+ InstanceType?: string | undefined;
1543
1543
  /**
1544
1544
  * <p>The Amazon Resource Name (ARN) of the node.</p>
1545
1545
  * @public
1546
1546
  */
1547
- NodeARN?: string;
1547
+ NodeARN?: string | undefined;
1548
1548
  /**
1549
1549
  * <p>The node type.</p>
1550
1550
  * @public
1551
1551
  */
1552
- NodeType?: NodeType;
1552
+ NodeType?: NodeType | undefined;
1553
1553
  /**
1554
1554
  * <p>The ZookeeperNodeInfo.</p>
1555
1555
  * @public
1556
1556
  */
1557
- ZookeeperNodeInfo?: ZookeeperNodeInfo;
1557
+ ZookeeperNodeInfo?: ZookeeperNodeInfo | undefined;
1558
1558
  }
1559
1559
  /**
1560
1560
  * <p>Details about consumer group replication.</p>
@@ -1565,7 +1565,7 @@ export interface ConsumerGroupReplication {
1565
1565
  * <p>List of regular expression patterns indicating the consumer groups that should not be replicated.</p>
1566
1566
  * @public
1567
1567
  */
1568
- ConsumerGroupsToExclude?: string[];
1568
+ ConsumerGroupsToExclude?: string[] | undefined;
1569
1569
  /**
1570
1570
  * <p>List of regular expression patterns indicating the consumer groups to copy.</p>
1571
1571
  * @public
@@ -1575,12 +1575,12 @@ export interface ConsumerGroupReplication {
1575
1575
  * <p>Enables synchronization of consumer groups to target cluster.</p>
1576
1576
  * @public
1577
1577
  */
1578
- DetectAndCopyNewConsumerGroups?: boolean;
1578
+ DetectAndCopyNewConsumerGroups?: boolean | undefined;
1579
1579
  /**
1580
1580
  * <p>Enables synchronization of consumer group offsets to target cluster. The translated offsets will be written to topic __consumer_offsets.</p>
1581
1581
  * @public
1582
1582
  */
1583
- SynchroniseConsumerGroupOffsets?: boolean;
1583
+ SynchroniseConsumerGroupOffsets?: boolean | undefined;
1584
1584
  }
1585
1585
  /**
1586
1586
  * @public
@@ -1618,7 +1618,7 @@ export interface ReplicationStartingPosition {
1618
1618
  * <p>The type of replication starting position.</p>
1619
1619
  * @public
1620
1620
  */
1621
- Type?: ReplicationStartingPositionType;
1621
+ Type?: ReplicationStartingPositionType | undefined;
1622
1622
  }
1623
1623
  /**
1624
1624
  * @public
@@ -1641,7 +1641,7 @@ export interface ReplicationTopicNameConfiguration {
1641
1641
  * <p>The type of replicated topic name.</p>
1642
1642
  * @public
1643
1643
  */
1644
- Type?: ReplicationTopicNameConfigurationType;
1644
+ Type?: ReplicationTopicNameConfigurationType | undefined;
1645
1645
  }
1646
1646
  /**
1647
1647
  * <p>Details about topic replication.</p>
@@ -1652,32 +1652,32 @@ export interface TopicReplication {
1652
1652
  * <p>Whether to periodically configure remote topic ACLs to match their corresponding upstream topics.</p>
1653
1653
  * @public
1654
1654
  */
1655
- CopyAccessControlListsForTopics?: boolean;
1655
+ CopyAccessControlListsForTopics?: boolean | undefined;
1656
1656
  /**
1657
1657
  * <p>Whether to periodically configure remote topics to match their corresponding upstream topics.</p>
1658
1658
  * @public
1659
1659
  */
1660
- CopyTopicConfigurations?: boolean;
1660
+ CopyTopicConfigurations?: boolean | undefined;
1661
1661
  /**
1662
1662
  * <p>Whether to periodically check for new topics and partitions.</p>
1663
1663
  * @public
1664
1664
  */
1665
- DetectAndCopyNewTopics?: boolean;
1665
+ DetectAndCopyNewTopics?: boolean | undefined;
1666
1666
  /**
1667
1667
  * <p>Configuration for specifying the position in the topics to start replicating from.</p>
1668
1668
  * @public
1669
1669
  */
1670
- StartingPosition?: ReplicationStartingPosition;
1670
+ StartingPosition?: ReplicationStartingPosition | undefined;
1671
1671
  /**
1672
1672
  * <p>Configuration for specifying replicated topic names should be the same as their corresponding upstream topics or prefixed with source cluster alias.</p>
1673
1673
  * @public
1674
1674
  */
1675
- TopicNameConfiguration?: ReplicationTopicNameConfiguration;
1675
+ TopicNameConfiguration?: ReplicationTopicNameConfiguration | undefined;
1676
1676
  /**
1677
1677
  * <p>List of regular expression patterns indicating the topics that should not be replicated.</p>
1678
1678
  * @public
1679
1679
  */
1680
- TopicsToExclude?: string[];
1680
+ TopicsToExclude?: string[] | undefined;
1681
1681
  /**
1682
1682
  * <p>List of regular expression patterns indicating the topics to copy.</p>
1683
1683
  * @public
@@ -1724,27 +1724,27 @@ export interface ReplicationInfoDescription {
1724
1724
  * <p>Configuration relating to consumer group replication.</p>
1725
1725
  * @public
1726
1726
  */
1727
- ConsumerGroupReplication?: ConsumerGroupReplication;
1727
+ ConsumerGroupReplication?: ConsumerGroupReplication | undefined;
1728
1728
  /**
1729
1729
  * <p>The alias of the source Kafka cluster.</p>
1730
1730
  * @public
1731
1731
  */
1732
- SourceKafkaClusterAlias?: string;
1732
+ SourceKafkaClusterAlias?: string | undefined;
1733
1733
  /**
1734
1734
  * <p>The compression type to use when producing records to target cluster.</p>
1735
1735
  * @public
1736
1736
  */
1737
- TargetCompressionType?: TargetCompressionType;
1737
+ TargetCompressionType?: TargetCompressionType | undefined;
1738
1738
  /**
1739
1739
  * <p>The alias of the target Kafka cluster.</p>
1740
1740
  * @public
1741
1741
  */
1742
- TargetKafkaClusterAlias?: string;
1742
+ TargetKafkaClusterAlias?: string | undefined;
1743
1743
  /**
1744
1744
  * <p>Configuration relating to topic replication.</p>
1745
1745
  * @public
1746
1746
  */
1747
- TopicReplication?: TopicReplication;
1747
+ TopicReplication?: TopicReplication | undefined;
1748
1748
  }
1749
1749
  /**
1750
1750
  * <p>Summarized information of replication between clusters.</p>
@@ -1755,12 +1755,12 @@ export interface ReplicationInfoSummary {
1755
1755
  * <p>The alias of the source Kafka cluster.</p>
1756
1756
  * @public
1757
1757
  */
1758
- SourceKafkaClusterAlias?: string;
1758
+ SourceKafkaClusterAlias?: string | undefined;
1759
1759
  /**
1760
1760
  * <p>The alias of the target Kafka cluster.</p>
1761
1761
  * @public
1762
1762
  */
1763
- TargetKafkaClusterAlias?: string;
1763
+ TargetKafkaClusterAlias?: string | undefined;
1764
1764
  }
1765
1765
  /**
1766
1766
  * @public
@@ -1786,47 +1786,47 @@ export interface ReplicatorSummary {
1786
1786
  * <p>The time the replicator was created.</p>
1787
1787
  * @public
1788
1788
  */
1789
- CreationTime?: Date;
1789
+ CreationTime?: Date | undefined;
1790
1790
  /**
1791
1791
  * <p>The current version of the replicator.</p>
1792
1792
  * @public
1793
1793
  */
1794
- CurrentVersion?: string;
1794
+ CurrentVersion?: string | undefined;
1795
1795
  /**
1796
1796
  * <p>Whether this resource is a replicator reference.</p>
1797
1797
  * @public
1798
1798
  */
1799
- IsReplicatorReference?: boolean;
1799
+ IsReplicatorReference?: boolean | undefined;
1800
1800
  /**
1801
1801
  * <p>Kafka Clusters used in setting up sources / targets for replication.</p>
1802
1802
  * @public
1803
1803
  */
1804
- KafkaClustersSummary?: KafkaClusterSummary[];
1804
+ KafkaClustersSummary?: KafkaClusterSummary[] | undefined;
1805
1805
  /**
1806
1806
  * <p>A list of summarized information of replications between clusters.</p>
1807
1807
  * @public
1808
1808
  */
1809
- ReplicationInfoSummaryList?: ReplicationInfoSummary[];
1809
+ ReplicationInfoSummaryList?: ReplicationInfoSummary[] | undefined;
1810
1810
  /**
1811
1811
  * <p>The Amazon Resource Name (ARN) of the replicator.</p>
1812
1812
  * @public
1813
1813
  */
1814
- ReplicatorArn?: string;
1814
+ ReplicatorArn?: string | undefined;
1815
1815
  /**
1816
1816
  * <p>The name of the replicator.</p>
1817
1817
  * @public
1818
1818
  */
1819
- ReplicatorName?: string;
1819
+ ReplicatorName?: string | undefined;
1820
1820
  /**
1821
1821
  * <p>The Amazon Resource Name (ARN) of the replicator resource in the region where the replicator was created.</p>
1822
1822
  * @public
1823
1823
  */
1824
- ReplicatorResourceArn?: string;
1824
+ ReplicatorResourceArn?: string | undefined;
1825
1825
  /**
1826
1826
  * <p>State of the replicator.</p>
1827
1827
  * @public
1828
1828
  */
1829
- ReplicatorState?: ReplicatorState;
1829
+ ReplicatorState?: ReplicatorState | undefined;
1830
1830
  }
1831
1831
  /**
1832
1832
  * <p>Error info for scram secret associate/disassociate failure.</p>
@@ -1837,17 +1837,17 @@ export interface UnprocessedScramSecret {
1837
1837
  * <p>Error code for associate/disassociate failure.</p>
1838
1838
  * @public
1839
1839
  */
1840
- ErrorCode?: string;
1840
+ ErrorCode?: string | undefined;
1841
1841
  /**
1842
1842
  * <p>Error message for associate/disassociate failure.</p>
1843
1843
  * @public
1844
1844
  */
1845
- ErrorMessage?: string;
1845
+ ErrorMessage?: string | undefined;
1846
1846
  /**
1847
1847
  * <p>AWS Secrets Manager secret ARN.</p>
1848
1848
  * @public
1849
1849
  */
1850
- SecretArn?: string;
1850
+ SecretArn?: string | undefined;
1851
1851
  }
1852
1852
  /**
1853
1853
  * <p>The VPC connection object.</p>
@@ -1868,22 +1868,22 @@ export interface VpcConnection {
1868
1868
  * <p>Creation time of the Vpc Connection.</p>
1869
1869
  * @public
1870
1870
  */
1871
- CreationTime?: Date;
1871
+ CreationTime?: Date | undefined;
1872
1872
  /**
1873
1873
  * <p>Information about the auth scheme of Vpc Connection.</p>
1874
1874
  * @public
1875
1875
  */
1876
- Authentication?: string;
1876
+ Authentication?: string | undefined;
1877
1877
  /**
1878
1878
  * <p>The vpcId that belongs to the Vpc Connection.</p>
1879
1879
  * @public
1880
1880
  */
1881
- VpcId?: string;
1881
+ VpcId?: string | undefined;
1882
1882
  /**
1883
1883
  * <p>State of the Vpc Connection.</p>
1884
1884
  * @public
1885
1885
  */
1886
- State?: VpcConnectionState;
1886
+ State?: VpcConnectionState | undefined;
1887
1887
  }
1888
1888
  /**
1889
1889
  * <p>Returns information about an error.</p>
@@ -1896,12 +1896,12 @@ export declare class BadRequestException extends __BaseException {
1896
1896
  * <p>The parameter that caused the error.</p>
1897
1897
  * @public
1898
1898
  */
1899
- InvalidParameter?: string;
1899
+ InvalidParameter?: string | undefined;
1900
1900
  /**
1901
1901
  * <p>The description of the error.</p>
1902
1902
  * @public
1903
1903
  */
1904
- Message?: string;
1904
+ Message?: string | undefined;
1905
1905
  /**
1906
1906
  * @internal
1907
1907
  */
@@ -1931,12 +1931,12 @@ export interface BatchAssociateScramSecretResponse {
1931
1931
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
1932
1932
  * @public
1933
1933
  */
1934
- ClusterArn?: string;
1934
+ ClusterArn?: string | undefined;
1935
1935
  /**
1936
1936
  * <p>List of errors when associating secrets to cluster.</p>
1937
1937
  * @public
1938
1938
  */
1939
- UnprocessedScramSecrets?: UnprocessedScramSecret[];
1939
+ UnprocessedScramSecrets?: UnprocessedScramSecret[] | undefined;
1940
1940
  }
1941
1941
  /**
1942
1942
  * <p>Returns information about an error.</p>
@@ -1949,12 +1949,12 @@ export declare class ForbiddenException extends __BaseException {
1949
1949
  * <p>The parameter that caused the error.</p>
1950
1950
  * @public
1951
1951
  */
1952
- InvalidParameter?: string;
1952
+ InvalidParameter?: string | undefined;
1953
1953
  /**
1954
1954
  * <p>The description of the error.</p>
1955
1955
  * @public
1956
1956
  */
1957
- Message?: string;
1957
+ Message?: string | undefined;
1958
1958
  /**
1959
1959
  * @internal
1960
1960
  */
@@ -1971,12 +1971,12 @@ export declare class InternalServerErrorException extends __BaseException {
1971
1971
  * <p>The parameter that caused the error.</p>
1972
1972
  * @public
1973
1973
  */
1974
- InvalidParameter?: string;
1974
+ InvalidParameter?: string | undefined;
1975
1975
  /**
1976
1976
  * <p>The description of the error.</p>
1977
1977
  * @public
1978
1978
  */
1979
- Message?: string;
1979
+ Message?: string | undefined;
1980
1980
  /**
1981
1981
  * @internal
1982
1982
  */
@@ -1993,12 +1993,12 @@ export declare class NotFoundException extends __BaseException {
1993
1993
  * <p>The parameter that caused the error.</p>
1994
1994
  * @public
1995
1995
  */
1996
- InvalidParameter?: string;
1996
+ InvalidParameter?: string | undefined;
1997
1997
  /**
1998
1998
  * <p>The description of the error.</p>
1999
1999
  * @public
2000
2000
  */
2001
- Message?: string;
2001
+ Message?: string | undefined;
2002
2002
  /**
2003
2003
  * @internal
2004
2004
  */
@@ -2015,12 +2015,12 @@ export declare class ServiceUnavailableException extends __BaseException {
2015
2015
  * <p>The parameter that caused the error.</p>
2016
2016
  * @public
2017
2017
  */
2018
- InvalidParameter?: string;
2018
+ InvalidParameter?: string | undefined;
2019
2019
  /**
2020
2020
  * <p>The description of the error.</p>
2021
2021
  * @public
2022
2022
  */
2023
- Message?: string;
2023
+ Message?: string | undefined;
2024
2024
  /**
2025
2025
  * @internal
2026
2026
  */
@@ -2037,12 +2037,12 @@ export declare class TooManyRequestsException extends __BaseException {
2037
2037
  * <p>The parameter that caused the error.</p>
2038
2038
  * @public
2039
2039
  */
2040
- InvalidParameter?: string;
2040
+ InvalidParameter?: string | undefined;
2041
2041
  /**
2042
2042
  * <p>The description of the error.</p>
2043
2043
  * @public
2044
2044
  */
2045
- Message?: string;
2045
+ Message?: string | undefined;
2046
2046
  /**
2047
2047
  * @internal
2048
2048
  */
@@ -2059,12 +2059,12 @@ export declare class UnauthorizedException extends __BaseException {
2059
2059
  * <p>The parameter that caused the error.</p>
2060
2060
  * @public
2061
2061
  */
2062
- InvalidParameter?: string;
2062
+ InvalidParameter?: string | undefined;
2063
2063
  /**
2064
2064
  * <p>The description of the error.</p>
2065
2065
  * @public
2066
2066
  */
2067
- Message?: string;
2067
+ Message?: string | undefined;
2068
2068
  /**
2069
2069
  * @internal
2070
2070
  */
@@ -2094,12 +2094,12 @@ export interface BatchDisassociateScramSecretResponse {
2094
2094
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
2095
2095
  * @public
2096
2096
  */
2097
- ClusterArn?: string;
2097
+ ClusterArn?: string | undefined;
2098
2098
  /**
2099
2099
  * <p>List of errors when disassociating secrets to cluster.</p>
2100
2100
  * @public
2101
2101
  */
2102
- UnprocessedScramSecrets?: UnprocessedScramSecret[];
2102
+ UnprocessedScramSecrets?: UnprocessedScramSecret[] | undefined;
2103
2103
  }
2104
2104
  /**
2105
2105
  * <p>Returns information about a provisioned cluster operation.</p>
@@ -2110,22 +2110,22 @@ export interface ClusterOperationV2Provisioned {
2110
2110
  * <p>Steps completed during the operation.</p>
2111
2111
  * @public
2112
2112
  */
2113
- OperationSteps?: ClusterOperationStep[];
2113
+ OperationSteps?: ClusterOperationStep[] | undefined;
2114
2114
  /**
2115
2115
  * <p>Information about cluster attributes before a cluster is updated.</p>
2116
2116
  * @public
2117
2117
  */
2118
- SourceClusterInfo?: MutableClusterInfo;
2118
+ SourceClusterInfo?: MutableClusterInfo | undefined;
2119
2119
  /**
2120
2120
  * <p>Information about cluster attributes after a cluster is updated.</p>
2121
2121
  * @public
2122
2122
  */
2123
- TargetClusterInfo?: MutableClusterInfo;
2123
+ TargetClusterInfo?: MutableClusterInfo | undefined;
2124
2124
  /**
2125
2125
  * <p>Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.</p>
2126
2126
  * @public
2127
2127
  */
2128
- VpcConnectionInfo?: VpcConnectionInfo;
2128
+ VpcConnectionInfo?: VpcConnectionInfo | undefined;
2129
2129
  }
2130
2130
  /**
2131
2131
  * Description of the VPC connection.
@@ -2136,22 +2136,22 @@ export interface VpcConnectionInfoServerless {
2136
2136
  * <p>The time when Amazon MSK creates the VPC Connnection.</p>
2137
2137
  * @public
2138
2138
  */
2139
- CreationTime?: Date;
2139
+ CreationTime?: Date | undefined;
2140
2140
  /**
2141
2141
  * <p>The owner of the VPC Connection.</p>
2142
2142
  * @public
2143
2143
  */
2144
- Owner?: string;
2144
+ Owner?: string | undefined;
2145
2145
  /**
2146
2146
  * <p>Description of the requester that calls the API operation.</p>
2147
2147
  * @public
2148
2148
  */
2149
- UserIdentity?: UserIdentity;
2149
+ UserIdentity?: UserIdentity | undefined;
2150
2150
  /**
2151
2151
  * <p>The Amazon Resource Name (ARN) of the VPC connection.</p>
2152
2152
  * @public
2153
2153
  */
2154
- VpcConnectionArn?: string;
2154
+ VpcConnectionArn?: string | undefined;
2155
2155
  }
2156
2156
  /**
2157
2157
  * <p>Returns information about a serverless cluster operation.</p>
@@ -2162,7 +2162,7 @@ export interface ClusterOperationV2Serverless {
2162
2162
  * <p>Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.</p>
2163
2163
  * @public
2164
2164
  */
2165
- VpcConnectionInfo?: VpcConnectionInfoServerless;
2165
+ VpcConnectionInfo?: VpcConnectionInfoServerless | undefined;
2166
2166
  }
2167
2167
  /**
2168
2168
  * <p>Returns information about a cluster operation.</p>
@@ -2173,52 +2173,52 @@ export interface ClusterOperationV2 {
2173
2173
  * <p>ARN of the cluster.</p>
2174
2174
  * @public
2175
2175
  */
2176
- ClusterArn?: string;
2176
+ ClusterArn?: string | undefined;
2177
2177
  /**
2178
2178
  * <p>Type of the backend cluster.</p>
2179
2179
  * @public
2180
2180
  */
2181
- ClusterType?: ClusterType;
2181
+ ClusterType?: ClusterType | undefined;
2182
2182
  /**
2183
2183
  * <p>The time at which operation was started.</p>
2184
2184
  * @public
2185
2185
  */
2186
- StartTime?: Date;
2186
+ StartTime?: Date | undefined;
2187
2187
  /**
2188
2188
  * <p>The time at which the operation finished.</p>
2189
2189
  * @public
2190
2190
  */
2191
- EndTime?: Date;
2191
+ EndTime?: Date | undefined;
2192
2192
  /**
2193
2193
  * <p>If cluster operation failed from an error, it describes the error.</p>
2194
2194
  * @public
2195
2195
  */
2196
- ErrorInfo?: ErrorInfo;
2196
+ ErrorInfo?: ErrorInfo | undefined;
2197
2197
  /**
2198
2198
  * <p>ARN of the cluster operation.</p>
2199
2199
  * @public
2200
2200
  */
2201
- OperationArn?: string;
2201
+ OperationArn?: string | undefined;
2202
2202
  /**
2203
2203
  * <p>State of the cluster operation.</p>
2204
2204
  * @public
2205
2205
  */
2206
- OperationState?: string;
2206
+ OperationState?: string | undefined;
2207
2207
  /**
2208
2208
  * <p>Type of the cluster operation.</p>
2209
2209
  * @public
2210
2210
  */
2211
- OperationType?: string;
2211
+ OperationType?: string | undefined;
2212
2212
  /**
2213
2213
  * <p>Properties of a provisioned cluster.</p>
2214
2214
  * @public
2215
2215
  */
2216
- Provisioned?: ClusterOperationV2Provisioned;
2216
+ Provisioned?: ClusterOperationV2Provisioned | undefined;
2217
2217
  /**
2218
2218
  * <p>Properties of a serverless cluster.</p>
2219
2219
  * @public
2220
2220
  */
2221
- Serverless?: ClusterOperationV2Serverless;
2221
+ Serverless?: ClusterOperationV2Serverless | undefined;
2222
2222
  }
2223
2223
  /**
2224
2224
  * <p>Returns information about an error.</p>
@@ -2231,12 +2231,12 @@ export declare class ConflictException extends __BaseException {
2231
2231
  * <p>The parameter that caused the error.</p>
2232
2232
  * @public
2233
2233
  */
2234
- InvalidParameter?: string;
2234
+ InvalidParameter?: string | undefined;
2235
2235
  /**
2236
2236
  * <p>The description of the error.</p>
2237
2237
  * @public
2238
2238
  */
2239
- Message?: string;
2239
+ Message?: string | undefined;
2240
2240
  /**
2241
2241
  * @internal
2242
2242
  */
@@ -2281,7 +2281,7 @@ export interface CreateClusterRequest {
2281
2281
  * <p>Includes all client authentication related information.</p>
2282
2282
  * @public
2283
2283
  */
2284
- ClientAuthentication?: ClientAuthentication;
2284
+ ClientAuthentication?: ClientAuthentication | undefined;
2285
2285
  /**
2286
2286
  * <p>The name of the cluster.</p>
2287
2287
  * @public
@@ -2291,28 +2291,28 @@ export interface CreateClusterRequest {
2291
2291
  * <p>Represents the configuration that you want MSK to use for the brokers in a cluster.</p>
2292
2292
  * @public
2293
2293
  */
2294
- ConfigurationInfo?: ConfigurationInfo;
2294
+ ConfigurationInfo?: ConfigurationInfo | undefined;
2295
2295
  /**
2296
2296
  * <p>Includes all encryption-related information.</p>
2297
2297
  * @public
2298
2298
  */
2299
- EncryptionInfo?: EncryptionInfo;
2299
+ EncryptionInfo?: EncryptionInfo | undefined;
2300
2300
  /**
2301
2301
  * <p>Specifies the level of monitoring for the MSK cluster. The possible values are DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, and PER_TOPIC_PER_PARTITION.</p>
2302
2302
  * @public
2303
2303
  */
2304
- EnhancedMonitoring?: EnhancedMonitoring;
2304
+ EnhancedMonitoring?: EnhancedMonitoring | undefined;
2305
2305
  /**
2306
2306
  * <p>The settings for open monitoring.</p>
2307
2307
  * @public
2308
2308
  */
2309
- OpenMonitoring?: OpenMonitoringInfo;
2309
+ OpenMonitoring?: OpenMonitoringInfo | undefined;
2310
2310
  /**
2311
2311
  * <p>The version of Apache Kafka.</p>
2312
2312
  * @public
2313
2313
  */
2314
2314
  KafkaVersion: string | undefined;
2315
- LoggingInfo?: LoggingInfo;
2315
+ LoggingInfo?: LoggingInfo | undefined;
2316
2316
  /**
2317
2317
  * <p>The number of broker nodes in the cluster.</p>
2318
2318
  * @public
@@ -2322,12 +2322,12 @@ export interface CreateClusterRequest {
2322
2322
  * <p>Create tags when creating the cluster.</p>
2323
2323
  * @public
2324
2324
  */
2325
- Tags?: Record<string, string>;
2325
+ Tags?: Record<string, string> | undefined;
2326
2326
  /**
2327
2327
  * <p>This controls storage mode for supported storage tiers.</p>
2328
2328
  * @public
2329
2329
  */
2330
- StorageMode?: StorageMode;
2330
+ StorageMode?: StorageMode | undefined;
2331
2331
  }
2332
2332
  /**
2333
2333
  * @public
@@ -2337,17 +2337,17 @@ export interface CreateClusterResponse {
2337
2337
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
2338
2338
  * @public
2339
2339
  */
2340
- ClusterArn?: string;
2340
+ ClusterArn?: string | undefined;
2341
2341
  /**
2342
2342
  * <p>The name of the MSK cluster.</p>
2343
2343
  * @public
2344
2344
  */
2345
- ClusterName?: string;
2345
+ ClusterName?: string | undefined;
2346
2346
  /**
2347
2347
  * <p>The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.</p>
2348
2348
  * @public
2349
2349
  */
2350
- State?: ClusterState;
2350
+ State?: ClusterState | undefined;
2351
2351
  }
2352
2352
  /**
2353
2353
  * <p>Provisioned cluster request.</p>
@@ -2363,27 +2363,27 @@ export interface ProvisionedRequest {
2363
2363
  * <p>Includes all client authentication information.</p>
2364
2364
  * @public
2365
2365
  */
2366
- ClientAuthentication?: ClientAuthentication;
2366
+ ClientAuthentication?: ClientAuthentication | undefined;
2367
2367
  /**
2368
2368
  * <p>Represents the configuration that you want Amazon MSK to use for the brokers in a cluster.</p>
2369
2369
  * @public
2370
2370
  */
2371
- ConfigurationInfo?: ConfigurationInfo;
2371
+ ConfigurationInfo?: ConfigurationInfo | undefined;
2372
2372
  /**
2373
2373
  * <p>Includes all encryption-related information.</p>
2374
2374
  * @public
2375
2375
  */
2376
- EncryptionInfo?: EncryptionInfo;
2376
+ EncryptionInfo?: EncryptionInfo | undefined;
2377
2377
  /**
2378
2378
  * <p>Specifies the level of monitoring for the MSK cluster. The possible values are DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, and PER_TOPIC_PER_PARTITION.</p>
2379
2379
  * @public
2380
2380
  */
2381
- EnhancedMonitoring?: EnhancedMonitoring;
2381
+ EnhancedMonitoring?: EnhancedMonitoring | undefined;
2382
2382
  /**
2383
2383
  * <p>The settings for open monitoring.</p>
2384
2384
  * @public
2385
2385
  */
2386
- OpenMonitoring?: OpenMonitoringInfo;
2386
+ OpenMonitoring?: OpenMonitoringInfo | undefined;
2387
2387
  /**
2388
2388
  * <p>The Apache Kafka version that you want for the cluster.</p>
2389
2389
  * @public
@@ -2393,7 +2393,7 @@ export interface ProvisionedRequest {
2393
2393
  * <p>Log delivery information for the cluster.</p>
2394
2394
  * @public
2395
2395
  */
2396
- LoggingInfo?: LoggingInfo;
2396
+ LoggingInfo?: LoggingInfo | undefined;
2397
2397
  /**
2398
2398
  * <p>The number of broker nodes in the cluster.</p>
2399
2399
  * @public
@@ -2403,7 +2403,7 @@ export interface ProvisionedRequest {
2403
2403
  * <p>This controls storage mode for supported storage tiers.</p>
2404
2404
  * @public
2405
2405
  */
2406
- StorageMode?: StorageMode;
2406
+ StorageMode?: StorageMode | undefined;
2407
2407
  }
2408
2408
  /**
2409
2409
  * <p>Serverless cluster request.</p>
@@ -2419,7 +2419,7 @@ export interface ServerlessRequest {
2419
2419
  * <p>Includes all client authentication information.</p>
2420
2420
  * @public
2421
2421
  */
2422
- ClientAuthentication?: ServerlessClientAuthentication;
2422
+ ClientAuthentication?: ServerlessClientAuthentication | undefined;
2423
2423
  }
2424
2424
  /**
2425
2425
  * @public
@@ -2434,17 +2434,17 @@ export interface CreateClusterV2Request {
2434
2434
  * <p>A map of tags that you want the cluster to have.</p>
2435
2435
  * @public
2436
2436
  */
2437
- Tags?: Record<string, string>;
2437
+ Tags?: Record<string, string> | undefined;
2438
2438
  /**
2439
2439
  * <p>Information about the provisioned cluster.</p>
2440
2440
  * @public
2441
2441
  */
2442
- Provisioned?: ProvisionedRequest;
2442
+ Provisioned?: ProvisionedRequest | undefined;
2443
2443
  /**
2444
2444
  * <p>Information about the serverless cluster.</p>
2445
2445
  * @public
2446
2446
  */
2447
- Serverless?: ServerlessRequest;
2447
+ Serverless?: ServerlessRequest | undefined;
2448
2448
  }
2449
2449
  /**
2450
2450
  * @public
@@ -2454,22 +2454,22 @@ export interface CreateClusterV2Response {
2454
2454
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
2455
2455
  * @public
2456
2456
  */
2457
- ClusterArn?: string;
2457
+ ClusterArn?: string | undefined;
2458
2458
  /**
2459
2459
  * <p>The name of the MSK cluster.</p>
2460
2460
  * @public
2461
2461
  */
2462
- ClusterName?: string;
2462
+ ClusterName?: string | undefined;
2463
2463
  /**
2464
2464
  * <p>The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.</p>
2465
2465
  * @public
2466
2466
  */
2467
- State?: ClusterState;
2467
+ State?: ClusterState | undefined;
2468
2468
  /**
2469
2469
  * <p>The type of the cluster. The possible states are PROVISIONED or SERVERLESS.</p>
2470
2470
  * @public
2471
2471
  */
2472
- ClusterType?: ClusterType;
2472
+ ClusterType?: ClusterType | undefined;
2473
2473
  }
2474
2474
  /**
2475
2475
  * @public
@@ -2479,12 +2479,12 @@ export interface CreateConfigurationRequest {
2479
2479
  * <p>The description of the configuration.</p>
2480
2480
  * @public
2481
2481
  */
2482
- Description?: string;
2482
+ Description?: string | undefined;
2483
2483
  /**
2484
2484
  * <p>The versions of Apache Kafka with which you can use this MSK configuration.</p>
2485
2485
  * @public
2486
2486
  */
2487
- KafkaVersions?: string[];
2487
+ KafkaVersions?: string[] | undefined;
2488
2488
  /**
2489
2489
  * <p>The name of the configuration.</p>
2490
2490
  * @public
@@ -2505,27 +2505,27 @@ export interface CreateConfigurationResponse {
2505
2505
  * <p>The Amazon Resource Name (ARN) of the configuration.</p>
2506
2506
  * @public
2507
2507
  */
2508
- Arn?: string;
2508
+ Arn?: string | undefined;
2509
2509
  /**
2510
2510
  * <p>The time when the configuration was created.</p>
2511
2511
  * @public
2512
2512
  */
2513
- CreationTime?: Date;
2513
+ CreationTime?: Date | undefined;
2514
2514
  /**
2515
2515
  * <p>Latest revision of the configuration.</p>
2516
2516
  * @public
2517
2517
  */
2518
- LatestRevision?: ConfigurationRevision;
2518
+ LatestRevision?: ConfigurationRevision | undefined;
2519
2519
  /**
2520
2520
  * <p>The name of the configuration.</p>
2521
2521
  * @public
2522
2522
  */
2523
- Name?: string;
2523
+ Name?: string | undefined;
2524
2524
  /**
2525
2525
  * <p>The state of the configuration. The possible states are ACTIVE, DELETING, and DELETE_FAILED. </p>
2526
2526
  * @public
2527
2527
  */
2528
- State?: ConfigurationState;
2528
+ State?: ConfigurationState | undefined;
2529
2529
  }
2530
2530
  /**
2531
2531
  * <p>Creates a replicator using the specified configuration.</p>
@@ -2536,7 +2536,7 @@ export interface CreateReplicatorRequest {
2536
2536
  * <p>A summary description of the replicator.</p>
2537
2537
  * @public
2538
2538
  */
2539
- Description?: string;
2539
+ Description?: string | undefined;
2540
2540
  /**
2541
2541
  * <p>Kafka Clusters to use in setting up sources / targets for replication.</p>
2542
2542
  * @public
@@ -2561,7 +2561,7 @@ export interface CreateReplicatorRequest {
2561
2561
  * <p>List of tags to attach to created Replicator.</p>
2562
2562
  * @public
2563
2563
  */
2564
- Tags?: Record<string, string>;
2564
+ Tags?: Record<string, string> | undefined;
2565
2565
  }
2566
2566
  /**
2567
2567
  * @public
@@ -2571,17 +2571,17 @@ export interface CreateReplicatorResponse {
2571
2571
  * <p>The Amazon Resource Name (ARN) of the replicator.</p>
2572
2572
  * @public
2573
2573
  */
2574
- ReplicatorArn?: string;
2574
+ ReplicatorArn?: string | undefined;
2575
2575
  /**
2576
2576
  * <p>Name of the replicator provided by the customer.</p>
2577
2577
  * @public
2578
2578
  */
2579
- ReplicatorName?: string;
2579
+ ReplicatorName?: string | undefined;
2580
2580
  /**
2581
2581
  * <p>State of the replicator.</p>
2582
2582
  * @public
2583
2583
  */
2584
- ReplicatorState?: ReplicatorState;
2584
+ ReplicatorState?: ReplicatorState | undefined;
2585
2585
  }
2586
2586
  /**
2587
2587
  * @public
@@ -2616,7 +2616,7 @@ export interface CreateVpcConnectionRequest {
2616
2616
  * <p>A map of tags for the VPC connection.</p>
2617
2617
  * @public
2618
2618
  */
2619
- Tags?: Record<string, string>;
2619
+ Tags?: Record<string, string> | undefined;
2620
2620
  }
2621
2621
  /**
2622
2622
  * @public
@@ -2626,42 +2626,42 @@ export interface CreateVpcConnectionResponse {
2626
2626
  * <p>The VPC connection ARN.</p>
2627
2627
  * @public
2628
2628
  */
2629
- VpcConnectionArn?: string;
2629
+ VpcConnectionArn?: string | undefined;
2630
2630
  /**
2631
2631
  * <p>The State of Vpc Connection.</p>
2632
2632
  * @public
2633
2633
  */
2634
- State?: VpcConnectionState;
2634
+ State?: VpcConnectionState | undefined;
2635
2635
  /**
2636
2636
  * <p>The authentication type of VPC connection.</p>
2637
2637
  * @public
2638
2638
  */
2639
- Authentication?: string;
2639
+ Authentication?: string | undefined;
2640
2640
  /**
2641
2641
  * <p>The VPC ID of the VPC connection.</p>
2642
2642
  * @public
2643
2643
  */
2644
- VpcId?: string;
2644
+ VpcId?: string | undefined;
2645
2645
  /**
2646
2646
  * <p>The list of client subnets.</p>
2647
2647
  * @public
2648
2648
  */
2649
- ClientSubnets?: string[];
2649
+ ClientSubnets?: string[] | undefined;
2650
2650
  /**
2651
2651
  * <p>The list of security groups.</p>
2652
2652
  * @public
2653
2653
  */
2654
- SecurityGroups?: string[];
2654
+ SecurityGroups?: string[] | undefined;
2655
2655
  /**
2656
2656
  * <p>The creation time of VPC connection.</p>
2657
2657
  * @public
2658
2658
  */
2659
- CreationTime?: Date;
2659
+ CreationTime?: Date | undefined;
2660
2660
  /**
2661
2661
  * <p>A map of tags for the VPC connection.</p>
2662
2662
  * @public
2663
2663
  */
2664
- Tags?: Record<string, string>;
2664
+ Tags?: Record<string, string> | undefined;
2665
2665
  }
2666
2666
  /**
2667
2667
  * @public
@@ -2676,7 +2676,7 @@ export interface DeleteClusterRequest {
2676
2676
  * <p>The current version of the MSK cluster.</p>
2677
2677
  * @public
2678
2678
  */
2679
- CurrentVersion?: string;
2679
+ CurrentVersion?: string | undefined;
2680
2680
  }
2681
2681
  /**
2682
2682
  * @public
@@ -2686,12 +2686,12 @@ export interface DeleteClusterResponse {
2686
2686
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
2687
2687
  * @public
2688
2688
  */
2689
- ClusterArn?: string;
2689
+ ClusterArn?: string | undefined;
2690
2690
  /**
2691
2691
  * <p>The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.</p>
2692
2692
  * @public
2693
2693
  */
2694
- State?: ClusterState;
2694
+ State?: ClusterState | undefined;
2695
2695
  }
2696
2696
  /**
2697
2697
  * @public
@@ -2726,12 +2726,12 @@ export interface DeleteConfigurationResponse {
2726
2726
  * <p>The Amazon Resource Name (ARN) that uniquely identifies an MSK configuration.</p>
2727
2727
  * @public
2728
2728
  */
2729
- Arn?: string;
2729
+ Arn?: string | undefined;
2730
2730
  /**
2731
2731
  * <p>The state of the configuration. The possible states are ACTIVE, DELETING, and DELETE_FAILED. </p>
2732
2732
  * @public
2733
2733
  */
2734
- State?: ConfigurationState;
2734
+ State?: ConfigurationState | undefined;
2735
2735
  }
2736
2736
  /**
2737
2737
  * @public
@@ -2741,7 +2741,7 @@ export interface DeleteReplicatorRequest {
2741
2741
  * <p>The current version of the replicator.</p>
2742
2742
  * @public
2743
2743
  */
2744
- CurrentVersion?: string;
2744
+ CurrentVersion?: string | undefined;
2745
2745
  /**
2746
2746
  * <p>The Amazon Resource Name (ARN) of the replicator to be deleted.</p>
2747
2747
  * @public
@@ -2756,12 +2756,12 @@ export interface DeleteReplicatorResponse {
2756
2756
  * <p>The Amazon Resource Name (ARN) of the replicator.</p>
2757
2757
  * @public
2758
2758
  */
2759
- ReplicatorArn?: string;
2759
+ ReplicatorArn?: string | undefined;
2760
2760
  /**
2761
2761
  * <p>The state of the replicator.</p>
2762
2762
  * @public
2763
2763
  */
2764
- ReplicatorState?: ReplicatorState;
2764
+ ReplicatorState?: ReplicatorState | undefined;
2765
2765
  }
2766
2766
  /**
2767
2767
  * @public
@@ -2781,12 +2781,12 @@ export interface DeleteVpcConnectionResponse {
2781
2781
  * <p>The Amazon Resource Name (ARN) that uniquely identifies an MSK VPC connection.</p>
2782
2782
  * @public
2783
2783
  */
2784
- VpcConnectionArn?: string;
2784
+ VpcConnectionArn?: string | undefined;
2785
2785
  /**
2786
2786
  * <p>The state of the VPC connection.</p>
2787
2787
  * @public
2788
2788
  */
2789
- State?: VpcConnectionState;
2789
+ State?: VpcConnectionState | undefined;
2790
2790
  }
2791
2791
  /**
2792
2792
  * @public
@@ -2806,7 +2806,7 @@ export interface DescribeClusterResponse {
2806
2806
  * <p>The cluster information.</p>
2807
2807
  * @public
2808
2808
  */
2809
- ClusterInfo?: ClusterInfo;
2809
+ ClusterInfo?: ClusterInfo | undefined;
2810
2810
  }
2811
2811
  /**
2812
2812
  * @public
@@ -2826,7 +2826,7 @@ export interface DescribeClusterOperationResponse {
2826
2826
  * <p>Cluster operation information</p>
2827
2827
  * @public
2828
2828
  */
2829
- ClusterOperationInfo?: ClusterOperationInfo;
2829
+ ClusterOperationInfo?: ClusterOperationInfo | undefined;
2830
2830
  }
2831
2831
  /**
2832
2832
  * @public
@@ -2846,7 +2846,7 @@ export interface DescribeClusterOperationV2Response {
2846
2846
  * <p>Cluster operation information</p>
2847
2847
  * @public
2848
2848
  */
2849
- ClusterOperationInfo?: ClusterOperationV2;
2849
+ ClusterOperationInfo?: ClusterOperationV2 | undefined;
2850
2850
  }
2851
2851
  /**
2852
2852
  * @public
@@ -2866,7 +2866,7 @@ export interface DescribeClusterV2Response {
2866
2866
  * <p>The cluster information.</p>
2867
2867
  * @public
2868
2868
  */
2869
- ClusterInfo?: Cluster;
2869
+ ClusterInfo?: Cluster | undefined;
2870
2870
  }
2871
2871
  /**
2872
2872
  * @public
@@ -2886,37 +2886,37 @@ export interface DescribeConfigurationResponse {
2886
2886
  * <p>The Amazon Resource Name (ARN) of the configuration.</p>
2887
2887
  * @public
2888
2888
  */
2889
- Arn?: string;
2889
+ Arn?: string | undefined;
2890
2890
  /**
2891
2891
  * <p>The time when the configuration was created.</p>
2892
2892
  * @public
2893
2893
  */
2894
- CreationTime?: Date;
2894
+ CreationTime?: Date | undefined;
2895
2895
  /**
2896
2896
  * <p>The description of the configuration.</p>
2897
2897
  * @public
2898
2898
  */
2899
- Description?: string;
2899
+ Description?: string | undefined;
2900
2900
  /**
2901
2901
  * <p>The versions of Apache Kafka with which you can use this MSK configuration.</p>
2902
2902
  * @public
2903
2903
  */
2904
- KafkaVersions?: string[];
2904
+ KafkaVersions?: string[] | undefined;
2905
2905
  /**
2906
2906
  * <p>Latest revision of the configuration.</p>
2907
2907
  * @public
2908
2908
  */
2909
- LatestRevision?: ConfigurationRevision;
2909
+ LatestRevision?: ConfigurationRevision | undefined;
2910
2910
  /**
2911
2911
  * <p>The name of the configuration.</p>
2912
2912
  * @public
2913
2913
  */
2914
- Name?: string;
2914
+ Name?: string | undefined;
2915
2915
  /**
2916
2916
  * <p>The state of the configuration. The possible states are ACTIVE, DELETING, and DELETE_FAILED. </p>
2917
2917
  * @public
2918
2918
  */
2919
- State?: ConfigurationState;
2919
+ State?: ConfigurationState | undefined;
2920
2920
  }
2921
2921
  /**
2922
2922
  * @public
@@ -2941,28 +2941,28 @@ export interface DescribeConfigurationRevisionResponse {
2941
2941
  * <p>The Amazon Resource Name (ARN) of the configuration.</p>
2942
2942
  * @public
2943
2943
  */
2944
- Arn?: string;
2944
+ Arn?: string | undefined;
2945
2945
  /**
2946
2946
  * <p>The time when the configuration was created.</p>
2947
2947
  * @public
2948
2948
  */
2949
- CreationTime?: Date;
2949
+ CreationTime?: Date | undefined;
2950
2950
  /**
2951
2951
  * <p>The description of the configuration.</p>
2952
2952
  * @public
2953
2953
  */
2954
- Description?: string;
2954
+ Description?: string | undefined;
2955
2955
  /**
2956
2956
  * <p>The revision number.</p>
2957
2957
  * @public
2958
2958
  */
2959
- Revision?: number;
2959
+ Revision?: number | undefined;
2960
2960
  /**
2961
2961
  * <p>Contents of the <filename>server.properties</filename> file. When using the API, you must ensure that the contents of the file are base64 encoded.
2962
2962
  * When using the AWS Management Console, the SDK, or the AWS CLI, the contents of <filename>server.properties</filename> can be in plaintext.</p>
2963
2963
  * @public
2964
2964
  */
2965
- ServerProperties?: Uint8Array;
2965
+ ServerProperties?: Uint8Array | undefined;
2966
2966
  }
2967
2967
  /**
2968
2968
  * @public
@@ -2983,12 +2983,12 @@ export interface ReplicationStateInfo {
2983
2983
  * Code that describes the current state of the replicator.
2984
2984
  * @public
2985
2985
  */
2986
- Code?: string;
2986
+ Code?: string | undefined;
2987
2987
  /**
2988
2988
  * Message that describes the state of the replicator.
2989
2989
  * @public
2990
2990
  */
2991
- Message?: string;
2991
+ Message?: string | undefined;
2992
2992
  }
2993
2993
  /**
2994
2994
  * @public
@@ -2998,67 +2998,67 @@ export interface DescribeReplicatorResponse {
2998
2998
  * <p>The time when the replicator was created.</p>
2999
2999
  * @public
3000
3000
  */
3001
- CreationTime?: Date;
3001
+ CreationTime?: Date | undefined;
3002
3002
  /**
3003
3003
  * <p>The current version number of the replicator.</p>
3004
3004
  * @public
3005
3005
  */
3006
- CurrentVersion?: string;
3006
+ CurrentVersion?: string | undefined;
3007
3007
  /**
3008
3008
  * <p>Whether this resource is a replicator reference.</p>
3009
3009
  * @public
3010
3010
  */
3011
- IsReplicatorReference?: boolean;
3011
+ IsReplicatorReference?: boolean | undefined;
3012
3012
  /**
3013
3013
  * <p>Kafka Clusters used in setting up sources / targets for replication.</p>
3014
3014
  * @public
3015
3015
  */
3016
- KafkaClusters?: KafkaClusterDescription[];
3016
+ KafkaClusters?: KafkaClusterDescription[] | undefined;
3017
3017
  /**
3018
3018
  * <p>A list of replication configurations, where each configuration targets a given source cluster to target cluster replication flow.</p>
3019
3019
  * @public
3020
3020
  */
3021
- ReplicationInfoList?: ReplicationInfoDescription[];
3021
+ ReplicationInfoList?: ReplicationInfoDescription[] | undefined;
3022
3022
  /**
3023
3023
  * <p>The Amazon Resource Name (ARN) of the replicator.</p>
3024
3024
  * @public
3025
3025
  */
3026
- ReplicatorArn?: string;
3026
+ ReplicatorArn?: string | undefined;
3027
3027
  /**
3028
3028
  * <p>The description of the replicator.</p>
3029
3029
  * @public
3030
3030
  */
3031
- ReplicatorDescription?: string;
3031
+ ReplicatorDescription?: string | undefined;
3032
3032
  /**
3033
3033
  * <p>The name of the replicator.</p>
3034
3034
  * @public
3035
3035
  */
3036
- ReplicatorName?: string;
3036
+ ReplicatorName?: string | undefined;
3037
3037
  /**
3038
3038
  * <p>The Amazon Resource Name (ARN) of the replicator resource in the region where the replicator was created.</p>
3039
3039
  * @public
3040
3040
  */
3041
- ReplicatorResourceArn?: string;
3041
+ ReplicatorResourceArn?: string | undefined;
3042
3042
  /**
3043
3043
  * <p>State of the replicator.</p>
3044
3044
  * @public
3045
3045
  */
3046
- ReplicatorState?: ReplicatorState;
3046
+ ReplicatorState?: ReplicatorState | undefined;
3047
3047
  /**
3048
3048
  * <p>The Amazon Resource Name (ARN) of the IAM role used by the replicator to access resources in the customer's account (e.g source and target clusters)</p>
3049
3049
  * @public
3050
3050
  */
3051
- ServiceExecutionRoleArn?: string;
3051
+ ServiceExecutionRoleArn?: string | undefined;
3052
3052
  /**
3053
3053
  * <p>Details about the state of the replicator.</p>
3054
3054
  * @public
3055
3055
  */
3056
- StateInfo?: ReplicationStateInfo;
3056
+ StateInfo?: ReplicationStateInfo | undefined;
3057
3057
  /**
3058
3058
  * <p>List of tags attached to the Replicator.</p>
3059
3059
  * @public
3060
3060
  */
3061
- Tags?: Record<string, string>;
3061
+ Tags?: Record<string, string> | undefined;
3062
3062
  }
3063
3063
  /**
3064
3064
  * @public
@@ -3078,47 +3078,47 @@ export interface DescribeVpcConnectionResponse {
3078
3078
  * <p>The Amazon Resource Name (ARN) that uniquely identifies a MSK VPC connection.</p>
3079
3079
  * @public
3080
3080
  */
3081
- VpcConnectionArn?: string;
3081
+ VpcConnectionArn?: string | undefined;
3082
3082
  /**
3083
3083
  * <p>The Amazon Resource Name (ARN) that uniquely identifies an MSK cluster.</p>
3084
3084
  * @public
3085
3085
  */
3086
- TargetClusterArn?: string;
3086
+ TargetClusterArn?: string | undefined;
3087
3087
  /**
3088
3088
  * <p>The state of VPC connection.</p>
3089
3089
  * @public
3090
3090
  */
3091
- State?: VpcConnectionState;
3091
+ State?: VpcConnectionState | undefined;
3092
3092
  /**
3093
3093
  * <p>The authentication type of VPC connection.</p>
3094
3094
  * @public
3095
3095
  */
3096
- Authentication?: string;
3096
+ Authentication?: string | undefined;
3097
3097
  /**
3098
3098
  * <p>The VPC Id for the VPC connection.</p>
3099
3099
  * @public
3100
3100
  */
3101
- VpcId?: string;
3101
+ VpcId?: string | undefined;
3102
3102
  /**
3103
3103
  * <p>The list of subnets for the VPC connection.</p>
3104
3104
  * @public
3105
3105
  */
3106
- Subnets?: string[];
3106
+ Subnets?: string[] | undefined;
3107
3107
  /**
3108
3108
  * <p>The list of security groups for the VPC connection.</p>
3109
3109
  * @public
3110
3110
  */
3111
- SecurityGroups?: string[];
3111
+ SecurityGroups?: string[] | undefined;
3112
3112
  /**
3113
3113
  * <p>The creation time of the VPC connection.</p>
3114
3114
  * @public
3115
3115
  */
3116
- CreationTime?: Date;
3116
+ CreationTime?: Date | undefined;
3117
3117
  /**
3118
3118
  * <p>A map of tags for the VPC connection.</p>
3119
3119
  * @public
3120
3120
  */
3121
- Tags?: Record<string, string>;
3121
+ Tags?: Record<string, string> | undefined;
3122
3122
  }
3123
3123
  /**
3124
3124
  * @public
@@ -3138,52 +3138,52 @@ export interface GetBootstrapBrokersResponse {
3138
3138
  * <p>A string containing one or more hostname:port pairs.</p>
3139
3139
  * @public
3140
3140
  */
3141
- BootstrapBrokerString?: string;
3141
+ BootstrapBrokerString?: string | undefined;
3142
3142
  /**
3143
3143
  * <p>A string containing one or more DNS names (or IP) and TLS port pairs.</p>
3144
3144
  * @public
3145
3145
  */
3146
- BootstrapBrokerStringTls?: string;
3146
+ BootstrapBrokerStringTls?: string | undefined;
3147
3147
  /**
3148
3148
  * <p>A string containing one or more DNS names (or IP) and Sasl Scram port pairs.</p>
3149
3149
  * @public
3150
3150
  */
3151
- BootstrapBrokerStringSaslScram?: string;
3151
+ BootstrapBrokerStringSaslScram?: string | undefined;
3152
3152
  /**
3153
3153
  * <p>A string that contains one or more DNS names (or IP addresses) and SASL IAM port pairs.</p>
3154
3154
  * @public
3155
3155
  */
3156
- BootstrapBrokerStringSaslIam?: string;
3156
+ BootstrapBrokerStringSaslIam?: string | undefined;
3157
3157
  /**
3158
3158
  * <p>A string containing one or more DNS names (or IP) and TLS port pairs.</p>
3159
3159
  * @public
3160
3160
  */
3161
- BootstrapBrokerStringPublicTls?: string;
3161
+ BootstrapBrokerStringPublicTls?: string | undefined;
3162
3162
  /**
3163
3163
  * <p>A string containing one or more DNS names (or IP) and Sasl Scram port pairs.</p>
3164
3164
  * @public
3165
3165
  */
3166
- BootstrapBrokerStringPublicSaslScram?: string;
3166
+ BootstrapBrokerStringPublicSaslScram?: string | undefined;
3167
3167
  /**
3168
3168
  * <p>A string that contains one or more DNS names (or IP addresses) and SASL IAM port pairs.</p>
3169
3169
  * @public
3170
3170
  */
3171
- BootstrapBrokerStringPublicSaslIam?: string;
3171
+ BootstrapBrokerStringPublicSaslIam?: string | undefined;
3172
3172
  /**
3173
3173
  * <p>A string containing one or more DNS names (or IP) and TLS port pairs for VPC connectivity.</p>
3174
3174
  * @public
3175
3175
  */
3176
- BootstrapBrokerStringVpcConnectivityTls?: string;
3176
+ BootstrapBrokerStringVpcConnectivityTls?: string | undefined;
3177
3177
  /**
3178
3178
  * <p>A string containing one or more DNS names (or IP) and SASL/SCRAM port pairs for VPC connectivity.</p>
3179
3179
  * @public
3180
3180
  */
3181
- BootstrapBrokerStringVpcConnectivitySaslScram?: string;
3181
+ BootstrapBrokerStringVpcConnectivitySaslScram?: string | undefined;
3182
3182
  /**
3183
3183
  * <p>A string containing one or more DNS names (or IP) and SASL/IAM port pairs for VPC connectivity.</p>
3184
3184
  * @public
3185
3185
  */
3186
- BootstrapBrokerStringVpcConnectivitySaslIam?: string;
3186
+ BootstrapBrokerStringVpcConnectivitySaslIam?: string | undefined;
3187
3187
  }
3188
3188
  /**
3189
3189
  * @public
@@ -3203,12 +3203,12 @@ export interface GetClusterPolicyResponse {
3203
3203
  * <p>The version of cluster policy.</p>
3204
3204
  * @public
3205
3205
  */
3206
- CurrentVersion?: string;
3206
+ CurrentVersion?: string | undefined;
3207
3207
  /**
3208
3208
  * <p>The cluster policy.</p>
3209
3209
  * @public
3210
3210
  */
3211
- Policy?: string;
3211
+ Policy?: string | undefined;
3212
3212
  }
3213
3213
  /**
3214
3214
  * @public
@@ -3218,7 +3218,7 @@ export interface GetCompatibleKafkaVersionsRequest {
3218
3218
  * <p>The Amazon Resource Name (ARN) of the cluster check.</p>
3219
3219
  * @public
3220
3220
  */
3221
- ClusterArn?: string;
3221
+ ClusterArn?: string | undefined;
3222
3222
  }
3223
3223
  /**
3224
3224
  * @public
@@ -3228,7 +3228,7 @@ export interface GetCompatibleKafkaVersionsResponse {
3228
3228
  * <p>A list of CompatibleKafkaVersion objects.</p>
3229
3229
  * @public
3230
3230
  */
3231
- CompatibleKafkaVersions?: CompatibleKafkaVersion[];
3231
+ CompatibleKafkaVersions?: CompatibleKafkaVersion[] | undefined;
3232
3232
  }
3233
3233
  /**
3234
3234
  * @public
@@ -3243,13 +3243,13 @@ export interface ListClientVpcConnectionsRequest {
3243
3243
  * <p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
3244
3244
  * @public
3245
3245
  */
3246
- MaxResults?: number;
3246
+ MaxResults?: number | undefined;
3247
3247
  /**
3248
3248
  * <p>The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
3249
3249
  * To get the next batch, provide this token in your next request.</p>
3250
3250
  * @public
3251
3251
  */
3252
- NextToken?: string;
3252
+ NextToken?: string | undefined;
3253
3253
  }
3254
3254
  /**
3255
3255
  * @public
@@ -3259,13 +3259,13 @@ export interface ListClientVpcConnectionsResponse {
3259
3259
  * <p>List of client VPC connections.</p>
3260
3260
  * @public
3261
3261
  */
3262
- ClientVpcConnections?: ClientVpcConnection[];
3262
+ ClientVpcConnections?: ClientVpcConnection[] | undefined;
3263
3263
  /**
3264
3264
  * <p>The paginated results marker. When the result of a ListClientVpcConnections operation is truncated, the call returns NextToken in the response.
3265
3265
  * To get another batch of configurations, provide this token in your next request.</p>
3266
3266
  * @public
3267
3267
  */
3268
- NextToken?: string;
3268
+ NextToken?: string | undefined;
3269
3269
  }
3270
3270
  /**
3271
3271
  * @public
@@ -3280,13 +3280,13 @@ export interface ListClusterOperationsRequest {
3280
3280
  * <p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
3281
3281
  * @public
3282
3282
  */
3283
- MaxResults?: number;
3283
+ MaxResults?: number | undefined;
3284
3284
  /**
3285
3285
  * <p>The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
3286
3286
  * To get the next batch, provide this token in your next request.</p>
3287
3287
  * @public
3288
3288
  */
3289
- NextToken?: string;
3289
+ NextToken?: string | undefined;
3290
3290
  }
3291
3291
  /**
3292
3292
  * @public
@@ -3296,12 +3296,12 @@ export interface ListClusterOperationsResponse {
3296
3296
  * <p>An array of cluster operation information objects.</p>
3297
3297
  * @public
3298
3298
  */
3299
- ClusterOperationInfoList?: ClusterOperationInfo[];
3299
+ ClusterOperationInfoList?: ClusterOperationInfo[] | undefined;
3300
3300
  /**
3301
3301
  * <p>If the response of ListClusterOperations is truncated, it returns a NextToken in the response. This Nexttoken should be sent in the subsequent request to ListClusterOperations.</p>
3302
3302
  * @public
3303
3303
  */
3304
- NextToken?: string;
3304
+ NextToken?: string | undefined;
3305
3305
  }
3306
3306
  /**
3307
3307
  * @public
@@ -3316,12 +3316,12 @@ export interface ListClusterOperationsV2Request {
3316
3316
  * The maxResults of the query.
3317
3317
  * @public
3318
3318
  */
3319
- MaxResults?: number;
3319
+ MaxResults?: number | undefined;
3320
3320
  /**
3321
3321
  * The nextToken of the query.
3322
3322
  * @public
3323
3323
  */
3324
- NextToken?: string;
3324
+ NextToken?: string | undefined;
3325
3325
  }
3326
3326
  /**
3327
3327
  * @public
@@ -3331,12 +3331,12 @@ export interface ListClusterOperationsV2Response {
3331
3331
  * <p>An array of cluster operation information objects.</p>
3332
3332
  * @public
3333
3333
  */
3334
- ClusterOperationInfoList?: ClusterOperationV2Summary[];
3334
+ ClusterOperationInfoList?: ClusterOperationV2Summary[] | undefined;
3335
3335
  /**
3336
3336
  * <p>If the response of ListClusterOperationsV2 is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListClusterOperationsV2.</p>
3337
3337
  * @public
3338
3338
  */
3339
- NextToken?: string;
3339
+ NextToken?: string | undefined;
3340
3340
  }
3341
3341
  /**
3342
3342
  * @public
@@ -3346,18 +3346,18 @@ export interface ListClustersRequest {
3346
3346
  * <p>Specify a prefix of the name of the clusters that you want to list. The service lists all the clusters whose names start with this prefix.</p>
3347
3347
  * @public
3348
3348
  */
3349
- ClusterNameFilter?: string;
3349
+ ClusterNameFilter?: string | undefined;
3350
3350
  /**
3351
3351
  * <p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
3352
3352
  * @public
3353
3353
  */
3354
- MaxResults?: number;
3354
+ MaxResults?: number | undefined;
3355
3355
  /**
3356
3356
  * <p>The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
3357
3357
  * To get the next batch, provide this token in your next request.</p>
3358
3358
  * @public
3359
3359
  */
3360
- NextToken?: string;
3360
+ NextToken?: string | undefined;
3361
3361
  }
3362
3362
  /**
3363
3363
  * @public
@@ -3367,13 +3367,13 @@ export interface ListClustersResponse {
3367
3367
  * <p>Information on each of the MSK clusters in the response.</p>
3368
3368
  * @public
3369
3369
  */
3370
- ClusterInfoList?: ClusterInfo[];
3370
+ ClusterInfoList?: ClusterInfo[] | undefined;
3371
3371
  /**
3372
3372
  * <p>The paginated results marker. When the result of a ListClusters operation is truncated, the call returns NextToken in the response.
3373
3373
  * To get another batch of clusters, provide this token in your next request.</p>
3374
3374
  * @public
3375
3375
  */
3376
- NextToken?: string;
3376
+ NextToken?: string | undefined;
3377
3377
  }
3378
3378
  /**
3379
3379
  * @public
@@ -3383,23 +3383,23 @@ export interface ListClustersV2Request {
3383
3383
  * <p>Specify a prefix of the names of the clusters that you want to list. The service lists all the clusters whose names start with this prefix.</p>
3384
3384
  * @public
3385
3385
  */
3386
- ClusterNameFilter?: string;
3386
+ ClusterNameFilter?: string | undefined;
3387
3387
  /**
3388
3388
  * <p>Specify either PROVISIONED or SERVERLESS.</p>
3389
3389
  * @public
3390
3390
  */
3391
- ClusterTypeFilter?: string;
3391
+ ClusterTypeFilter?: string | undefined;
3392
3392
  /**
3393
3393
  * <p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
3394
3394
  * @public
3395
3395
  */
3396
- MaxResults?: number;
3396
+ MaxResults?: number | undefined;
3397
3397
  /**
3398
3398
  * <p>The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
3399
3399
  * To get the next batch, provide this token in your next request.</p>
3400
3400
  * @public
3401
3401
  */
3402
- NextToken?: string;
3402
+ NextToken?: string | undefined;
3403
3403
  }
3404
3404
  /**
3405
3405
  * @public
@@ -3409,13 +3409,13 @@ export interface ListClustersV2Response {
3409
3409
  * <p>Information on each of the MSK clusters in the response.</p>
3410
3410
  * @public
3411
3411
  */
3412
- ClusterInfoList?: Cluster[];
3412
+ ClusterInfoList?: Cluster[] | undefined;
3413
3413
  /**
3414
3414
  * <p>The paginated results marker. When the result of a ListClusters operation is truncated, the call returns NextToken in the response.
3415
3415
  * To get another batch of clusters, provide this token in your next request.</p>
3416
3416
  * @public
3417
3417
  */
3418
- NextToken?: string;
3418
+ NextToken?: string | undefined;
3419
3419
  }
3420
3420
  /**
3421
3421
  * @public
@@ -3430,13 +3430,13 @@ export interface ListConfigurationRevisionsRequest {
3430
3430
  * <p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
3431
3431
  * @public
3432
3432
  */
3433
- MaxResults?: number;
3433
+ MaxResults?: number | undefined;
3434
3434
  /**
3435
3435
  * <p>The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
3436
3436
  * To get the next batch, provide this token in your next request.</p>
3437
3437
  * @public
3438
3438
  */
3439
- NextToken?: string;
3439
+ NextToken?: string | undefined;
3440
3440
  }
3441
3441
  /**
3442
3442
  * @public
@@ -3446,12 +3446,12 @@ export interface ListConfigurationRevisionsResponse {
3446
3446
  * <p>Paginated results marker.</p>
3447
3447
  * @public
3448
3448
  */
3449
- NextToken?: string;
3449
+ NextToken?: string | undefined;
3450
3450
  /**
3451
3451
  * <p>List of ConfigurationRevision objects.</p>
3452
3452
  * @public
3453
3453
  */
3454
- Revisions?: ConfigurationRevision[];
3454
+ Revisions?: ConfigurationRevision[] | undefined;
3455
3455
  }
3456
3456
  /**
3457
3457
  * @public
@@ -3461,13 +3461,13 @@ export interface ListConfigurationsRequest {
3461
3461
  * <p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
3462
3462
  * @public
3463
3463
  */
3464
- MaxResults?: number;
3464
+ MaxResults?: number | undefined;
3465
3465
  /**
3466
3466
  * <p>The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
3467
3467
  * To get the next batch, provide this token in your next request.</p>
3468
3468
  * @public
3469
3469
  */
3470
- NextToken?: string;
3470
+ NextToken?: string | undefined;
3471
3471
  }
3472
3472
  /**
3473
3473
  * @public
@@ -3477,13 +3477,13 @@ export interface ListConfigurationsResponse {
3477
3477
  * <p>An array of MSK configurations.</p>
3478
3478
  * @public
3479
3479
  */
3480
- Configurations?: Configuration[];
3480
+ Configurations?: Configuration[] | undefined;
3481
3481
  /**
3482
3482
  * <p>The paginated results marker. When the result of a ListConfigurations operation is truncated, the call returns NextToken in the response.
3483
3483
  * To get another batch of configurations, provide this token in your next request.</p>
3484
3484
  * @public
3485
3485
  */
3486
- NextToken?: string;
3486
+ NextToken?: string | undefined;
3487
3487
  }
3488
3488
  /**
3489
3489
  * @public
@@ -3493,19 +3493,19 @@ export interface ListKafkaVersionsRequest {
3493
3493
  * <p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
3494
3494
  * @public
3495
3495
  */
3496
- MaxResults?: number;
3496
+ MaxResults?: number | undefined;
3497
3497
  /**
3498
3498
  * <p>The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.</p>
3499
3499
  * @public
3500
3500
  */
3501
- NextToken?: string;
3501
+ NextToken?: string | undefined;
3502
3502
  }
3503
3503
  /**
3504
3504
  * @public
3505
3505
  */
3506
3506
  export interface ListKafkaVersionsResponse {
3507
- KafkaVersions?: KafkaVersion[];
3508
- NextToken?: string;
3507
+ KafkaVersions?: KafkaVersion[] | undefined;
3508
+ NextToken?: string | undefined;
3509
3509
  }
3510
3510
  /**
3511
3511
  * @public
@@ -3520,13 +3520,13 @@ export interface ListNodesRequest {
3520
3520
  * <p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
3521
3521
  * @public
3522
3522
  */
3523
- MaxResults?: number;
3523
+ MaxResults?: number | undefined;
3524
3524
  /**
3525
3525
  * <p>The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
3526
3526
  * To get the next batch, provide this token in your next request.</p>
3527
3527
  * @public
3528
3528
  */
3529
- NextToken?: string;
3529
+ NextToken?: string | undefined;
3530
3530
  }
3531
3531
  /**
3532
3532
  * @public
@@ -3537,12 +3537,12 @@ export interface ListNodesResponse {
3537
3537
  * To get another batch of nodes, provide this token in your next request.</p>
3538
3538
  * @public
3539
3539
  */
3540
- NextToken?: string;
3540
+ NextToken?: string | undefined;
3541
3541
  /**
3542
3542
  * <p>List containing a NodeInfo object.</p>
3543
3543
  * @public
3544
3544
  */
3545
- NodeInfoList?: NodeInfo[];
3545
+ NodeInfoList?: NodeInfo[] | undefined;
3546
3546
  }
3547
3547
  /**
3548
3548
  * @public
@@ -3552,17 +3552,17 @@ export interface ListReplicatorsRequest {
3552
3552
  * <p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
3553
3553
  * @public
3554
3554
  */
3555
- MaxResults?: number;
3555
+ MaxResults?: number | undefined;
3556
3556
  /**
3557
3557
  * <p>If the response of ListReplicators is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListReplicators.</p>
3558
3558
  * @public
3559
3559
  */
3560
- NextToken?: string;
3560
+ NextToken?: string | undefined;
3561
3561
  /**
3562
3562
  * <p>Returns replicators starting with given name.</p>
3563
3563
  * @public
3564
3564
  */
3565
- ReplicatorNameFilter?: string;
3565
+ ReplicatorNameFilter?: string | undefined;
3566
3566
  }
3567
3567
  /**
3568
3568
  * @public
@@ -3572,12 +3572,12 @@ export interface ListReplicatorsResponse {
3572
3572
  * <p>If the response of ListReplicators is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListReplicators.</p>
3573
3573
  * @public
3574
3574
  */
3575
- NextToken?: string;
3575
+ NextToken?: string | undefined;
3576
3576
  /**
3577
3577
  * <p>List containing information of each of the replicators in the account.</p>
3578
3578
  * @public
3579
3579
  */
3580
- Replicators?: ReplicatorSummary[];
3580
+ Replicators?: ReplicatorSummary[] | undefined;
3581
3581
  }
3582
3582
  /**
3583
3583
  * @public
@@ -3592,12 +3592,12 @@ export interface ListScramSecretsRequest {
3592
3592
  * <p>The maxResults of the query.</p>
3593
3593
  * @public
3594
3594
  */
3595
- MaxResults?: number;
3595
+ MaxResults?: number | undefined;
3596
3596
  /**
3597
3597
  * <p>The nextToken of the query.</p>
3598
3598
  * @public
3599
3599
  */
3600
- NextToken?: string;
3600
+ NextToken?: string | undefined;
3601
3601
  }
3602
3602
  /**
3603
3603
  * @public
@@ -3607,12 +3607,12 @@ export interface ListScramSecretsResponse {
3607
3607
  * <p>Paginated results marker.</p>
3608
3608
  * @public
3609
3609
  */
3610
- NextToken?: string;
3610
+ NextToken?: string | undefined;
3611
3611
  /**
3612
3612
  * <p>The list of scram secrets associated with the cluster.</p>
3613
3613
  * @public
3614
3614
  */
3615
- SecretArnList?: string[];
3615
+ SecretArnList?: string[] | undefined;
3616
3616
  }
3617
3617
  /**
3618
3618
  * @public
@@ -3632,7 +3632,7 @@ export interface ListTagsForResourceResponse {
3632
3632
  * <p>The key-value pair for the resource tag.</p>
3633
3633
  * @public
3634
3634
  */
3635
- Tags?: Record<string, string>;
3635
+ Tags?: Record<string, string> | undefined;
3636
3636
  }
3637
3637
  /**
3638
3638
  * @public
@@ -3642,13 +3642,13 @@ export interface ListVpcConnectionsRequest {
3642
3642
  * <p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
3643
3643
  * @public
3644
3644
  */
3645
- MaxResults?: number;
3645
+ MaxResults?: number | undefined;
3646
3646
  /**
3647
3647
  * <p>The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
3648
3648
  * To get the next batch, provide this token in your next request.</p>
3649
3649
  * @public
3650
3650
  */
3651
- NextToken?: string;
3651
+ NextToken?: string | undefined;
3652
3652
  }
3653
3653
  /**
3654
3654
  * @public
@@ -3658,13 +3658,13 @@ export interface ListVpcConnectionsResponse {
3658
3658
  * <p>List of VPC connections.</p>
3659
3659
  * @public
3660
3660
  */
3661
- VpcConnections?: VpcConnection[];
3661
+ VpcConnections?: VpcConnection[] | undefined;
3662
3662
  /**
3663
3663
  * <p>The paginated results marker. When the result of a ListClientVpcConnections operation is truncated, the call returns NextToken in the response.
3664
3664
  * To get another batch of configurations, provide this token in your next request.</p>
3665
3665
  * @public
3666
3666
  */
3667
- NextToken?: string;
3667
+ NextToken?: string | undefined;
3668
3668
  }
3669
3669
  /**
3670
3670
  * @public
@@ -3679,7 +3679,7 @@ export interface PutClusterPolicyRequest {
3679
3679
  * <p>The policy version.</p>
3680
3680
  * @public
3681
3681
  */
3682
- CurrentVersion?: string;
3682
+ CurrentVersion?: string | undefined;
3683
3683
  /**
3684
3684
  * <p>The policy.</p>
3685
3685
  * @public
@@ -3694,7 +3694,7 @@ export interface PutClusterPolicyResponse {
3694
3694
  * <p>The policy version.</p>
3695
3695
  * @public
3696
3696
  */
3697
- CurrentVersion?: string;
3697
+ CurrentVersion?: string | undefined;
3698
3698
  }
3699
3699
  /**
3700
3700
  * Reboots a node.
@@ -3720,12 +3720,12 @@ export interface RebootBrokerResponse {
3720
3720
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
3721
3721
  * @public
3722
3722
  */
3723
- ClusterArn?: string;
3723
+ ClusterArn?: string | undefined;
3724
3724
  /**
3725
3725
  * <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
3726
3726
  * @public
3727
3727
  */
3728
- ClusterOperationArn?: string;
3728
+ ClusterOperationArn?: string | undefined;
3729
3729
  }
3730
3730
  /**
3731
3731
  * @public
@@ -3824,12 +3824,12 @@ export interface UpdateBrokerCountResponse {
3824
3824
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
3825
3825
  * @public
3826
3826
  */
3827
- ClusterArn?: string;
3827
+ ClusterArn?: string | undefined;
3828
3828
  /**
3829
3829
  * <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
3830
3830
  * @public
3831
3831
  */
3832
- ClusterOperationArn?: string;
3832
+ ClusterOperationArn?: string | undefined;
3833
3833
  }
3834
3834
  /**
3835
3835
  * @public
@@ -3859,12 +3859,12 @@ export interface UpdateBrokerStorageResponse {
3859
3859
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
3860
3860
  * @public
3861
3861
  */
3862
- ClusterArn?: string;
3862
+ ClusterArn?: string | undefined;
3863
3863
  /**
3864
3864
  * <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
3865
3865
  * @public
3866
3866
  */
3867
- ClusterOperationArn?: string;
3867
+ ClusterOperationArn?: string | undefined;
3868
3868
  }
3869
3869
  /**
3870
3870
  * @public
@@ -3894,12 +3894,12 @@ export interface UpdateBrokerTypeResponse {
3894
3894
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
3895
3895
  * @public
3896
3896
  */
3897
- ClusterArn?: string;
3897
+ ClusterArn?: string | undefined;
3898
3898
  /**
3899
3899
  * <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
3900
3900
  * @public
3901
3901
  */
3902
- ClusterOperationArn?: string;
3902
+ ClusterOperationArn?: string | undefined;
3903
3903
  }
3904
3904
  /**
3905
3905
  * @public
@@ -3929,12 +3929,12 @@ export interface UpdateClusterConfigurationResponse {
3929
3929
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
3930
3930
  * @public
3931
3931
  */
3932
- ClusterArn?: string;
3932
+ ClusterArn?: string | undefined;
3933
3933
  /**
3934
3934
  * <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
3935
3935
  * @public
3936
3936
  */
3937
- ClusterOperationArn?: string;
3937
+ ClusterOperationArn?: string | undefined;
3938
3938
  }
3939
3939
  /**
3940
3940
  * @public
@@ -3949,7 +3949,7 @@ export interface UpdateClusterKafkaVersionRequest {
3949
3949
  * <p>The custom configuration that should be applied on the new version of cluster.</p>
3950
3950
  * @public
3951
3951
  */
3952
- ConfigurationInfo?: ConfigurationInfo;
3952
+ ConfigurationInfo?: ConfigurationInfo | undefined;
3953
3953
  /**
3954
3954
  * <p>Current cluster version.</p>
3955
3955
  * @public
@@ -3969,12 +3969,12 @@ export interface UpdateClusterKafkaVersionResponse {
3969
3969
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
3970
3970
  * @public
3971
3971
  */
3972
- ClusterArn?: string;
3972
+ ClusterArn?: string | undefined;
3973
3973
  /**
3974
3974
  * <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
3975
3975
  * @public
3976
3976
  */
3977
- ClusterOperationArn?: string;
3977
+ ClusterOperationArn?: string | undefined;
3978
3978
  }
3979
3979
  /**
3980
3980
  * @public
@@ -3989,7 +3989,7 @@ export interface UpdateConfigurationRequest {
3989
3989
  * <p>The description of the configuration revision.</p>
3990
3990
  * @public
3991
3991
  */
3992
- Description?: string;
3992
+ Description?: string | undefined;
3993
3993
  /**
3994
3994
  * <p>Contents of the <filename>server.properties</filename> file. When using the API, you must ensure that the contents of the file are base64 encoded.
3995
3995
  * When using the AWS Management Console, the SDK, or the AWS CLI, the contents of <filename>server.properties</filename> can be in plaintext.</p>
@@ -4005,12 +4005,12 @@ export interface UpdateConfigurationResponse {
4005
4005
  * <p>The Amazon Resource Name (ARN) of the configuration.</p>
4006
4006
  * @public
4007
4007
  */
4008
- Arn?: string;
4008
+ Arn?: string | undefined;
4009
4009
  /**
4010
4010
  * <p>Latest revision of the configuration.</p>
4011
4011
  * @public
4012
4012
  */
4013
- LatestRevision?: ConfigurationRevision;
4013
+ LatestRevision?: ConfigurationRevision | undefined;
4014
4014
  }
4015
4015
  /**
4016
4016
  * Request body for UpdateConnectivity.
@@ -4041,12 +4041,12 @@ export interface UpdateConnectivityResponse {
4041
4041
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
4042
4042
  * @public
4043
4043
  */
4044
- ClusterArn?: string;
4044
+ ClusterArn?: string | undefined;
4045
4045
  /**
4046
4046
  * <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
4047
4047
  * @public
4048
4048
  */
4049
- ClusterOperationArn?: string;
4049
+ ClusterOperationArn?: string | undefined;
4050
4050
  }
4051
4051
  /**
4052
4052
  * Request body for UpdateMonitoring.
@@ -4067,13 +4067,13 @@ export interface UpdateMonitoringRequest {
4067
4067
  * <p>Specifies which Apache Kafka metrics Amazon MSK gathers and sends to Amazon CloudWatch for this cluster.</p>
4068
4068
  * @public
4069
4069
  */
4070
- EnhancedMonitoring?: EnhancedMonitoring;
4070
+ EnhancedMonitoring?: EnhancedMonitoring | undefined;
4071
4071
  /**
4072
4072
  * <p>The settings for open monitoring.</p>
4073
4073
  * @public
4074
4074
  */
4075
- OpenMonitoring?: OpenMonitoringInfo;
4076
- LoggingInfo?: LoggingInfo;
4075
+ OpenMonitoring?: OpenMonitoringInfo | undefined;
4076
+ LoggingInfo?: LoggingInfo | undefined;
4077
4077
  }
4078
4078
  /**
4079
4079
  * @public
@@ -4083,12 +4083,12 @@ export interface UpdateMonitoringResponse {
4083
4083
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
4084
4084
  * @public
4085
4085
  */
4086
- ClusterArn?: string;
4086
+ ClusterArn?: string | undefined;
4087
4087
  /**
4088
4088
  * <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
4089
4089
  * @public
4090
4090
  */
4091
- ClusterOperationArn?: string;
4091
+ ClusterOperationArn?: string | undefined;
4092
4092
  }
4093
4093
  /**
4094
4094
  * <p>Details for updating the topic replication of a replicator.</p>
@@ -4130,7 +4130,7 @@ export interface UpdateReplicationInfoRequest {
4130
4130
  * <p>Updated consumer group replication information.</p>
4131
4131
  * @public
4132
4132
  */
4133
- ConsumerGroupReplication?: ConsumerGroupReplicationUpdate;
4133
+ ConsumerGroupReplication?: ConsumerGroupReplicationUpdate | undefined;
4134
4134
  /**
4135
4135
  * <p>Current replicator version.</p>
4136
4136
  * @public
@@ -4155,7 +4155,7 @@ export interface UpdateReplicationInfoRequest {
4155
4155
  * <p>Updated topic replication information.</p>
4156
4156
  * @public
4157
4157
  */
4158
- TopicReplication?: TopicReplicationUpdate;
4158
+ TopicReplication?: TopicReplicationUpdate | undefined;
4159
4159
  }
4160
4160
  /**
4161
4161
  * @public
@@ -4165,12 +4165,12 @@ export interface UpdateReplicationInfoResponse {
4165
4165
  * <p>The Amazon Resource Name (ARN) of the replicator.</p>
4166
4166
  * @public
4167
4167
  */
4168
- ReplicatorArn?: string;
4168
+ ReplicatorArn?: string | undefined;
4169
4169
  /**
4170
4170
  * <p>State of the replicator.</p>
4171
4171
  * @public
4172
4172
  */
4173
- ReplicatorState?: ReplicatorState;
4173
+ ReplicatorState?: ReplicatorState | undefined;
4174
4174
  }
4175
4175
  /**
4176
4176
  * @public
@@ -4180,7 +4180,7 @@ export interface UpdateSecurityRequest {
4180
4180
  * <p>Includes all client authentication related information.</p>
4181
4181
  * @public
4182
4182
  */
4183
- ClientAuthentication?: ClientAuthentication;
4183
+ ClientAuthentication?: ClientAuthentication | undefined;
4184
4184
  /**
4185
4185
  * <p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>
4186
4186
  * @public
@@ -4195,7 +4195,7 @@ export interface UpdateSecurityRequest {
4195
4195
  * <p>Includes all encryption-related information.</p>
4196
4196
  * @public
4197
4197
  */
4198
- EncryptionInfo?: EncryptionInfo;
4198
+ EncryptionInfo?: EncryptionInfo | undefined;
4199
4199
  }
4200
4200
  /**
4201
4201
  * @public
@@ -4205,12 +4205,12 @@ export interface UpdateSecurityResponse {
4205
4205
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
4206
4206
  * @public
4207
4207
  */
4208
- ClusterArn?: string;
4208
+ ClusterArn?: string | undefined;
4209
4209
  /**
4210
4210
  * <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
4211
4211
  * @public
4212
4212
  */
4213
- ClusterOperationArn?: string;
4213
+ ClusterOperationArn?: string | undefined;
4214
4214
  }
4215
4215
  /**
4216
4216
  * <p>Request object for UpdateStorage api. Its used to update the storage attributes for the cluster.</p>
@@ -4231,17 +4231,17 @@ export interface UpdateStorageRequest {
4231
4231
  * <p>EBS volume provisioned throughput information.</p>
4232
4232
  * @public
4233
4233
  */
4234
- ProvisionedThroughput?: ProvisionedThroughput;
4234
+ ProvisionedThroughput?: ProvisionedThroughput | undefined;
4235
4235
  /**
4236
4236
  * <p>Controls storage mode for supported storage tiers.</p>
4237
4237
  * @public
4238
4238
  */
4239
- StorageMode?: StorageMode;
4239
+ StorageMode?: StorageMode | undefined;
4240
4240
  /**
4241
4241
  * <p>size of the EBS volume to update.</p>
4242
4242
  * @public
4243
4243
  */
4244
- VolumeSizeGB?: number;
4244
+ VolumeSizeGB?: number | undefined;
4245
4245
  }
4246
4246
  /**
4247
4247
  * @public
@@ -4251,10 +4251,10 @@ export interface UpdateStorageResponse {
4251
4251
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
4252
4252
  * @public
4253
4253
  */
4254
- ClusterArn?: string;
4254
+ ClusterArn?: string | undefined;
4255
4255
  /**
4256
4256
  * <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
4257
4257
  * @public
4258
4258
  */
4259
- ClusterOperationArn?: string;
4259
+ ClusterOperationArn?: string | undefined;
4260
4260
  }