aws-sdk-kafka 1.67.0 → 1.68.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,1368 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::Kafka
9
+ module Types
10
+
11
+ class AmazonMskCluster
12
+ attr_accessor msk_cluster_arn: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class BatchAssociateScramSecretRequest
17
+ attr_accessor cluster_arn: ::String
18
+ attr_accessor secret_arn_list: ::Array[::String]
19
+ SENSITIVE: []
20
+ end
21
+
22
+ class BatchAssociateScramSecretResponse
23
+ attr_accessor cluster_arn: ::String
24
+ attr_accessor unprocessed_scram_secrets: ::Array[Types::UnprocessedScramSecret]
25
+ SENSITIVE: []
26
+ end
27
+
28
+ class BadRequestException
29
+ attr_accessor invalid_parameter: ::String
30
+ attr_accessor message: ::String
31
+ SENSITIVE: []
32
+ end
33
+
34
+ class BrokerEBSVolumeInfo
35
+ attr_accessor kafka_broker_node_id: ::String
36
+ attr_accessor provisioned_throughput: Types::ProvisionedThroughput
37
+ attr_accessor volume_size_gb: ::Integer
38
+ SENSITIVE: []
39
+ end
40
+
41
+ class BrokerLogs
42
+ attr_accessor cloud_watch_logs: Types::CloudWatchLogs
43
+ attr_accessor firehose: Types::Firehose
44
+ attr_accessor s3: Types::S3
45
+ SENSITIVE: []
46
+ end
47
+
48
+ class BrokerNodeGroupInfo
49
+ attr_accessor broker_az_distribution: ("DEFAULT")
50
+ attr_accessor client_subnets: ::Array[::String]
51
+ attr_accessor instance_type: ::String
52
+ attr_accessor security_groups: ::Array[::String]
53
+ attr_accessor storage_info: Types::StorageInfo
54
+ attr_accessor connectivity_info: Types::ConnectivityInfo
55
+ attr_accessor zone_ids: ::Array[::String]
56
+ SENSITIVE: []
57
+ end
58
+
59
+ class BrokerNodeInfo
60
+ attr_accessor attached_eni_id: ::String
61
+ attr_accessor broker_id: ::Float
62
+ attr_accessor client_subnet: ::String
63
+ attr_accessor client_vpc_ip_address: ::String
64
+ attr_accessor current_broker_software_info: Types::BrokerSoftwareInfo
65
+ attr_accessor endpoints: ::Array[::String]
66
+ SENSITIVE: []
67
+ end
68
+
69
+ class BrokerSoftwareInfo
70
+ attr_accessor configuration_arn: ::String
71
+ attr_accessor configuration_revision: ::Integer
72
+ attr_accessor kafka_version: ::String
73
+ SENSITIVE: []
74
+ end
75
+
76
+ class ClientAuthentication
77
+ attr_accessor sasl: Types::Sasl
78
+ attr_accessor tls: Types::Tls
79
+ attr_accessor unauthenticated: Types::Unauthenticated
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class VpcConnectivityClientAuthentication
84
+ attr_accessor sasl: Types::VpcConnectivitySasl
85
+ attr_accessor tls: Types::VpcConnectivityTls
86
+ SENSITIVE: []
87
+ end
88
+
89
+ class CloudWatchLogs
90
+ attr_accessor enabled: bool
91
+ attr_accessor log_group: ::String
92
+ SENSITIVE: []
93
+ end
94
+
95
+ class ClusterInfo
96
+ attr_accessor active_operation_arn: ::String
97
+ attr_accessor broker_node_group_info: Types::BrokerNodeGroupInfo
98
+ attr_accessor client_authentication: Types::ClientAuthentication
99
+ attr_accessor cluster_arn: ::String
100
+ attr_accessor cluster_name: ::String
101
+ attr_accessor creation_time: ::Time
102
+ attr_accessor current_broker_software_info: Types::BrokerSoftwareInfo
103
+ attr_accessor logging_info: Types::LoggingInfo
104
+ attr_accessor current_version: ::String
105
+ attr_accessor encryption_info: Types::EncryptionInfo
106
+ attr_accessor enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION")
107
+ attr_accessor number_of_broker_nodes: ::Integer
108
+ attr_accessor open_monitoring: Types::OpenMonitoring
109
+ attr_accessor state: ("ACTIVE" | "CREATING" | "DELETING" | "FAILED" | "HEALING" | "MAINTENANCE" | "REBOOTING_BROKER" | "UPDATING")
110
+ attr_accessor state_info: Types::StateInfo
111
+ attr_accessor tags: ::Hash[::String, ::String]
112
+ attr_accessor zookeeper_connect_string: ::String
113
+ attr_accessor zookeeper_connect_string_tls: ::String
114
+ attr_accessor storage_mode: ("LOCAL" | "TIERED")
115
+ attr_accessor customer_action_status: ("CRITICAL_ACTION_REQUIRED" | "ACTION_RECOMMENDED" | "NONE")
116
+ SENSITIVE: []
117
+ end
118
+
119
+ class ClusterOperationInfo
120
+ attr_accessor client_request_id: ::String
121
+ attr_accessor cluster_arn: ::String
122
+ attr_accessor creation_time: ::Time
123
+ attr_accessor end_time: ::Time
124
+ attr_accessor error_info: Types::ErrorInfo
125
+ attr_accessor operation_steps: ::Array[Types::ClusterOperationStep]
126
+ attr_accessor operation_arn: ::String
127
+ attr_accessor operation_state: ::String
128
+ attr_accessor operation_type: ::String
129
+ attr_accessor source_cluster_info: Types::MutableClusterInfo
130
+ attr_accessor target_cluster_info: Types::MutableClusterInfo
131
+ attr_accessor vpc_connection_info: Types::VpcConnectionInfo
132
+ SENSITIVE: []
133
+ end
134
+
135
+ class ClusterOperationStep
136
+ attr_accessor step_info: Types::ClusterOperationStepInfo
137
+ attr_accessor step_name: ::String
138
+ SENSITIVE: []
139
+ end
140
+
141
+ class ClusterOperationStepInfo
142
+ attr_accessor step_status: ::String
143
+ SENSITIVE: []
144
+ end
145
+
146
+ class ClusterOperationV2
147
+ attr_accessor cluster_arn: ::String
148
+ attr_accessor cluster_type: ("PROVISIONED" | "SERVERLESS")
149
+ attr_accessor start_time: ::Time
150
+ attr_accessor end_time: ::Time
151
+ attr_accessor operation_arn: ::String
152
+ attr_accessor operation_state: ::String
153
+ attr_accessor operation_type: ::String
154
+ attr_accessor provisioned: Types::ClusterOperationV2Provisioned
155
+ attr_accessor serverless: Types::ClusterOperationV2Serverless
156
+ SENSITIVE: []
157
+ end
158
+
159
+ class ClusterOperationV2Provisioned
160
+ attr_accessor operation_steps: ::Array[Types::ClusterOperationStep]
161
+ attr_accessor source_cluster_info: Types::MutableClusterInfo
162
+ attr_accessor target_cluster_info: Types::MutableClusterInfo
163
+ attr_accessor vpc_connection_info: Types::VpcConnectionInfo
164
+ SENSITIVE: []
165
+ end
166
+
167
+ class ClusterOperationV2Serverless
168
+ attr_accessor vpc_connection_info: Types::VpcConnectionInfoServerless
169
+ SENSITIVE: []
170
+ end
171
+
172
+ class ClusterOperationV2Summary
173
+ attr_accessor cluster_arn: ::String
174
+ attr_accessor cluster_type: ("PROVISIONED" | "SERVERLESS")
175
+ attr_accessor start_time: ::Time
176
+ attr_accessor end_time: ::Time
177
+ attr_accessor operation_arn: ::String
178
+ attr_accessor operation_state: ::String
179
+ attr_accessor operation_type: ::String
180
+ SENSITIVE: []
181
+ end
182
+
183
+ class ClientVpcConnection
184
+ attr_accessor authentication: ::String
185
+ attr_accessor creation_time: ::Time
186
+ attr_accessor state: ("CREATING" | "AVAILABLE" | "INACTIVE" | "DEACTIVATING" | "DELETING" | "FAILED" | "REJECTED" | "REJECTING")
187
+ attr_accessor vpc_connection_arn: ::String
188
+ attr_accessor owner: ::String
189
+ SENSITIVE: []
190
+ end
191
+
192
+ class VpcConnection
193
+ attr_accessor vpc_connection_arn: ::String
194
+ attr_accessor target_cluster_arn: ::String
195
+ attr_accessor creation_time: ::Time
196
+ attr_accessor authentication: ::String
197
+ attr_accessor vpc_id: ::String
198
+ attr_accessor state: ("CREATING" | "AVAILABLE" | "INACTIVE" | "DEACTIVATING" | "DELETING" | "FAILED" | "REJECTED" | "REJECTING")
199
+ SENSITIVE: []
200
+ end
201
+
202
+ class CompatibleKafkaVersion
203
+ attr_accessor source_version: ::String
204
+ attr_accessor target_versions: ::Array[::String]
205
+ SENSITIVE: []
206
+ end
207
+
208
+ class Configuration
209
+ attr_accessor arn: ::String
210
+ attr_accessor creation_time: ::Time
211
+ attr_accessor description: ::String
212
+ attr_accessor kafka_versions: ::Array[::String]
213
+ attr_accessor latest_revision: Types::ConfigurationRevision
214
+ attr_accessor name: ::String
215
+ attr_accessor state: ("ACTIVE" | "DELETING" | "DELETE_FAILED")
216
+ SENSITIVE: []
217
+ end
218
+
219
+ class ConfigurationInfo
220
+ attr_accessor arn: ::String
221
+ attr_accessor revision: ::Integer
222
+ SENSITIVE: []
223
+ end
224
+
225
+ class ConfigurationRevision
226
+ attr_accessor creation_time: ::Time
227
+ attr_accessor description: ::String
228
+ attr_accessor revision: ::Integer
229
+ SENSITIVE: []
230
+ end
231
+
232
+ class ConflictException
233
+ attr_accessor invalid_parameter: ::String
234
+ attr_accessor message: ::String
235
+ SENSITIVE: []
236
+ end
237
+
238
+ class ConnectivityInfo
239
+ attr_accessor public_access: Types::PublicAccess
240
+ attr_accessor vpc_connectivity: Types::VpcConnectivity
241
+ SENSITIVE: []
242
+ end
243
+
244
+ class ConsumerGroupReplication
245
+ attr_accessor consumer_groups_to_exclude: ::Array[::String]
246
+ attr_accessor consumer_groups_to_replicate: ::Array[::String]
247
+ attr_accessor detect_and_copy_new_consumer_groups: bool
248
+ attr_accessor synchronise_consumer_group_offsets: bool
249
+ SENSITIVE: []
250
+ end
251
+
252
+ class ConsumerGroupReplicationUpdate
253
+ attr_accessor consumer_groups_to_exclude: ::Array[::String]
254
+ attr_accessor consumer_groups_to_replicate: ::Array[::String]
255
+ attr_accessor detect_and_copy_new_consumer_groups: bool
256
+ attr_accessor synchronise_consumer_group_offsets: bool
257
+ SENSITIVE: []
258
+ end
259
+
260
+ class CreateClusterRequest
261
+ attr_accessor broker_node_group_info: Types::BrokerNodeGroupInfo
262
+ attr_accessor client_authentication: Types::ClientAuthentication
263
+ attr_accessor cluster_name: ::String
264
+ attr_accessor configuration_info: Types::ConfigurationInfo
265
+ attr_accessor encryption_info: Types::EncryptionInfo
266
+ attr_accessor enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION")
267
+ attr_accessor kafka_version: ::String
268
+ attr_accessor logging_info: Types::LoggingInfo
269
+ attr_accessor number_of_broker_nodes: ::Integer
270
+ attr_accessor open_monitoring: Types::OpenMonitoringInfo
271
+ attr_accessor tags: ::Hash[::String, ::String]
272
+ attr_accessor storage_mode: ("LOCAL" | "TIERED")
273
+ SENSITIVE: []
274
+ end
275
+
276
+ class CreateClusterResponse
277
+ attr_accessor cluster_arn: ::String
278
+ attr_accessor cluster_name: ::String
279
+ attr_accessor state: ("ACTIVE" | "CREATING" | "DELETING" | "FAILED" | "HEALING" | "MAINTENANCE" | "REBOOTING_BROKER" | "UPDATING")
280
+ SENSITIVE: []
281
+ end
282
+
283
+ class CreateConfigurationRequest
284
+ attr_accessor description: ::String
285
+ attr_accessor kafka_versions: ::Array[::String]
286
+ attr_accessor name: ::String
287
+ attr_accessor server_properties: ::String
288
+ SENSITIVE: []
289
+ end
290
+
291
+ class CreateConfigurationResponse
292
+ attr_accessor arn: ::String
293
+ attr_accessor creation_time: ::Time
294
+ attr_accessor latest_revision: Types::ConfigurationRevision
295
+ attr_accessor name: ::String
296
+ attr_accessor state: ("ACTIVE" | "DELETING" | "DELETE_FAILED")
297
+ SENSITIVE: []
298
+ end
299
+
300
+ class CreateReplicatorRequest
301
+ attr_accessor description: ::String
302
+ attr_accessor kafka_clusters: ::Array[Types::KafkaCluster]
303
+ attr_accessor replication_info_list: ::Array[Types::ReplicationInfo]
304
+ attr_accessor replicator_name: ::String
305
+ attr_accessor service_execution_role_arn: ::String
306
+ attr_accessor tags: ::Hash[::String, ::String]
307
+ SENSITIVE: []
308
+ end
309
+
310
+ class CreateReplicatorResponse
311
+ attr_accessor replicator_arn: ::String
312
+ attr_accessor replicator_name: ::String
313
+ attr_accessor replicator_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
314
+ SENSITIVE: []
315
+ end
316
+
317
+ class CreateVpcConnectionRequest
318
+ attr_accessor target_cluster_arn: ::String
319
+ attr_accessor authentication: ::String
320
+ attr_accessor vpc_id: ::String
321
+ attr_accessor client_subnets: ::Array[::String]
322
+ attr_accessor security_groups: ::Array[::String]
323
+ attr_accessor tags: ::Hash[::String, ::String]
324
+ SENSITIVE: []
325
+ end
326
+
327
+ class CreateVpcConnectionResponse
328
+ attr_accessor vpc_connection_arn: ::String
329
+ attr_accessor state: ("CREATING" | "AVAILABLE" | "INACTIVE" | "DEACTIVATING" | "DELETING" | "FAILED" | "REJECTED" | "REJECTING")
330
+ attr_accessor authentication: ::String
331
+ attr_accessor vpc_id: ::String
332
+ attr_accessor client_subnets: ::Array[::String]
333
+ attr_accessor security_groups: ::Array[::String]
334
+ attr_accessor creation_time: ::Time
335
+ attr_accessor tags: ::Hash[::String, ::String]
336
+ SENSITIVE: []
337
+ end
338
+
339
+ class DeleteClusterRequest
340
+ attr_accessor cluster_arn: ::String
341
+ attr_accessor current_version: ::String
342
+ SENSITIVE: []
343
+ end
344
+
345
+ class DeleteClusterResponse
346
+ attr_accessor cluster_arn: ::String
347
+ attr_accessor state: ("ACTIVE" | "CREATING" | "DELETING" | "FAILED" | "HEALING" | "MAINTENANCE" | "REBOOTING_BROKER" | "UPDATING")
348
+ SENSITIVE: []
349
+ end
350
+
351
+ class DeleteConfigurationRequest
352
+ attr_accessor arn: ::String
353
+ SENSITIVE: []
354
+ end
355
+
356
+ class DeleteConfigurationResponse
357
+ attr_accessor arn: ::String
358
+ attr_accessor state: ("ACTIVE" | "DELETING" | "DELETE_FAILED")
359
+ SENSITIVE: []
360
+ end
361
+
362
+ class DeleteReplicatorRequest
363
+ attr_accessor current_version: ::String
364
+ attr_accessor replicator_arn: ::String
365
+ SENSITIVE: []
366
+ end
367
+
368
+ class DeleteReplicatorResponse
369
+ attr_accessor replicator_arn: ::String
370
+ attr_accessor replicator_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
371
+ SENSITIVE: []
372
+ end
373
+
374
+ class DeleteVpcConnectionRequest
375
+ attr_accessor arn: ::String
376
+ SENSITIVE: []
377
+ end
378
+
379
+ class DeleteVpcConnectionResponse
380
+ attr_accessor vpc_connection_arn: ::String
381
+ attr_accessor state: ("CREATING" | "AVAILABLE" | "INACTIVE" | "DEACTIVATING" | "DELETING" | "FAILED" | "REJECTED" | "REJECTING")
382
+ SENSITIVE: []
383
+ end
384
+
385
+ class DescribeClusterOperationRequest
386
+ attr_accessor cluster_operation_arn: ::String
387
+ SENSITIVE: []
388
+ end
389
+
390
+ class DescribeClusterOperationV2Request
391
+ attr_accessor cluster_operation_arn: ::String
392
+ SENSITIVE: []
393
+ end
394
+
395
+ class DescribeClusterOperationResponse
396
+ attr_accessor cluster_operation_info: Types::ClusterOperationInfo
397
+ SENSITIVE: []
398
+ end
399
+
400
+ class DescribeClusterOperationV2Response
401
+ attr_accessor cluster_operation_info: Types::ClusterOperationV2
402
+ SENSITIVE: []
403
+ end
404
+
405
+ class DescribeClusterRequest
406
+ attr_accessor cluster_arn: ::String
407
+ SENSITIVE: []
408
+ end
409
+
410
+ class DescribeClusterResponse
411
+ attr_accessor cluster_info: Types::ClusterInfo
412
+ SENSITIVE: []
413
+ end
414
+
415
+ class DescribeConfigurationRequest
416
+ attr_accessor arn: ::String
417
+ SENSITIVE: []
418
+ end
419
+
420
+ class DescribeConfigurationResponse
421
+ attr_accessor arn: ::String
422
+ attr_accessor creation_time: ::Time
423
+ attr_accessor description: ::String
424
+ attr_accessor kafka_versions: ::Array[::String]
425
+ attr_accessor latest_revision: Types::ConfigurationRevision
426
+ attr_accessor name: ::String
427
+ attr_accessor state: ("ACTIVE" | "DELETING" | "DELETE_FAILED")
428
+ SENSITIVE: []
429
+ end
430
+
431
+ class DescribeConfigurationRevisionRequest
432
+ attr_accessor arn: ::String
433
+ attr_accessor revision: ::Integer
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class DescribeConfigurationRevisionResponse
438
+ attr_accessor arn: ::String
439
+ attr_accessor creation_time: ::Time
440
+ attr_accessor description: ::String
441
+ attr_accessor revision: ::Integer
442
+ attr_accessor server_properties: ::String
443
+ SENSITIVE: []
444
+ end
445
+
446
+ class DescribeReplicatorRequest
447
+ attr_accessor replicator_arn: ::String
448
+ SENSITIVE: []
449
+ end
450
+
451
+ class DescribeReplicatorResponse
452
+ attr_accessor creation_time: ::Time
453
+ attr_accessor current_version: ::String
454
+ attr_accessor is_replicator_reference: bool
455
+ attr_accessor kafka_clusters: ::Array[Types::KafkaClusterDescription]
456
+ attr_accessor replication_info_list: ::Array[Types::ReplicationInfoDescription]
457
+ attr_accessor replicator_arn: ::String
458
+ attr_accessor replicator_description: ::String
459
+ attr_accessor replicator_name: ::String
460
+ attr_accessor replicator_resource_arn: ::String
461
+ attr_accessor replicator_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
462
+ attr_accessor service_execution_role_arn: ::String
463
+ attr_accessor state_info: Types::ReplicationStateInfo
464
+ attr_accessor tags: ::Hash[::String, ::String]
465
+ SENSITIVE: []
466
+ end
467
+
468
+ class DescribeVpcConnectionRequest
469
+ attr_accessor arn: ::String
470
+ SENSITIVE: []
471
+ end
472
+
473
+ class DescribeVpcConnectionResponse
474
+ attr_accessor vpc_connection_arn: ::String
475
+ attr_accessor target_cluster_arn: ::String
476
+ attr_accessor state: ("CREATING" | "AVAILABLE" | "INACTIVE" | "DEACTIVATING" | "DELETING" | "FAILED" | "REJECTED" | "REJECTING")
477
+ attr_accessor authentication: ::String
478
+ attr_accessor vpc_id: ::String
479
+ attr_accessor subnets: ::Array[::String]
480
+ attr_accessor security_groups: ::Array[::String]
481
+ attr_accessor creation_time: ::Time
482
+ attr_accessor tags: ::Hash[::String, ::String]
483
+ SENSITIVE: []
484
+ end
485
+
486
+ class BatchDisassociateScramSecretRequest
487
+ attr_accessor cluster_arn: ::String
488
+ attr_accessor secret_arn_list: ::Array[::String]
489
+ SENSITIVE: []
490
+ end
491
+
492
+ class BatchDisassociateScramSecretResponse
493
+ attr_accessor cluster_arn: ::String
494
+ attr_accessor unprocessed_scram_secrets: ::Array[Types::UnprocessedScramSecret]
495
+ SENSITIVE: []
496
+ end
497
+
498
+ class EBSStorageInfo
499
+ attr_accessor provisioned_throughput: Types::ProvisionedThroughput
500
+ attr_accessor volume_size: ::Integer
501
+ SENSITIVE: []
502
+ end
503
+
504
+ class EncryptionAtRest
505
+ attr_accessor data_volume_kms_key_id: ::String
506
+ SENSITIVE: []
507
+ end
508
+
509
+ class EncryptionInTransit
510
+ attr_accessor client_broker: ("TLS" | "TLS_PLAINTEXT" | "PLAINTEXT")
511
+ attr_accessor in_cluster: bool
512
+ SENSITIVE: []
513
+ end
514
+
515
+ class EncryptionInfo
516
+ attr_accessor encryption_at_rest: Types::EncryptionAtRest
517
+ attr_accessor encryption_in_transit: Types::EncryptionInTransit
518
+ SENSITIVE: []
519
+ end
520
+
521
+ class Error
522
+ attr_accessor invalid_parameter: ::String
523
+ attr_accessor message: ::String
524
+ SENSITIVE: []
525
+ end
526
+
527
+ class Firehose
528
+ attr_accessor delivery_stream: ::String
529
+ attr_accessor enabled: bool
530
+ SENSITIVE: []
531
+ end
532
+
533
+ class ErrorInfo
534
+ attr_accessor error_code: ::String
535
+ attr_accessor error_string: ::String
536
+ SENSITIVE: []
537
+ end
538
+
539
+ class ForbiddenException
540
+ attr_accessor invalid_parameter: ::String
541
+ attr_accessor message: ::String
542
+ SENSITIVE: []
543
+ end
544
+
545
+ class GetBootstrapBrokersRequest
546
+ attr_accessor cluster_arn: ::String
547
+ SENSITIVE: []
548
+ end
549
+
550
+ class GetBootstrapBrokersResponse
551
+ attr_accessor bootstrap_broker_string: ::String
552
+ attr_accessor bootstrap_broker_string_public_sasl_iam: ::String
553
+ attr_accessor bootstrap_broker_string_public_sasl_scram: ::String
554
+ attr_accessor bootstrap_broker_string_public_tls: ::String
555
+ attr_accessor bootstrap_broker_string_tls: ::String
556
+ attr_accessor bootstrap_broker_string_sasl_scram: ::String
557
+ attr_accessor bootstrap_broker_string_sasl_iam: ::String
558
+ attr_accessor bootstrap_broker_string_vpc_connectivity_tls: ::String
559
+ attr_accessor bootstrap_broker_string_vpc_connectivity_sasl_scram: ::String
560
+ attr_accessor bootstrap_broker_string_vpc_connectivity_sasl_iam: ::String
561
+ SENSITIVE: []
562
+ end
563
+
564
+ class GetCompatibleKafkaVersionsRequest
565
+ attr_accessor cluster_arn: ::String
566
+ SENSITIVE: []
567
+ end
568
+
569
+ class GetCompatibleKafkaVersionsResponse
570
+ attr_accessor compatible_kafka_versions: ::Array[Types::CompatibleKafkaVersion]
571
+ SENSITIVE: []
572
+ end
573
+
574
+ class InternalServerErrorException
575
+ attr_accessor invalid_parameter: ::String
576
+ attr_accessor message: ::String
577
+ SENSITIVE: []
578
+ end
579
+
580
+ class KafkaCluster
581
+ attr_accessor amazon_msk_cluster: Types::AmazonMskCluster
582
+ attr_accessor vpc_config: Types::KafkaClusterClientVpcConfig
583
+ SENSITIVE: []
584
+ end
585
+
586
+ class KafkaClusterClientVpcConfig
587
+ attr_accessor security_group_ids: ::Array[::String]
588
+ attr_accessor subnet_ids: ::Array[::String]
589
+ SENSITIVE: []
590
+ end
591
+
592
+ class KafkaClusterDescription
593
+ attr_accessor amazon_msk_cluster: Types::AmazonMskCluster
594
+ attr_accessor kafka_cluster_alias: ::String
595
+ attr_accessor vpc_config: Types::KafkaClusterClientVpcConfig
596
+ SENSITIVE: []
597
+ end
598
+
599
+ class KafkaClusterSummary
600
+ attr_accessor amazon_msk_cluster: Types::AmazonMskCluster
601
+ attr_accessor kafka_cluster_alias: ::String
602
+ SENSITIVE: []
603
+ end
604
+
605
+ class KafkaVersion
606
+ attr_accessor version: ::String
607
+ attr_accessor status: ("ACTIVE" | "DEPRECATED")
608
+ SENSITIVE: []
609
+ end
610
+
611
+ class ListClusterOperationsRequest
612
+ attr_accessor cluster_arn: ::String
613
+ attr_accessor max_results: ::Integer
614
+ attr_accessor next_token: ::String
615
+ SENSITIVE: []
616
+ end
617
+
618
+ class ListClusterOperationsV2Request
619
+ attr_accessor cluster_arn: ::String
620
+ attr_accessor max_results: ::Integer
621
+ attr_accessor next_token: ::String
622
+ SENSITIVE: []
623
+ end
624
+
625
+ class ListClusterOperationsResponse
626
+ attr_accessor cluster_operation_info_list: ::Array[Types::ClusterOperationInfo]
627
+ attr_accessor next_token: ::String
628
+ SENSITIVE: []
629
+ end
630
+
631
+ class ListClusterOperationsV2Response
632
+ attr_accessor cluster_operation_info_list: ::Array[Types::ClusterOperationV2Summary]
633
+ attr_accessor next_token: ::String
634
+ SENSITIVE: []
635
+ end
636
+
637
+ class ListClustersV2Request
638
+ attr_accessor cluster_name_filter: ::String
639
+ attr_accessor cluster_type_filter: ::String
640
+ attr_accessor max_results: ::Integer
641
+ attr_accessor next_token: ::String
642
+ SENSITIVE: []
643
+ end
644
+
645
+ class ListClustersV2Response
646
+ attr_accessor cluster_info_list: ::Array[Types::Cluster]
647
+ attr_accessor next_token: ::String
648
+ SENSITIVE: []
649
+ end
650
+
651
+ class CreateClusterV2Request
652
+ attr_accessor cluster_name: ::String
653
+ attr_accessor tags: ::Hash[::String, ::String]
654
+ attr_accessor provisioned: Types::ProvisionedRequest
655
+ attr_accessor serverless: Types::ServerlessRequest
656
+ SENSITIVE: []
657
+ end
658
+
659
+ class CreateClusterV2Response
660
+ attr_accessor cluster_arn: ::String
661
+ attr_accessor cluster_name: ::String
662
+ attr_accessor state: ("ACTIVE" | "CREATING" | "DELETING" | "FAILED" | "HEALING" | "MAINTENANCE" | "REBOOTING_BROKER" | "UPDATING")
663
+ attr_accessor cluster_type: ("PROVISIONED" | "SERVERLESS")
664
+ SENSITIVE: []
665
+ end
666
+
667
+ class DescribeClusterV2Request
668
+ attr_accessor cluster_arn: ::String
669
+ SENSITIVE: []
670
+ end
671
+
672
+ class DescribeClusterV2Response
673
+ attr_accessor cluster_info: Types::Cluster
674
+ SENSITIVE: []
675
+ end
676
+
677
+ class DeleteClusterPolicyRequest
678
+ attr_accessor cluster_arn: ::String
679
+ SENSITIVE: []
680
+ end
681
+
682
+ class DeleteClusterPolicyResponse < Aws::EmptyStructure
683
+ end
684
+
685
+ class GetClusterPolicyRequest
686
+ attr_accessor cluster_arn: ::String
687
+ SENSITIVE: []
688
+ end
689
+
690
+ class GetClusterPolicyResponse
691
+ attr_accessor current_version: ::String
692
+ attr_accessor policy: ::String
693
+ SENSITIVE: []
694
+ end
695
+
696
+ class PutClusterPolicyRequest
697
+ attr_accessor cluster_arn: ::String
698
+ attr_accessor current_version: ::String
699
+ attr_accessor policy: ::String
700
+ SENSITIVE: []
701
+ end
702
+
703
+ class PutClusterPolicyResponse
704
+ attr_accessor current_version: ::String
705
+ SENSITIVE: []
706
+ end
707
+
708
+ class Cluster
709
+ attr_accessor active_operation_arn: ::String
710
+ attr_accessor cluster_type: ("PROVISIONED" | "SERVERLESS")
711
+ attr_accessor cluster_arn: ::String
712
+ attr_accessor cluster_name: ::String
713
+ attr_accessor creation_time: ::Time
714
+ attr_accessor current_version: ::String
715
+ attr_accessor state: ("ACTIVE" | "CREATING" | "DELETING" | "FAILED" | "HEALING" | "MAINTENANCE" | "REBOOTING_BROKER" | "UPDATING")
716
+ attr_accessor state_info: Types::StateInfo
717
+ attr_accessor tags: ::Hash[::String, ::String]
718
+ attr_accessor provisioned: Types::Provisioned
719
+ attr_accessor serverless: Types::Serverless
720
+ SENSITIVE: []
721
+ end
722
+
723
+ class ProvisionedRequest
724
+ attr_accessor broker_node_group_info: Types::BrokerNodeGroupInfo
725
+ attr_accessor client_authentication: Types::ClientAuthentication
726
+ attr_accessor configuration_info: Types::ConfigurationInfo
727
+ attr_accessor encryption_info: Types::EncryptionInfo
728
+ attr_accessor enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION")
729
+ attr_accessor open_monitoring: Types::OpenMonitoringInfo
730
+ attr_accessor kafka_version: ::String
731
+ attr_accessor logging_info: Types::LoggingInfo
732
+ attr_accessor number_of_broker_nodes: ::Integer
733
+ attr_accessor storage_mode: ("LOCAL" | "TIERED")
734
+ SENSITIVE: []
735
+ end
736
+
737
+ class Provisioned
738
+ attr_accessor broker_node_group_info: Types::BrokerNodeGroupInfo
739
+ attr_accessor current_broker_software_info: Types::BrokerSoftwareInfo
740
+ attr_accessor client_authentication: Types::ClientAuthentication
741
+ attr_accessor encryption_info: Types::EncryptionInfo
742
+ attr_accessor enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION")
743
+ attr_accessor open_monitoring: Types::OpenMonitoringInfo
744
+ attr_accessor logging_info: Types::LoggingInfo
745
+ attr_accessor number_of_broker_nodes: ::Integer
746
+ attr_accessor zookeeper_connect_string: ::String
747
+ attr_accessor zookeeper_connect_string_tls: ::String
748
+ attr_accessor storage_mode: ("LOCAL" | "TIERED")
749
+ attr_accessor customer_action_status: ("CRITICAL_ACTION_REQUIRED" | "ACTION_RECOMMENDED" | "NONE")
750
+ SENSITIVE: []
751
+ end
752
+
753
+ class VpcConfig
754
+ attr_accessor subnet_ids: ::Array[::String]
755
+ attr_accessor security_group_ids: ::Array[::String]
756
+ SENSITIVE: []
757
+ end
758
+
759
+ class ServerlessRequest
760
+ attr_accessor vpc_configs: ::Array[Types::VpcConfig]
761
+ attr_accessor client_authentication: Types::ServerlessClientAuthentication
762
+ SENSITIVE: []
763
+ end
764
+
765
+ class ServerlessClientAuthentication
766
+ attr_accessor sasl: Types::ServerlessSasl
767
+ SENSITIVE: []
768
+ end
769
+
770
+ class ServerlessSasl
771
+ attr_accessor iam: Types::Iam
772
+ SENSITIVE: []
773
+ end
774
+
775
+ class Serverless
776
+ attr_accessor vpc_configs: ::Array[Types::VpcConfig]
777
+ attr_accessor client_authentication: Types::ServerlessClientAuthentication
778
+ SENSITIVE: []
779
+ end
780
+
781
+ class ListClustersRequest
782
+ attr_accessor cluster_name_filter: ::String
783
+ attr_accessor max_results: ::Integer
784
+ attr_accessor next_token: ::String
785
+ SENSITIVE: []
786
+ end
787
+
788
+ class ListClustersResponse
789
+ attr_accessor cluster_info_list: ::Array[Types::ClusterInfo]
790
+ attr_accessor next_token: ::String
791
+ SENSITIVE: []
792
+ end
793
+
794
+ class ListConfigurationRevisionsRequest
795
+ attr_accessor arn: ::String
796
+ attr_accessor max_results: ::Integer
797
+ attr_accessor next_token: ::String
798
+ SENSITIVE: []
799
+ end
800
+
801
+ class ListConfigurationRevisionsResponse
802
+ attr_accessor next_token: ::String
803
+ attr_accessor revisions: ::Array[Types::ConfigurationRevision]
804
+ SENSITIVE: []
805
+ end
806
+
807
+ class ListConfigurationsRequest
808
+ attr_accessor max_results: ::Integer
809
+ attr_accessor next_token: ::String
810
+ SENSITIVE: []
811
+ end
812
+
813
+ class ListConfigurationsResponse
814
+ attr_accessor configurations: ::Array[Types::Configuration]
815
+ attr_accessor next_token: ::String
816
+ SENSITIVE: []
817
+ end
818
+
819
+ class ListKafkaVersionsRequest
820
+ attr_accessor max_results: ::Integer
821
+ attr_accessor next_token: ::String
822
+ SENSITIVE: []
823
+ end
824
+
825
+ class ListKafkaVersionsResponse
826
+ attr_accessor kafka_versions: ::Array[Types::KafkaVersion]
827
+ attr_accessor next_token: ::String
828
+ SENSITIVE: []
829
+ end
830
+
831
+ class ListNodesRequest
832
+ attr_accessor cluster_arn: ::String
833
+ attr_accessor max_results: ::Integer
834
+ attr_accessor next_token: ::String
835
+ SENSITIVE: []
836
+ end
837
+
838
+ class ListNodesResponse
839
+ attr_accessor next_token: ::String
840
+ attr_accessor node_info_list: ::Array[Types::NodeInfo]
841
+ SENSITIVE: []
842
+ end
843
+
844
+ class ListScramSecretsRequest
845
+ attr_accessor cluster_arn: ::String
846
+ attr_accessor max_results: ::Integer
847
+ attr_accessor next_token: ::String
848
+ SENSITIVE: []
849
+ end
850
+
851
+ class ListScramSecretsResponse
852
+ attr_accessor next_token: ::String
853
+ attr_accessor secret_arn_list: ::Array[::String]
854
+ SENSITIVE: []
855
+ end
856
+
857
+ class ListTagsForResourceRequest
858
+ attr_accessor resource_arn: ::String
859
+ SENSITIVE: []
860
+ end
861
+
862
+ class ListTagsForResourceResponse
863
+ attr_accessor tags: ::Hash[::String, ::String]
864
+ SENSITIVE: []
865
+ end
866
+
867
+ class LoggingInfo
868
+ attr_accessor broker_logs: Types::BrokerLogs
869
+ SENSITIVE: []
870
+ end
871
+
872
+ class ListClientVpcConnectionsRequest
873
+ attr_accessor cluster_arn: ::String
874
+ attr_accessor max_results: ::Integer
875
+ attr_accessor next_token: ::String
876
+ SENSITIVE: []
877
+ end
878
+
879
+ class ListClientVpcConnectionsResponse
880
+ attr_accessor next_token: ::String
881
+ attr_accessor client_vpc_connections: ::Array[Types::ClientVpcConnection]
882
+ SENSITIVE: []
883
+ end
884
+
885
+ class ListReplicatorsRequest
886
+ attr_accessor max_results: ::Integer
887
+ attr_accessor next_token: ::String
888
+ attr_accessor replicator_name_filter: ::String
889
+ SENSITIVE: []
890
+ end
891
+
892
+ class ListReplicatorsResponse
893
+ attr_accessor next_token: ::String
894
+ attr_accessor replicators: ::Array[Types::ReplicatorSummary]
895
+ SENSITIVE: []
896
+ end
897
+
898
+ class ListVpcConnectionsRequest
899
+ attr_accessor max_results: ::Integer
900
+ attr_accessor next_token: ::String
901
+ SENSITIVE: []
902
+ end
903
+
904
+ class ListVpcConnectionsResponse
905
+ attr_accessor next_token: ::String
906
+ attr_accessor vpc_connections: ::Array[Types::VpcConnection]
907
+ SENSITIVE: []
908
+ end
909
+
910
+ class RejectClientVpcConnectionRequest
911
+ attr_accessor cluster_arn: ::String
912
+ attr_accessor vpc_connection_arn: ::String
913
+ SENSITIVE: []
914
+ end
915
+
916
+ class RejectClientVpcConnectionResponse < Aws::EmptyStructure
917
+ end
918
+
919
+ class MutableClusterInfo
920
+ attr_accessor broker_ebs_volume_info: ::Array[Types::BrokerEBSVolumeInfo]
921
+ attr_accessor configuration_info: Types::ConfigurationInfo
922
+ attr_accessor number_of_broker_nodes: ::Integer
923
+ attr_accessor open_monitoring: Types::OpenMonitoring
924
+ attr_accessor enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION")
925
+ attr_accessor kafka_version: ::String
926
+ attr_accessor logging_info: Types::LoggingInfo
927
+ attr_accessor instance_type: ::String
928
+ attr_accessor client_authentication: Types::ClientAuthentication
929
+ attr_accessor encryption_info: Types::EncryptionInfo
930
+ attr_accessor connectivity_info: Types::ConnectivityInfo
931
+ attr_accessor storage_mode: ("LOCAL" | "TIERED")
932
+ SENSITIVE: []
933
+ end
934
+
935
+ class NodeInfo
936
+ attr_accessor added_to_cluster_time: ::String
937
+ attr_accessor broker_node_info: Types::BrokerNodeInfo
938
+ attr_accessor instance_type: ::String
939
+ attr_accessor node_arn: ::String
940
+ attr_accessor node_type: ("BROKER")
941
+ attr_accessor zookeeper_node_info: Types::ZookeeperNodeInfo
942
+ SENSITIVE: []
943
+ end
944
+
945
+ class NotFoundException
946
+ attr_accessor invalid_parameter: ::String
947
+ attr_accessor message: ::String
948
+ SENSITIVE: []
949
+ end
950
+
951
+ class ReplicationInfo
952
+ attr_accessor consumer_group_replication: Types::ConsumerGroupReplication
953
+ attr_accessor source_kafka_cluster_arn: ::String
954
+ attr_accessor target_compression_type: ("NONE" | "GZIP" | "SNAPPY" | "LZ4" | "ZSTD")
955
+ attr_accessor target_kafka_cluster_arn: ::String
956
+ attr_accessor topic_replication: Types::TopicReplication
957
+ SENSITIVE: []
958
+ end
959
+
960
+ class ReplicationInfoDescription
961
+ attr_accessor consumer_group_replication: Types::ConsumerGroupReplication
962
+ attr_accessor source_kafka_cluster_alias: ::String
963
+ attr_accessor target_compression_type: ("NONE" | "GZIP" | "SNAPPY" | "LZ4" | "ZSTD")
964
+ attr_accessor target_kafka_cluster_alias: ::String
965
+ attr_accessor topic_replication: Types::TopicReplication
966
+ SENSITIVE: []
967
+ end
968
+
969
+ class ReplicationInfoSummary
970
+ attr_accessor source_kafka_cluster_alias: ::String
971
+ attr_accessor target_kafka_cluster_alias: ::String
972
+ SENSITIVE: []
973
+ end
974
+
975
+ class ReplicationStateInfo
976
+ attr_accessor code: ::String
977
+ attr_accessor message: ::String
978
+ SENSITIVE: []
979
+ end
980
+
981
+ class ReplicatorSummary
982
+ attr_accessor creation_time: ::Time
983
+ attr_accessor current_version: ::String
984
+ attr_accessor is_replicator_reference: bool
985
+ attr_accessor kafka_clusters_summary: ::Array[Types::KafkaClusterSummary]
986
+ attr_accessor replication_info_summary_list: ::Array[Types::ReplicationInfoSummary]
987
+ attr_accessor replicator_arn: ::String
988
+ attr_accessor replicator_name: ::String
989
+ attr_accessor replicator_resource_arn: ::String
990
+ attr_accessor replicator_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
991
+ SENSITIVE: []
992
+ end
993
+
994
+ class Sasl
995
+ attr_accessor scram: Types::Scram
996
+ attr_accessor iam: Types::Iam
997
+ SENSITIVE: []
998
+ end
999
+
1000
+ class VpcConnectivitySasl
1001
+ attr_accessor scram: Types::VpcConnectivityScram
1002
+ attr_accessor iam: Types::VpcConnectivityIam
1003
+ SENSITIVE: []
1004
+ end
1005
+
1006
+ class Scram
1007
+ attr_accessor enabled: bool
1008
+ SENSITIVE: []
1009
+ end
1010
+
1011
+ class VpcConnectivityScram
1012
+ attr_accessor enabled: bool
1013
+ SENSITIVE: []
1014
+ end
1015
+
1016
+ class Iam
1017
+ attr_accessor enabled: bool
1018
+ SENSITIVE: []
1019
+ end
1020
+
1021
+ class VpcConnectivityIam
1022
+ attr_accessor enabled: bool
1023
+ SENSITIVE: []
1024
+ end
1025
+
1026
+ class ServiceUnavailableException
1027
+ attr_accessor invalid_parameter: ::String
1028
+ attr_accessor message: ::String
1029
+ SENSITIVE: []
1030
+ end
1031
+
1032
+ class StateInfo
1033
+ attr_accessor code: ::String
1034
+ attr_accessor message: ::String
1035
+ SENSITIVE: []
1036
+ end
1037
+
1038
+ class StorageInfo
1039
+ attr_accessor ebs_storage_info: Types::EBSStorageInfo
1040
+ SENSITIVE: []
1041
+ end
1042
+
1043
+ class TagResourceRequest
1044
+ attr_accessor resource_arn: ::String
1045
+ attr_accessor tags: ::Hash[::String, ::String]
1046
+ SENSITIVE: []
1047
+ end
1048
+
1049
+ class TopicReplication
1050
+ attr_accessor copy_access_control_lists_for_topics: bool
1051
+ attr_accessor copy_topic_configurations: bool
1052
+ attr_accessor detect_and_copy_new_topics: bool
1053
+ attr_accessor topics_to_exclude: ::Array[::String]
1054
+ attr_accessor topics_to_replicate: ::Array[::String]
1055
+ SENSITIVE: []
1056
+ end
1057
+
1058
+ class TopicReplicationUpdate
1059
+ attr_accessor copy_access_control_lists_for_topics: bool
1060
+ attr_accessor copy_topic_configurations: bool
1061
+ attr_accessor detect_and_copy_new_topics: bool
1062
+ attr_accessor topics_to_exclude: ::Array[::String]
1063
+ attr_accessor topics_to_replicate: ::Array[::String]
1064
+ SENSITIVE: []
1065
+ end
1066
+
1067
+ class Tls
1068
+ attr_accessor certificate_authority_arn_list: ::Array[::String]
1069
+ attr_accessor enabled: bool
1070
+ SENSITIVE: []
1071
+ end
1072
+
1073
+ class VpcConnectivityTls
1074
+ attr_accessor enabled: bool
1075
+ SENSITIVE: []
1076
+ end
1077
+
1078
+ class TooManyRequestsException
1079
+ attr_accessor invalid_parameter: ::String
1080
+ attr_accessor message: ::String
1081
+ SENSITIVE: []
1082
+ end
1083
+
1084
+ class Unauthenticated
1085
+ attr_accessor enabled: bool
1086
+ SENSITIVE: []
1087
+ end
1088
+
1089
+ class UnauthorizedException
1090
+ attr_accessor invalid_parameter: ::String
1091
+ attr_accessor message: ::String
1092
+ SENSITIVE: []
1093
+ end
1094
+
1095
+ class UnprocessedScramSecret
1096
+ attr_accessor error_code: ::String
1097
+ attr_accessor error_message: ::String
1098
+ attr_accessor secret_arn: ::String
1099
+ SENSITIVE: []
1100
+ end
1101
+
1102
+ class UntagResourceRequest
1103
+ attr_accessor resource_arn: ::String
1104
+ attr_accessor tag_keys: ::Array[::String]
1105
+ SENSITIVE: []
1106
+ end
1107
+
1108
+ class UpdateBrokerTypeRequest
1109
+ attr_accessor cluster_arn: ::String
1110
+ attr_accessor current_version: ::String
1111
+ attr_accessor target_instance_type: ::String
1112
+ SENSITIVE: []
1113
+ end
1114
+
1115
+ class UpdateBrokerTypeResponse
1116
+ attr_accessor cluster_arn: ::String
1117
+ attr_accessor cluster_operation_arn: ::String
1118
+ SENSITIVE: []
1119
+ end
1120
+
1121
+ class UpdateBrokerCountRequest
1122
+ attr_accessor cluster_arn: ::String
1123
+ attr_accessor current_version: ::String
1124
+ attr_accessor target_number_of_broker_nodes: ::Integer
1125
+ SENSITIVE: []
1126
+ end
1127
+
1128
+ class UpdateBrokerCountResponse
1129
+ attr_accessor cluster_arn: ::String
1130
+ attr_accessor cluster_operation_arn: ::String
1131
+ SENSITIVE: []
1132
+ end
1133
+
1134
+ class UpdateBrokerStorageRequest
1135
+ attr_accessor cluster_arn: ::String
1136
+ attr_accessor current_version: ::String
1137
+ attr_accessor target_broker_ebs_volume_info: ::Array[Types::BrokerEBSVolumeInfo]
1138
+ SENSITIVE: []
1139
+ end
1140
+
1141
+ class UpdateBrokerStorageResponse
1142
+ attr_accessor cluster_arn: ::String
1143
+ attr_accessor cluster_operation_arn: ::String
1144
+ SENSITIVE: []
1145
+ end
1146
+
1147
+ class UpdateClusterConfigurationRequest
1148
+ attr_accessor cluster_arn: ::String
1149
+ attr_accessor configuration_info: Types::ConfigurationInfo
1150
+ attr_accessor current_version: ::String
1151
+ SENSITIVE: []
1152
+ end
1153
+
1154
+ class UpdateClusterConfigurationResponse
1155
+ attr_accessor cluster_arn: ::String
1156
+ attr_accessor cluster_operation_arn: ::String
1157
+ SENSITIVE: []
1158
+ end
1159
+
1160
+ class UpdateClusterKafkaVersionRequest
1161
+ attr_accessor cluster_arn: ::String
1162
+ attr_accessor configuration_info: Types::ConfigurationInfo
1163
+ attr_accessor current_version: ::String
1164
+ attr_accessor target_kafka_version: ::String
1165
+ SENSITIVE: []
1166
+ end
1167
+
1168
+ class UpdateClusterKafkaVersionResponse
1169
+ attr_accessor cluster_arn: ::String
1170
+ attr_accessor cluster_operation_arn: ::String
1171
+ SENSITIVE: []
1172
+ end
1173
+
1174
+ class UpdateConfigurationRequest
1175
+ attr_accessor arn: ::String
1176
+ attr_accessor description: ::String
1177
+ attr_accessor server_properties: ::String
1178
+ SENSITIVE: []
1179
+ end
1180
+
1181
+ class UpdateConfigurationResponse
1182
+ attr_accessor arn: ::String
1183
+ attr_accessor latest_revision: Types::ConfigurationRevision
1184
+ SENSITIVE: []
1185
+ end
1186
+
1187
+ class UpdateConnectivityRequest
1188
+ attr_accessor cluster_arn: ::String
1189
+ attr_accessor connectivity_info: Types::ConnectivityInfo
1190
+ attr_accessor current_version: ::String
1191
+ SENSITIVE: []
1192
+ end
1193
+
1194
+ class UpdateConnectivityResponse
1195
+ attr_accessor cluster_arn: ::String
1196
+ attr_accessor cluster_operation_arn: ::String
1197
+ SENSITIVE: []
1198
+ end
1199
+
1200
+ class UpdateMonitoringRequest
1201
+ attr_accessor cluster_arn: ::String
1202
+ attr_accessor current_version: ::String
1203
+ attr_accessor enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION")
1204
+ attr_accessor open_monitoring: Types::OpenMonitoringInfo
1205
+ attr_accessor logging_info: Types::LoggingInfo
1206
+ SENSITIVE: []
1207
+ end
1208
+
1209
+ class UpdateMonitoringResponse
1210
+ attr_accessor cluster_arn: ::String
1211
+ attr_accessor cluster_operation_arn: ::String
1212
+ SENSITIVE: []
1213
+ end
1214
+
1215
+ class UpdateReplicationInfoRequest
1216
+ attr_accessor consumer_group_replication: Types::ConsumerGroupReplicationUpdate
1217
+ attr_accessor current_version: ::String
1218
+ attr_accessor replicator_arn: ::String
1219
+ attr_accessor source_kafka_cluster_arn: ::String
1220
+ attr_accessor target_kafka_cluster_arn: ::String
1221
+ attr_accessor topic_replication: Types::TopicReplicationUpdate
1222
+ SENSITIVE: []
1223
+ end
1224
+
1225
+ class UpdateReplicationInfoResponse
1226
+ attr_accessor replicator_arn: ::String
1227
+ attr_accessor replicator_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
1228
+ SENSITIVE: []
1229
+ end
1230
+
1231
+ class UpdateSecurityRequest
1232
+ attr_accessor client_authentication: Types::ClientAuthentication
1233
+ attr_accessor cluster_arn: ::String
1234
+ attr_accessor current_version: ::String
1235
+ attr_accessor encryption_info: Types::EncryptionInfo
1236
+ SENSITIVE: []
1237
+ end
1238
+
1239
+ class UpdateSecurityResponse
1240
+ attr_accessor cluster_arn: ::String
1241
+ attr_accessor cluster_operation_arn: ::String
1242
+ SENSITIVE: []
1243
+ end
1244
+
1245
+ class UpdateStorageRequest
1246
+ attr_accessor cluster_arn: ::String
1247
+ attr_accessor current_version: ::String
1248
+ attr_accessor provisioned_throughput: Types::ProvisionedThroughput
1249
+ attr_accessor storage_mode: ("LOCAL" | "TIERED")
1250
+ attr_accessor volume_size_gb: ::Integer
1251
+ SENSITIVE: []
1252
+ end
1253
+
1254
+ class UpdateStorageResponse
1255
+ attr_accessor cluster_arn: ::String
1256
+ attr_accessor cluster_operation_arn: ::String
1257
+ SENSITIVE: []
1258
+ end
1259
+
1260
+ class UserIdentity
1261
+ attr_accessor type: ("AWSACCOUNT" | "AWSSERVICE")
1262
+ attr_accessor principal_id: ::String
1263
+ SENSITIVE: []
1264
+ end
1265
+
1266
+ class ZookeeperNodeInfo
1267
+ attr_accessor attached_eni_id: ::String
1268
+ attr_accessor client_vpc_ip_address: ::String
1269
+ attr_accessor endpoints: ::Array[::String]
1270
+ attr_accessor zookeeper_id: ::Float
1271
+ attr_accessor zookeeper_version: ::String
1272
+ SENSITIVE: []
1273
+ end
1274
+
1275
+ class OpenMonitoring
1276
+ attr_accessor prometheus: Types::Prometheus
1277
+ SENSITIVE: []
1278
+ end
1279
+
1280
+ class OpenMonitoringInfo
1281
+ attr_accessor prometheus: Types::PrometheusInfo
1282
+ SENSITIVE: []
1283
+ end
1284
+
1285
+ class Prometheus
1286
+ attr_accessor jmx_exporter: Types::JmxExporter
1287
+ attr_accessor node_exporter: Types::NodeExporter
1288
+ SENSITIVE: []
1289
+ end
1290
+
1291
+ class PrometheusInfo
1292
+ attr_accessor jmx_exporter: Types::JmxExporterInfo
1293
+ attr_accessor node_exporter: Types::NodeExporterInfo
1294
+ SENSITIVE: []
1295
+ end
1296
+
1297
+ class ProvisionedThroughput
1298
+ attr_accessor enabled: bool
1299
+ attr_accessor volume_throughput: ::Integer
1300
+ SENSITIVE: []
1301
+ end
1302
+
1303
+ class PublicAccess
1304
+ attr_accessor type: ::String
1305
+ SENSITIVE: []
1306
+ end
1307
+
1308
+ class VpcConnectivity
1309
+ attr_accessor client_authentication: Types::VpcConnectivityClientAuthentication
1310
+ SENSITIVE: []
1311
+ end
1312
+
1313
+ class VpcConnectionInfo
1314
+ attr_accessor vpc_connection_arn: ::String
1315
+ attr_accessor owner: ::String
1316
+ attr_accessor user_identity: Types::UserIdentity
1317
+ attr_accessor creation_time: ::Time
1318
+ SENSITIVE: []
1319
+ end
1320
+
1321
+ class VpcConnectionInfoServerless
1322
+ attr_accessor creation_time: ::Time
1323
+ attr_accessor owner: ::String
1324
+ attr_accessor user_identity: Types::UserIdentity
1325
+ attr_accessor vpc_connection_arn: ::String
1326
+ SENSITIVE: []
1327
+ end
1328
+
1329
+ class RebootBrokerRequest
1330
+ attr_accessor broker_ids: ::Array[::String]
1331
+ attr_accessor cluster_arn: ::String
1332
+ SENSITIVE: []
1333
+ end
1334
+
1335
+ class RebootBrokerResponse
1336
+ attr_accessor cluster_arn: ::String
1337
+ attr_accessor cluster_operation_arn: ::String
1338
+ SENSITIVE: []
1339
+ end
1340
+
1341
+ class S3
1342
+ attr_accessor bucket: ::String
1343
+ attr_accessor enabled: bool
1344
+ attr_accessor prefix: ::String
1345
+ SENSITIVE: []
1346
+ end
1347
+
1348
+ class JmxExporter
1349
+ attr_accessor enabled_in_broker: bool
1350
+ SENSITIVE: []
1351
+ end
1352
+
1353
+ class JmxExporterInfo
1354
+ attr_accessor enabled_in_broker: bool
1355
+ SENSITIVE: []
1356
+ end
1357
+
1358
+ class NodeExporter
1359
+ attr_accessor enabled_in_broker: bool
1360
+ SENSITIVE: []
1361
+ end
1362
+
1363
+ class NodeExporterInfo
1364
+ attr_accessor enabled_in_broker: bool
1365
+ SENSITIVE: []
1366
+ end
1367
+ end
1368
+ end