aws-sdk-kafka 1.45.0 → 1.64.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +98 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-kafka/client.rb +1035 -6
- data/lib/aws-sdk-kafka/client_api.rb +719 -1
- data/lib/aws-sdk-kafka/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-kafka/endpoint_provider.rb +57 -0
- data/lib/aws-sdk-kafka/endpoints.rb +744 -0
- data/lib/aws-sdk-kafka/plugins/endpoints.rb +172 -0
- data/lib/aws-sdk-kafka/types.rb +1708 -992
- data/lib/aws-sdk-kafka.rb +5 -1
- metadata +8 -4
data/lib/aws-sdk-kafka/types.rb
CHANGED
@@ -10,15 +10,21 @@
|
|
10
10
|
module Aws::Kafka
|
11
11
|
module Types
|
12
12
|
|
13
|
-
#
|
13
|
+
# Details of an Amazon MSK Cluster.
|
14
|
+
#
|
15
|
+
# @!attribute [rw] msk_cluster_arn
|
16
|
+
# The Amazon Resource Name (ARN) of an Amazon MSK cluster.
|
17
|
+
# @return [String]
|
14
18
|
#
|
15
|
-
# @
|
16
|
-
# data as a hash:
|
19
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/AmazonMskCluster AWS API Documentation
|
17
20
|
#
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
21
|
+
class AmazonMskCluster < Struct.new(
|
22
|
+
:msk_cluster_arn)
|
23
|
+
SENSITIVE = []
|
24
|
+
include Aws::Structure
|
25
|
+
end
|
26
|
+
|
27
|
+
# Request body for BatchAssociateScramSecret.
|
22
28
|
#
|
23
29
|
# @!attribute [rw] cluster_arn
|
24
30
|
# @return [String]
|
@@ -76,18 +82,14 @@ module Aws::Kafka
|
|
76
82
|
# must be set to the keyword ALL. This means the changes apply to all
|
77
83
|
# the brokers in the cluster.
|
78
84
|
#
|
79
|
-
# @note When making an API call, you may pass BrokerEBSVolumeInfo
|
80
|
-
# data as a hash:
|
81
|
-
#
|
82
|
-
# {
|
83
|
-
# kafka_broker_node_id: "__string", # required
|
84
|
-
# volume_size_gb: 1, # required
|
85
|
-
# }
|
86
|
-
#
|
87
85
|
# @!attribute [rw] kafka_broker_node_id
|
88
86
|
# The ID of the broker to update.
|
89
87
|
# @return [String]
|
90
88
|
#
|
89
|
+
# @!attribute [rw] provisioned_throughput
|
90
|
+
# EBS volume provisioned throughput information.
|
91
|
+
# @return [Types::ProvisionedThroughput]
|
92
|
+
#
|
91
93
|
# @!attribute [rw] volume_size_gb
|
92
94
|
# Size of the EBS volume to update.
|
93
95
|
# @return [Integer]
|
@@ -96,6 +98,7 @@ module Aws::Kafka
|
|
96
98
|
#
|
97
99
|
class BrokerEBSVolumeInfo < Struct.new(
|
98
100
|
:kafka_broker_node_id,
|
101
|
+
:provisioned_throughput,
|
99
102
|
:volume_size_gb)
|
100
103
|
SENSITIVE = []
|
101
104
|
include Aws::Structure
|
@@ -103,25 +106,6 @@ module Aws::Kafka
|
|
103
106
|
|
104
107
|
# The broker logs configuration for this MSK cluster.
|
105
108
|
#
|
106
|
-
# @note When making an API call, you may pass BrokerLogs
|
107
|
-
# data as a hash:
|
108
|
-
#
|
109
|
-
# {
|
110
|
-
# cloud_watch_logs: {
|
111
|
-
# enabled: false, # required
|
112
|
-
# log_group: "__string",
|
113
|
-
# },
|
114
|
-
# firehose: {
|
115
|
-
# delivery_stream: "__string",
|
116
|
-
# enabled: false, # required
|
117
|
-
# },
|
118
|
-
# s3: {
|
119
|
-
# bucket: "__string",
|
120
|
-
# enabled: false, # required
|
121
|
-
# prefix: "__string",
|
122
|
-
# },
|
123
|
-
# }
|
124
|
-
#
|
125
109
|
# @!attribute [rw] cloud_watch_logs
|
126
110
|
# Details of the CloudWatch Logs destination for broker logs.
|
127
111
|
# @return [Types::CloudWatchLogs]
|
@@ -148,26 +132,6 @@ module Aws::Kafka
|
|
148
132
|
# Describes the setup to be used for Apache Kafka broker nodes in the
|
149
133
|
# cluster.
|
150
134
|
#
|
151
|
-
# @note When making an API call, you may pass BrokerNodeGroupInfo
|
152
|
-
# data as a hash:
|
153
|
-
#
|
154
|
-
# {
|
155
|
-
# broker_az_distribution: "DEFAULT", # accepts DEFAULT
|
156
|
-
# client_subnets: ["__string"], # required
|
157
|
-
# instance_type: "__stringMin5Max32", # required
|
158
|
-
# security_groups: ["__string"],
|
159
|
-
# storage_info: {
|
160
|
-
# ebs_storage_info: {
|
161
|
-
# volume_size: 1,
|
162
|
-
# },
|
163
|
-
# },
|
164
|
-
# connectivity_info: {
|
165
|
-
# public_access: {
|
166
|
-
# type: "__string",
|
167
|
-
# },
|
168
|
-
# },
|
169
|
-
# }
|
170
|
-
#
|
171
135
|
# @!attribute [rw] broker_az_distribution
|
172
136
|
# The distribution of broker nodes across Availability Zones.
|
173
137
|
# @return [String]
|
@@ -176,8 +140,8 @@ module Aws::Kafka
|
|
176
140
|
# The list of subnets to connect to in the client virtual private
|
177
141
|
# cloud (VPC). AWS creates elastic network interfaces inside these
|
178
142
|
# subnets. Client applications use elastic network interfaces to
|
179
|
-
# produce and consume data. Client subnets can't
|
180
|
-
# Zone
|
143
|
+
# produce and consume data. Client subnets can't occupy the
|
144
|
+
# Availability Zone with ID use use1-az3.
|
181
145
|
# @return [Array<String>]
|
182
146
|
#
|
183
147
|
# @!attribute [rw] instance_type
|
@@ -203,6 +167,10 @@ module Aws::Kafka
|
|
203
167
|
# Information about the broker access configuration.
|
204
168
|
# @return [Types::ConnectivityInfo]
|
205
169
|
#
|
170
|
+
# @!attribute [rw] zone_ids
|
171
|
+
# The zoneIds for the cluster.
|
172
|
+
# @return [Array<String>]
|
173
|
+
#
|
206
174
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/BrokerNodeGroupInfo AWS API Documentation
|
207
175
|
#
|
208
176
|
class BrokerNodeGroupInfo < Struct.new(
|
@@ -211,7 +179,8 @@ module Aws::Kafka
|
|
211
179
|
:instance_type,
|
212
180
|
:security_groups,
|
213
181
|
:storage_info,
|
214
|
-
:connectivity_info
|
182
|
+
:connectivity_info,
|
183
|
+
:zone_ids)
|
215
184
|
SENSITIVE = []
|
216
185
|
include Aws::Structure
|
217
186
|
end
|
@@ -284,27 +253,6 @@ module Aws::Kafka
|
|
284
253
|
|
285
254
|
# Includes all client authentication information.
|
286
255
|
#
|
287
|
-
# @note When making an API call, you may pass ClientAuthentication
|
288
|
-
# data as a hash:
|
289
|
-
#
|
290
|
-
# {
|
291
|
-
# sasl: {
|
292
|
-
# scram: {
|
293
|
-
# enabled: false,
|
294
|
-
# },
|
295
|
-
# iam: {
|
296
|
-
# enabled: false,
|
297
|
-
# },
|
298
|
-
# },
|
299
|
-
# tls: {
|
300
|
-
# certificate_authority_arn_list: ["__string"],
|
301
|
-
# enabled: false,
|
302
|
-
# },
|
303
|
-
# unauthenticated: {
|
304
|
-
# enabled: false,
|
305
|
-
# },
|
306
|
-
# }
|
307
|
-
#
|
308
256
|
# @!attribute [rw] sasl
|
309
257
|
# @return [Types::Sasl]
|
310
258
|
#
|
@@ -326,15 +274,22 @@ module Aws::Kafka
|
|
326
274
|
include Aws::Structure
|
327
275
|
end
|
328
276
|
|
329
|
-
#
|
277
|
+
# @!attribute [rw] sasl
|
278
|
+
# @return [Types::VpcConnectivitySasl]
|
279
|
+
#
|
280
|
+
# @!attribute [rw] tls
|
281
|
+
# @return [Types::VpcConnectivityTls]
|
330
282
|
#
|
331
|
-
# @
|
332
|
-
# data as a hash:
|
283
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectivityClientAuthentication AWS API Documentation
|
333
284
|
#
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
285
|
+
class VpcConnectivityClientAuthentication < Struct.new(
|
286
|
+
:sasl,
|
287
|
+
:tls)
|
288
|
+
SENSITIVE = []
|
289
|
+
include Aws::Structure
|
290
|
+
end
|
291
|
+
|
292
|
+
# Details of the CloudWatch Logs destination for broker logs.
|
338
293
|
#
|
339
294
|
# @!attribute [rw] enabled
|
340
295
|
# Specifies whether broker logs get sent to the specified CloudWatch
|
@@ -445,6 +400,10 @@ module Aws::Kafka
|
|
445
400
|
# port.
|
446
401
|
# @return [String]
|
447
402
|
#
|
403
|
+
# @!attribute [rw] storage_mode
|
404
|
+
# This controls storage mode for supported storage tiers.
|
405
|
+
# @return [String]
|
406
|
+
#
|
448
407
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterInfo AWS API Documentation
|
449
408
|
#
|
450
409
|
class ClusterInfo < Struct.new(
|
@@ -465,7 +424,8 @@ module Aws::Kafka
|
|
465
424
|
:state_info,
|
466
425
|
:tags,
|
467
426
|
:zookeeper_connect_string,
|
468
|
-
:zookeeper_connect_string_tls
|
427
|
+
:zookeeper_connect_string_tls,
|
428
|
+
:storage_mode)
|
469
429
|
SENSITIVE = []
|
470
430
|
include Aws::Structure
|
471
431
|
end
|
@@ -516,6 +476,11 @@ module Aws::Kafka
|
|
516
476
|
# Information about cluster attributes after a cluster is updated.
|
517
477
|
# @return [Types::MutableClusterInfo]
|
518
478
|
#
|
479
|
+
# @!attribute [rw] vpc_connection_info
|
480
|
+
# Description of the VPC connection for CreateVpcConnection and
|
481
|
+
# DeleteVpcConnection operations.
|
482
|
+
# @return [Types::VpcConnectionInfo]
|
483
|
+
#
|
519
484
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterOperationInfo AWS API Documentation
|
520
485
|
#
|
521
486
|
class ClusterOperationInfo < Struct.new(
|
@@ -529,7 +494,8 @@ module Aws::Kafka
|
|
529
494
|
:operation_state,
|
530
495
|
:operation_type,
|
531
496
|
:source_cluster_info,
|
532
|
-
:target_cluster_info
|
497
|
+
:target_cluster_info,
|
498
|
+
:vpc_connection_info)
|
533
499
|
SENSITIVE = []
|
534
500
|
include Aws::Structure
|
535
501
|
end
|
@@ -567,6 +533,211 @@ module Aws::Kafka
|
|
567
533
|
include Aws::Structure
|
568
534
|
end
|
569
535
|
|
536
|
+
# Returns information about a cluster operation.
|
537
|
+
#
|
538
|
+
# @!attribute [rw] cluster_arn
|
539
|
+
# @return [String]
|
540
|
+
#
|
541
|
+
# @!attribute [rw] cluster_type
|
542
|
+
# The type of cluster.
|
543
|
+
# @return [String]
|
544
|
+
#
|
545
|
+
# @!attribute [rw] start_time
|
546
|
+
# @return [Time]
|
547
|
+
#
|
548
|
+
# @!attribute [rw] end_time
|
549
|
+
# @return [Time]
|
550
|
+
#
|
551
|
+
# @!attribute [rw] operation_arn
|
552
|
+
# @return [String]
|
553
|
+
#
|
554
|
+
# @!attribute [rw] operation_state
|
555
|
+
# @return [String]
|
556
|
+
#
|
557
|
+
# @!attribute [rw] operation_type
|
558
|
+
# @return [String]
|
559
|
+
#
|
560
|
+
# @!attribute [rw] provisioned
|
561
|
+
# Properties of a provisioned cluster.
|
562
|
+
# @return [Types::ClusterOperationV2Provisioned]
|
563
|
+
#
|
564
|
+
# @!attribute [rw] serverless
|
565
|
+
# Properties of a serverless cluster.
|
566
|
+
# @return [Types::ClusterOperationV2Serverless]
|
567
|
+
#
|
568
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterOperationV2 AWS API Documentation
|
569
|
+
#
|
570
|
+
class ClusterOperationV2 < Struct.new(
|
571
|
+
:cluster_arn,
|
572
|
+
:cluster_type,
|
573
|
+
:start_time,
|
574
|
+
:end_time,
|
575
|
+
:operation_arn,
|
576
|
+
:operation_state,
|
577
|
+
:operation_type,
|
578
|
+
:provisioned,
|
579
|
+
:serverless)
|
580
|
+
SENSITIVE = []
|
581
|
+
include Aws::Structure
|
582
|
+
end
|
583
|
+
|
584
|
+
# Returns information about a provisioned cluster operation.
|
585
|
+
#
|
586
|
+
# @!attribute [rw] operation_steps
|
587
|
+
# @return [Array<Types::ClusterOperationStep>]
|
588
|
+
#
|
589
|
+
# @!attribute [rw] source_cluster_info
|
590
|
+
# Information about cluster attributes that can be updated via update
|
591
|
+
# APIs.
|
592
|
+
# @return [Types::MutableClusterInfo]
|
593
|
+
#
|
594
|
+
# @!attribute [rw] target_cluster_info
|
595
|
+
# Information about cluster attributes that can be updated via update
|
596
|
+
# APIs.
|
597
|
+
# @return [Types::MutableClusterInfo]
|
598
|
+
#
|
599
|
+
# @!attribute [rw] vpc_connection_info
|
600
|
+
# Description of the VPC connection for CreateVpcConnection and
|
601
|
+
# DeleteVpcConnection operations.
|
602
|
+
# @return [Types::VpcConnectionInfo]
|
603
|
+
#
|
604
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterOperationV2Provisioned AWS API Documentation
|
605
|
+
#
|
606
|
+
class ClusterOperationV2Provisioned < Struct.new(
|
607
|
+
:operation_steps,
|
608
|
+
:source_cluster_info,
|
609
|
+
:target_cluster_info,
|
610
|
+
:vpc_connection_info)
|
611
|
+
SENSITIVE = []
|
612
|
+
include Aws::Structure
|
613
|
+
end
|
614
|
+
|
615
|
+
# Returns information about a serverless cluster operation.
|
616
|
+
#
|
617
|
+
# @!attribute [rw] vpc_connection_info
|
618
|
+
# Description of the VPC connection for CreateVpcConnection and
|
619
|
+
# DeleteVpcConnection operations.
|
620
|
+
# @return [Types::VpcConnectionInfoServerless]
|
621
|
+
#
|
622
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterOperationV2Serverless AWS API Documentation
|
623
|
+
#
|
624
|
+
class ClusterOperationV2Serverless < Struct.new(
|
625
|
+
:vpc_connection_info)
|
626
|
+
SENSITIVE = []
|
627
|
+
include Aws::Structure
|
628
|
+
end
|
629
|
+
|
630
|
+
# Returns information about a cluster operation.
|
631
|
+
#
|
632
|
+
# @!attribute [rw] cluster_arn
|
633
|
+
# @return [String]
|
634
|
+
#
|
635
|
+
# @!attribute [rw] cluster_type
|
636
|
+
# The type of cluster.
|
637
|
+
# @return [String]
|
638
|
+
#
|
639
|
+
# @!attribute [rw] start_time
|
640
|
+
# @return [Time]
|
641
|
+
#
|
642
|
+
# @!attribute [rw] end_time
|
643
|
+
# @return [Time]
|
644
|
+
#
|
645
|
+
# @!attribute [rw] operation_arn
|
646
|
+
# @return [String]
|
647
|
+
#
|
648
|
+
# @!attribute [rw] operation_state
|
649
|
+
# @return [String]
|
650
|
+
#
|
651
|
+
# @!attribute [rw] operation_type
|
652
|
+
# @return [String]
|
653
|
+
#
|
654
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterOperationV2Summary AWS API Documentation
|
655
|
+
#
|
656
|
+
class ClusterOperationV2Summary < Struct.new(
|
657
|
+
:cluster_arn,
|
658
|
+
:cluster_type,
|
659
|
+
:start_time,
|
660
|
+
:end_time,
|
661
|
+
:operation_arn,
|
662
|
+
:operation_state,
|
663
|
+
:operation_type)
|
664
|
+
SENSITIVE = []
|
665
|
+
include Aws::Structure
|
666
|
+
end
|
667
|
+
|
668
|
+
# The client VPC connection object.
|
669
|
+
#
|
670
|
+
# @!attribute [rw] authentication
|
671
|
+
# The VPC connection authentication type.
|
672
|
+
# @return [String]
|
673
|
+
#
|
674
|
+
# @!attribute [rw] creation_time
|
675
|
+
# The creation time of the VPC connection.
|
676
|
+
# @return [Time]
|
677
|
+
#
|
678
|
+
# @!attribute [rw] state
|
679
|
+
# The state of a configuration.
|
680
|
+
# @return [String]
|
681
|
+
#
|
682
|
+
# @!attribute [rw] vpc_connection_arn
|
683
|
+
# The Amazon Resource Name (ARN) of the VPC connection.
|
684
|
+
# @return [String]
|
685
|
+
#
|
686
|
+
# @!attribute [rw] owner
|
687
|
+
# The owner of the VPC connection.
|
688
|
+
# @return [String]
|
689
|
+
#
|
690
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClientVpcConnection AWS API Documentation
|
691
|
+
#
|
692
|
+
class ClientVpcConnection < Struct.new(
|
693
|
+
:authentication,
|
694
|
+
:creation_time,
|
695
|
+
:state,
|
696
|
+
:vpc_connection_arn,
|
697
|
+
:owner)
|
698
|
+
SENSITIVE = []
|
699
|
+
include Aws::Structure
|
700
|
+
end
|
701
|
+
|
702
|
+
# The VPC connection object.
|
703
|
+
#
|
704
|
+
# @!attribute [rw] vpc_connection_arn
|
705
|
+
# The Amazon Resource Name (ARN) of the VPC connection.
|
706
|
+
# @return [String]
|
707
|
+
#
|
708
|
+
# @!attribute [rw] target_cluster_arn
|
709
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
710
|
+
# @return [String]
|
711
|
+
#
|
712
|
+
# @!attribute [rw] creation_time
|
713
|
+
# The creation time of the VPC connection.
|
714
|
+
# @return [Time]
|
715
|
+
#
|
716
|
+
# @!attribute [rw] authentication
|
717
|
+
# The authentication type for the VPC connection.
|
718
|
+
# @return [String]
|
719
|
+
#
|
720
|
+
# @!attribute [rw] vpc_id
|
721
|
+
# The VPC ID of the VPC connection.
|
722
|
+
# @return [String]
|
723
|
+
#
|
724
|
+
# @!attribute [rw] state
|
725
|
+
# The state of a configuration.
|
726
|
+
# @return [String]
|
727
|
+
#
|
728
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnection AWS API Documentation
|
729
|
+
#
|
730
|
+
class VpcConnection < Struct.new(
|
731
|
+
:vpc_connection_arn,
|
732
|
+
:target_cluster_arn,
|
733
|
+
:creation_time,
|
734
|
+
:authentication,
|
735
|
+
:vpc_id,
|
736
|
+
:state)
|
737
|
+
SENSITIVE = []
|
738
|
+
include Aws::Structure
|
739
|
+
end
|
740
|
+
|
570
741
|
# Contains source Apache Kafka versions and compatible target Apache
|
571
742
|
# Kafka versions.
|
572
743
|
#
|
@@ -592,6 +763,7 @@ module Aws::Kafka
|
|
592
763
|
# @return [String]
|
593
764
|
#
|
594
765
|
# @!attribute [rw] creation_time
|
766
|
+
# The time when the configuration was created.
|
595
767
|
# @return [Time]
|
596
768
|
#
|
597
769
|
# @!attribute [rw] description
|
@@ -634,14 +806,6 @@ module Aws::Kafka
|
|
634
806
|
|
635
807
|
# Specifies the configuration to use for the brokers.
|
636
808
|
#
|
637
|
-
# @note When making an API call, you may pass ConfigurationInfo
|
638
|
-
# data as a hash:
|
639
|
-
#
|
640
|
-
# {
|
641
|
-
# arn: "__string", # required
|
642
|
-
# revision: 1, # required
|
643
|
-
# }
|
644
|
-
#
|
645
809
|
# @!attribute [rw] arn
|
646
810
|
# ARN of the configuration to use.
|
647
811
|
# @return [String]
|
@@ -702,114 +866,90 @@ module Aws::Kafka
|
|
702
866
|
|
703
867
|
# Information about the broker access configuration.
|
704
868
|
#
|
705
|
-
# @note When making an API call, you may pass ConnectivityInfo
|
706
|
-
# data as a hash:
|
707
|
-
#
|
708
|
-
# {
|
709
|
-
# public_access: {
|
710
|
-
# type: "__string",
|
711
|
-
# },
|
712
|
-
# }
|
713
|
-
#
|
714
869
|
# @!attribute [rw] public_access
|
715
870
|
# Public access control for brokers.
|
716
871
|
# @return [Types::PublicAccess]
|
717
872
|
#
|
873
|
+
# @!attribute [rw] vpc_connectivity
|
874
|
+
# VpcConnectivity control for brokers.
|
875
|
+
# @return [Types::VpcConnectivity]
|
876
|
+
#
|
718
877
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ConnectivityInfo AWS API Documentation
|
719
878
|
#
|
720
879
|
class ConnectivityInfo < Struct.new(
|
721
|
-
:public_access
|
880
|
+
:public_access,
|
881
|
+
:vpc_connectivity)
|
722
882
|
SENSITIVE = []
|
723
883
|
include Aws::Structure
|
724
884
|
end
|
725
885
|
|
726
|
-
#
|
886
|
+
# Details about consumer group replication.
|
887
|
+
#
|
888
|
+
# @!attribute [rw] consumer_groups_to_exclude
|
889
|
+
# List of regular expression patterns indicating the consumer groups
|
890
|
+
# that should not be replicated.
|
891
|
+
# @return [Array<String>]
|
892
|
+
#
|
893
|
+
# @!attribute [rw] consumer_groups_to_replicate
|
894
|
+
# List of regular expression patterns indicating the consumer groups
|
895
|
+
# to copy.
|
896
|
+
# @return [Array<String>]
|
897
|
+
#
|
898
|
+
# @!attribute [rw] detect_and_copy_new_consumer_groups
|
899
|
+
# Enables synchronization of consumer groups to target cluster.
|
900
|
+
# @return [Boolean]
|
901
|
+
#
|
902
|
+
# @!attribute [rw] synchronise_consumer_group_offsets
|
903
|
+
# Enables synchronization of consumer group offsets to target cluster.
|
904
|
+
# The translated offsets will be written to topic
|
905
|
+
# \_\_consumer\_offsets.
|
906
|
+
# @return [Boolean]
|
907
|
+
#
|
908
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ConsumerGroupReplication AWS API Documentation
|
909
|
+
#
|
910
|
+
class ConsumerGroupReplication < Struct.new(
|
911
|
+
:consumer_groups_to_exclude,
|
912
|
+
:consumer_groups_to_replicate,
|
913
|
+
:detect_and_copy_new_consumer_groups,
|
914
|
+
:synchronise_consumer_group_offsets)
|
915
|
+
SENSITIVE = []
|
916
|
+
include Aws::Structure
|
917
|
+
end
|
918
|
+
|
919
|
+
# Details about consumer group replication.
|
727
920
|
#
|
728
|
-
#
|
729
|
-
#
|
730
|
-
#
|
731
|
-
#
|
732
|
-
#
|
733
|
-
#
|
734
|
-
#
|
735
|
-
#
|
736
|
-
#
|
737
|
-
#
|
738
|
-
#
|
739
|
-
#
|
740
|
-
#
|
741
|
-
#
|
742
|
-
#
|
743
|
-
#
|
744
|
-
#
|
745
|
-
#
|
746
|
-
#
|
747
|
-
#
|
748
|
-
#
|
749
|
-
#
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
#
|
760
|
-
# },
|
761
|
-
# unauthenticated: {
|
762
|
-
# enabled: false,
|
763
|
-
# },
|
764
|
-
# },
|
765
|
-
# cluster_name: "__stringMin1Max64", # required
|
766
|
-
# configuration_info: {
|
767
|
-
# arn: "__string", # required
|
768
|
-
# revision: 1, # required
|
769
|
-
# },
|
770
|
-
# encryption_info: {
|
771
|
-
# encryption_at_rest: {
|
772
|
-
# data_volume_kms_key_id: "__string", # required
|
773
|
-
# },
|
774
|
-
# encryption_in_transit: {
|
775
|
-
# client_broker: "TLS", # accepts TLS, TLS_PLAINTEXT, PLAINTEXT
|
776
|
-
# in_cluster: false,
|
777
|
-
# },
|
778
|
-
# },
|
779
|
-
# enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
|
780
|
-
# kafka_version: "__stringMin1Max128", # required
|
781
|
-
# logging_info: {
|
782
|
-
# broker_logs: { # required
|
783
|
-
# cloud_watch_logs: {
|
784
|
-
# enabled: false, # required
|
785
|
-
# log_group: "__string",
|
786
|
-
# },
|
787
|
-
# firehose: {
|
788
|
-
# delivery_stream: "__string",
|
789
|
-
# enabled: false, # required
|
790
|
-
# },
|
791
|
-
# s3: {
|
792
|
-
# bucket: "__string",
|
793
|
-
# enabled: false, # required
|
794
|
-
# prefix: "__string",
|
795
|
-
# },
|
796
|
-
# },
|
797
|
-
# },
|
798
|
-
# number_of_broker_nodes: 1, # required
|
799
|
-
# open_monitoring: {
|
800
|
-
# prometheus: { # required
|
801
|
-
# jmx_exporter: {
|
802
|
-
# enabled_in_broker: false, # required
|
803
|
-
# },
|
804
|
-
# node_exporter: {
|
805
|
-
# enabled_in_broker: false, # required
|
806
|
-
# },
|
807
|
-
# },
|
808
|
-
# },
|
809
|
-
# tags: {
|
810
|
-
# "__string" => "__string",
|
811
|
-
# },
|
812
|
-
# }
|
921
|
+
# @!attribute [rw] consumer_groups_to_exclude
|
922
|
+
# List of regular expression patterns indicating the consumer groups
|
923
|
+
# that should not be replicated.
|
924
|
+
# @return [Array<String>]
|
925
|
+
#
|
926
|
+
# @!attribute [rw] consumer_groups_to_replicate
|
927
|
+
# List of regular expression patterns indicating the consumer groups
|
928
|
+
# to copy.
|
929
|
+
# @return [Array<String>]
|
930
|
+
#
|
931
|
+
# @!attribute [rw] detect_and_copy_new_consumer_groups
|
932
|
+
# Enables synchronization of consumer groups to target cluster.
|
933
|
+
# @return [Boolean]
|
934
|
+
#
|
935
|
+
# @!attribute [rw] synchronise_consumer_group_offsets
|
936
|
+
# Enables synchronization of consumer group offsets to target cluster.
|
937
|
+
# The translated offsets will be written to topic
|
938
|
+
# \_\_consumer\_offsets.
|
939
|
+
# @return [Boolean]
|
940
|
+
#
|
941
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ConsumerGroupReplicationUpdate AWS API Documentation
|
942
|
+
#
|
943
|
+
class ConsumerGroupReplicationUpdate < Struct.new(
|
944
|
+
:consumer_groups_to_exclude,
|
945
|
+
:consumer_groups_to_replicate,
|
946
|
+
:detect_and_copy_new_consumer_groups,
|
947
|
+
:synchronise_consumer_group_offsets)
|
948
|
+
SENSITIVE = []
|
949
|
+
include Aws::Structure
|
950
|
+
end
|
951
|
+
|
952
|
+
# Creates a cluster.
|
813
953
|
#
|
814
954
|
# @!attribute [rw] broker_node_group_info
|
815
955
|
# Information about the brokers.
|
@@ -858,6 +998,10 @@ module Aws::Kafka
|
|
858
998
|
# Create tags when creating the cluster.
|
859
999
|
# @return [Hash<String,String>]
|
860
1000
|
#
|
1001
|
+
# @!attribute [rw] storage_mode
|
1002
|
+
# This controls storage mode for supported storage tiers.
|
1003
|
+
# @return [String]
|
1004
|
+
#
|
861
1005
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateClusterRequest AWS API Documentation
|
862
1006
|
#
|
863
1007
|
class CreateClusterRequest < Struct.new(
|
@@ -871,7 +1015,8 @@ module Aws::Kafka
|
|
871
1015
|
:logging_info,
|
872
1016
|
:number_of_broker_nodes,
|
873
1017
|
:open_monitoring,
|
874
|
-
:tags
|
1018
|
+
:tags,
|
1019
|
+
:storage_mode)
|
875
1020
|
SENSITIVE = []
|
876
1021
|
include Aws::Structure
|
877
1022
|
end
|
@@ -904,16 +1049,6 @@ module Aws::Kafka
|
|
904
1049
|
|
905
1050
|
# Request body for CreateConfiguration.
|
906
1051
|
#
|
907
|
-
# @note When making an API call, you may pass CreateConfigurationRequest
|
908
|
-
# data as a hash:
|
909
|
-
#
|
910
|
-
# {
|
911
|
-
# description: "__string",
|
912
|
-
# kafka_versions: ["__string"],
|
913
|
-
# name: "__string", # required
|
914
|
-
# server_properties: "data", # required
|
915
|
-
# }
|
916
|
-
#
|
917
1052
|
# @!attribute [rw] description
|
918
1053
|
# The description of the configuration.
|
919
1054
|
# @return [String]
|
@@ -978,79 +1113,218 @@ module Aws::Kafka
|
|
978
1113
|
include Aws::Structure
|
979
1114
|
end
|
980
1115
|
|
981
|
-
#
|
982
|
-
# data as a hash:
|
983
|
-
#
|
984
|
-
# {
|
985
|
-
# cluster_arn: "__string", # required
|
986
|
-
# current_version: "__string",
|
987
|
-
# }
|
988
|
-
#
|
989
|
-
# @!attribute [rw] cluster_arn
|
990
|
-
# @return [String]
|
1116
|
+
# Request body for replicator.
|
991
1117
|
#
|
992
|
-
# @!attribute [rw]
|
1118
|
+
# @!attribute [rw] description
|
1119
|
+
# A summary description of the replicator.
|
993
1120
|
# @return [String]
|
994
1121
|
#
|
995
|
-
#
|
1122
|
+
# @!attribute [rw] kafka_clusters
|
1123
|
+
# Kafka Clusters to use in setting up sources / targets for
|
1124
|
+
# replication.
|
1125
|
+
# @return [Array<Types::KafkaCluster>]
|
996
1126
|
#
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
include Aws::Structure
|
1002
|
-
end
|
1003
|
-
|
1004
|
-
# Returns information about the deleted cluster.
|
1127
|
+
# @!attribute [rw] replication_info_list
|
1128
|
+
# A list of replication configurations, where each configuration
|
1129
|
+
# targets a given source cluster to target cluster replication flow.
|
1130
|
+
# @return [Array<Types::ReplicationInfo>]
|
1005
1131
|
#
|
1006
|
-
# @!attribute [rw]
|
1007
|
-
# The
|
1132
|
+
# @!attribute [rw] replicator_name
|
1133
|
+
# The name of the replicator. Alpha-numeric characters with '-' are
|
1134
|
+
# allowed.
|
1008
1135
|
# @return [String]
|
1009
1136
|
#
|
1010
|
-
# @!attribute [rw]
|
1011
|
-
# The
|
1012
|
-
#
|
1013
|
-
# UPDATING.
|
1137
|
+
# @!attribute [rw] service_execution_role_arn
|
1138
|
+
# The ARN of the IAM role used by the replicator to access resources
|
1139
|
+
# in the customer's account (e.g source and target clusters)
|
1014
1140
|
# @return [String]
|
1015
1141
|
#
|
1016
|
-
#
|
1142
|
+
# @!attribute [rw] tags
|
1143
|
+
# List of tags to attach to created Replicator.
|
1144
|
+
# @return [Hash<String,String>]
|
1017
1145
|
#
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateReplicatorRequest AWS API Documentation
|
1147
|
+
#
|
1148
|
+
class CreateReplicatorRequest < Struct.new(
|
1149
|
+
:description,
|
1150
|
+
:kafka_clusters,
|
1151
|
+
:replication_info_list,
|
1152
|
+
:replicator_name,
|
1153
|
+
:service_execution_role_arn,
|
1154
|
+
:tags)
|
1021
1155
|
SENSITIVE = []
|
1022
1156
|
include Aws::Structure
|
1023
1157
|
end
|
1024
1158
|
|
1025
|
-
#
|
1159
|
+
# Returns information about the created replicator.
|
1026
1160
|
#
|
1027
|
-
#
|
1028
|
-
#
|
1161
|
+
# @!attribute [rw] replicator_arn
|
1162
|
+
# The Amazon Resource Name (ARN) of the replicator.
|
1163
|
+
# @return [String]
|
1029
1164
|
#
|
1030
|
-
#
|
1031
|
-
#
|
1032
|
-
#
|
1165
|
+
# @!attribute [rw] replicator_name
|
1166
|
+
# Name of the replicator provided by the customer.
|
1167
|
+
# @return [String]
|
1033
1168
|
#
|
1034
|
-
# @!attribute [rw]
|
1035
|
-
#
|
1169
|
+
# @!attribute [rw] replicator_state
|
1170
|
+
# State of the replicator.
|
1036
1171
|
# @return [String]
|
1037
1172
|
#
|
1038
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/
|
1173
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateReplicatorResponse AWS API Documentation
|
1039
1174
|
#
|
1040
|
-
class
|
1041
|
-
:
|
1175
|
+
class CreateReplicatorResponse < Struct.new(
|
1176
|
+
:replicator_arn,
|
1177
|
+
:replicator_name,
|
1178
|
+
:replicator_state)
|
1042
1179
|
SENSITIVE = []
|
1043
1180
|
include Aws::Structure
|
1044
1181
|
end
|
1045
1182
|
|
1046
|
-
#
|
1183
|
+
# Request body for CreateVpcConnection.
|
1047
1184
|
#
|
1048
|
-
# @!attribute [rw]
|
1049
|
-
# The Amazon Resource Name (ARN) of the
|
1185
|
+
# @!attribute [rw] target_cluster_arn
|
1186
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
1050
1187
|
# @return [String]
|
1051
1188
|
#
|
1052
|
-
# @!attribute [rw]
|
1053
|
-
#
|
1189
|
+
# @!attribute [rw] authentication
|
1190
|
+
# @return [String]
|
1191
|
+
#
|
1192
|
+
# @!attribute [rw] vpc_id
|
1193
|
+
# The VPC ID of the VPC connection.
|
1194
|
+
# @return [String]
|
1195
|
+
#
|
1196
|
+
# @!attribute [rw] client_subnets
|
1197
|
+
# The list of subnets in the client VPC.
|
1198
|
+
# @return [Array<String>]
|
1199
|
+
#
|
1200
|
+
# @!attribute [rw] security_groups
|
1201
|
+
# The list of security groups to attach to the VPC connection.
|
1202
|
+
# @return [Array<String>]
|
1203
|
+
#
|
1204
|
+
# @!attribute [rw] tags
|
1205
|
+
# Create tags when creating the VPC connection.
|
1206
|
+
# @return [Hash<String,String>]
|
1207
|
+
#
|
1208
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateVpcConnectionRequest AWS API Documentation
|
1209
|
+
#
|
1210
|
+
class CreateVpcConnectionRequest < Struct.new(
|
1211
|
+
:target_cluster_arn,
|
1212
|
+
:authentication,
|
1213
|
+
:vpc_id,
|
1214
|
+
:client_subnets,
|
1215
|
+
:security_groups,
|
1216
|
+
:tags)
|
1217
|
+
SENSITIVE = []
|
1218
|
+
include Aws::Structure
|
1219
|
+
end
|
1220
|
+
|
1221
|
+
# Response body for CreateVpcConnection
|
1222
|
+
#
|
1223
|
+
# @!attribute [rw] vpc_connection_arn
|
1224
|
+
# The Amazon Resource Name (ARN) of the VPC connection.
|
1225
|
+
# @return [String]
|
1226
|
+
#
|
1227
|
+
# @!attribute [rw] state
|
1228
|
+
# The state of the VPC connection. The only possible state is
|
1229
|
+
# CREATING.
|
1230
|
+
# @return [String]
|
1231
|
+
#
|
1232
|
+
# @!attribute [rw] authentication
|
1233
|
+
# @return [String]
|
1234
|
+
#
|
1235
|
+
# @!attribute [rw] vpc_id
|
1236
|
+
# The VPC ID of the VPC connection.
|
1237
|
+
# @return [String]
|
1238
|
+
#
|
1239
|
+
# @!attribute [rw] client_subnets
|
1240
|
+
# The list of subnets in the client VPC.
|
1241
|
+
# @return [Array<String>]
|
1242
|
+
#
|
1243
|
+
# @!attribute [rw] security_groups
|
1244
|
+
# The list of security groups attached to the VPC connection.
|
1245
|
+
# @return [Array<String>]
|
1246
|
+
#
|
1247
|
+
# @!attribute [rw] creation_time
|
1248
|
+
# The time when the VPC connection was created.
|
1249
|
+
# @return [Time]
|
1250
|
+
#
|
1251
|
+
# @!attribute [rw] tags
|
1252
|
+
# Tags attached to the VPC connection.
|
1253
|
+
# @return [Hash<String,String>]
|
1254
|
+
#
|
1255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateVpcConnectionResponse AWS API Documentation
|
1256
|
+
#
|
1257
|
+
class CreateVpcConnectionResponse < Struct.new(
|
1258
|
+
:vpc_connection_arn,
|
1259
|
+
:state,
|
1260
|
+
:authentication,
|
1261
|
+
:vpc_id,
|
1262
|
+
:client_subnets,
|
1263
|
+
:security_groups,
|
1264
|
+
:creation_time,
|
1265
|
+
:tags)
|
1266
|
+
SENSITIVE = []
|
1267
|
+
include Aws::Structure
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
# @!attribute [rw] cluster_arn
|
1271
|
+
# @return [String]
|
1272
|
+
#
|
1273
|
+
# @!attribute [rw] current_version
|
1274
|
+
# @return [String]
|
1275
|
+
#
|
1276
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteClusterRequest AWS API Documentation
|
1277
|
+
#
|
1278
|
+
class DeleteClusterRequest < Struct.new(
|
1279
|
+
:cluster_arn,
|
1280
|
+
:current_version)
|
1281
|
+
SENSITIVE = []
|
1282
|
+
include Aws::Structure
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
# Returns information about the deleted cluster.
|
1286
|
+
#
|
1287
|
+
# @!attribute [rw] cluster_arn
|
1288
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
1289
|
+
# @return [String]
|
1290
|
+
#
|
1291
|
+
# @!attribute [rw] state
|
1292
|
+
# The state of the cluster. The possible states are ACTIVE, CREATING,
|
1293
|
+
# DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING\_BROKER, and
|
1294
|
+
# UPDATING.
|
1295
|
+
# @return [String]
|
1296
|
+
#
|
1297
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteClusterResponse AWS API Documentation
|
1298
|
+
#
|
1299
|
+
class DeleteClusterResponse < Struct.new(
|
1300
|
+
:cluster_arn,
|
1301
|
+
:state)
|
1302
|
+
SENSITIVE = []
|
1303
|
+
include Aws::Structure
|
1304
|
+
end
|
1305
|
+
|
1306
|
+
# Request body for DeleteConfiguration.
|
1307
|
+
#
|
1308
|
+
# @!attribute [rw] arn
|
1309
|
+
# The Amazon Resource Name (ARN) of the configuration.
|
1310
|
+
# @return [String]
|
1311
|
+
#
|
1312
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteConfigurationRequest AWS API Documentation
|
1313
|
+
#
|
1314
|
+
class DeleteConfigurationRequest < Struct.new(
|
1315
|
+
:arn)
|
1316
|
+
SENSITIVE = []
|
1317
|
+
include Aws::Structure
|
1318
|
+
end
|
1319
|
+
|
1320
|
+
# Response body for DeleteConfiguration.
|
1321
|
+
#
|
1322
|
+
# @!attribute [rw] arn
|
1323
|
+
# The Amazon Resource Name (ARN) of the configuration.
|
1324
|
+
# @return [String]
|
1325
|
+
#
|
1326
|
+
# @!attribute [rw] state
|
1327
|
+
# The state of the configuration. The possible states are ACTIVE,
|
1054
1328
|
# DELETING and DELETE\_FAILED.
|
1055
1329
|
# @return [String]
|
1056
1330
|
#
|
@@ -1063,13 +1337,73 @@ module Aws::Kafka
|
|
1063
1337
|
include Aws::Structure
|
1064
1338
|
end
|
1065
1339
|
|
1066
|
-
#
|
1067
|
-
#
|
1340
|
+
# @!attribute [rw] current_version
|
1341
|
+
# @return [String]
|
1342
|
+
#
|
1343
|
+
# @!attribute [rw] replicator_arn
|
1344
|
+
# @return [String]
|
1345
|
+
#
|
1346
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteReplicatorRequest AWS API Documentation
|
1068
1347
|
#
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1348
|
+
class DeleteReplicatorRequest < Struct.new(
|
1349
|
+
:current_version,
|
1350
|
+
:replicator_arn)
|
1351
|
+
SENSITIVE = []
|
1352
|
+
include Aws::Structure
|
1353
|
+
end
|
1354
|
+
|
1355
|
+
# Returns information about the deleted replicator.
|
1356
|
+
#
|
1357
|
+
# @!attribute [rw] replicator_arn
|
1358
|
+
# The Amazon Resource Name (ARN) of the replicator.
|
1359
|
+
# @return [String]
|
1360
|
+
#
|
1361
|
+
# @!attribute [rw] replicator_state
|
1362
|
+
# The state of the replicator.
|
1363
|
+
# @return [String]
|
1364
|
+
#
|
1365
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteReplicatorResponse AWS API Documentation
|
1366
|
+
#
|
1367
|
+
class DeleteReplicatorResponse < Struct.new(
|
1368
|
+
:replicator_arn,
|
1369
|
+
:replicator_state)
|
1370
|
+
SENSITIVE = []
|
1371
|
+
include Aws::Structure
|
1372
|
+
end
|
1373
|
+
|
1374
|
+
# Request body for DeleteVpcConnection.
|
1375
|
+
#
|
1376
|
+
# @!attribute [rw] arn
|
1377
|
+
# @return [String]
|
1072
1378
|
#
|
1379
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteVpcConnectionRequest AWS API Documentation
|
1380
|
+
#
|
1381
|
+
class DeleteVpcConnectionRequest < Struct.new(
|
1382
|
+
:arn)
|
1383
|
+
SENSITIVE = []
|
1384
|
+
include Aws::Structure
|
1385
|
+
end
|
1386
|
+
|
1387
|
+
# Response body for DeleteVpcConnection.
|
1388
|
+
#
|
1389
|
+
# @!attribute [rw] vpc_connection_arn
|
1390
|
+
# The Amazon Resource Name (ARN) of the VPC connection.
|
1391
|
+
# @return [String]
|
1392
|
+
#
|
1393
|
+
# @!attribute [rw] state
|
1394
|
+
# The state of the VPC connection. The only possible state is
|
1395
|
+
# DELETING.
|
1396
|
+
# @return [String]
|
1397
|
+
#
|
1398
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteVpcConnectionResponse AWS API Documentation
|
1399
|
+
#
|
1400
|
+
class DeleteVpcConnectionResponse < Struct.new(
|
1401
|
+
:vpc_connection_arn,
|
1402
|
+
:state)
|
1403
|
+
SENSITIVE = []
|
1404
|
+
include Aws::Structure
|
1405
|
+
end
|
1406
|
+
|
1073
1407
|
# @!attribute [rw] cluster_operation_arn
|
1074
1408
|
# @return [String]
|
1075
1409
|
#
|
@@ -1081,6 +1415,17 @@ module Aws::Kafka
|
|
1081
1415
|
include Aws::Structure
|
1082
1416
|
end
|
1083
1417
|
|
1418
|
+
# @!attribute [rw] cluster_operation_arn
|
1419
|
+
# @return [String]
|
1420
|
+
#
|
1421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterOperationV2Request AWS API Documentation
|
1422
|
+
#
|
1423
|
+
class DescribeClusterOperationV2Request < Struct.new(
|
1424
|
+
:cluster_operation_arn)
|
1425
|
+
SENSITIVE = []
|
1426
|
+
include Aws::Structure
|
1427
|
+
end
|
1428
|
+
|
1084
1429
|
# Information about a cluster operation.
|
1085
1430
|
#
|
1086
1431
|
# @!attribute [rw] cluster_operation_info
|
@@ -1095,13 +1440,20 @@ module Aws::Kafka
|
|
1095
1440
|
include Aws::Structure
|
1096
1441
|
end
|
1097
1442
|
|
1098
|
-
#
|
1099
|
-
# data as a hash:
|
1443
|
+
# Information about a cluster operation.
|
1100
1444
|
#
|
1101
|
-
#
|
1102
|
-
#
|
1103
|
-
#
|
1445
|
+
# @!attribute [rw] cluster_operation_info
|
1446
|
+
# Cluster operation information
|
1447
|
+
# @return [Types::ClusterOperationV2]
|
1104
1448
|
#
|
1449
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterOperationV2Response AWS API Documentation
|
1450
|
+
#
|
1451
|
+
class DescribeClusterOperationV2Response < Struct.new(
|
1452
|
+
:cluster_operation_info)
|
1453
|
+
SENSITIVE = []
|
1454
|
+
include Aws::Structure
|
1455
|
+
end
|
1456
|
+
|
1105
1457
|
# @!attribute [rw] cluster_arn
|
1106
1458
|
# @return [String]
|
1107
1459
|
#
|
@@ -1127,13 +1479,6 @@ module Aws::Kafka
|
|
1127
1479
|
include Aws::Structure
|
1128
1480
|
end
|
1129
1481
|
|
1130
|
-
# @note When making an API call, you may pass DescribeConfigurationRequest
|
1131
|
-
# data as a hash:
|
1132
|
-
#
|
1133
|
-
# {
|
1134
|
-
# arn: "__string", # required
|
1135
|
-
# }
|
1136
|
-
#
|
1137
1482
|
# @!attribute [rw] arn
|
1138
1483
|
# @return [String]
|
1139
1484
|
#
|
@@ -1192,14 +1537,6 @@ module Aws::Kafka
|
|
1192
1537
|
include Aws::Structure
|
1193
1538
|
end
|
1194
1539
|
|
1195
|
-
# @note When making an API call, you may pass DescribeConfigurationRevisionRequest
|
1196
|
-
# data as a hash:
|
1197
|
-
#
|
1198
|
-
# {
|
1199
|
-
# arn: "__string", # required
|
1200
|
-
# revision: 1, # required
|
1201
|
-
# }
|
1202
|
-
#
|
1203
1540
|
# @!attribute [rw] arn
|
1204
1541
|
# @return [String]
|
1205
1542
|
#
|
@@ -1248,15 +1585,163 @@ module Aws::Kafka
|
|
1248
1585
|
include Aws::Structure
|
1249
1586
|
end
|
1250
1587
|
|
1251
|
-
#
|
1588
|
+
# @!attribute [rw] replicator_arn
|
1589
|
+
# @return [String]
|
1252
1590
|
#
|
1253
|
-
# @
|
1254
|
-
# data as a hash:
|
1591
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeReplicatorRequest AWS API Documentation
|
1255
1592
|
#
|
1256
|
-
|
1257
|
-
|
1258
|
-
|
1259
|
-
|
1593
|
+
class DescribeReplicatorRequest < Struct.new(
|
1594
|
+
:replicator_arn)
|
1595
|
+
SENSITIVE = []
|
1596
|
+
include Aws::Structure
|
1597
|
+
end
|
1598
|
+
|
1599
|
+
# Response body for DescribeReplicator.
|
1600
|
+
#
|
1601
|
+
# @!attribute [rw] creation_time
|
1602
|
+
# The time when the replicator was created.
|
1603
|
+
# @return [Time]
|
1604
|
+
#
|
1605
|
+
# @!attribute [rw] current_version
|
1606
|
+
# The current version number of the replicator.
|
1607
|
+
# @return [String]
|
1608
|
+
#
|
1609
|
+
# @!attribute [rw] is_replicator_reference
|
1610
|
+
# Whether this resource is a replicator reference.
|
1611
|
+
# @return [Boolean]
|
1612
|
+
#
|
1613
|
+
# @!attribute [rw] kafka_clusters
|
1614
|
+
# Kafka Clusters used in setting up sources / targets for replication.
|
1615
|
+
# @return [Array<Types::KafkaClusterDescription>]
|
1616
|
+
#
|
1617
|
+
# @!attribute [rw] replication_info_list
|
1618
|
+
# A list of replication configurations, where each configuration
|
1619
|
+
# targets a given source cluster to target cluster replication flow.
|
1620
|
+
# @return [Array<Types::ReplicationInfoDescription>]
|
1621
|
+
#
|
1622
|
+
# @!attribute [rw] replicator_arn
|
1623
|
+
# The Amazon Resource Name (ARN) of the replicator.
|
1624
|
+
# @return [String]
|
1625
|
+
#
|
1626
|
+
# @!attribute [rw] replicator_description
|
1627
|
+
# The description of the replicator.
|
1628
|
+
# @return [String]
|
1629
|
+
#
|
1630
|
+
# @!attribute [rw] replicator_name
|
1631
|
+
# The name of the replicator.
|
1632
|
+
# @return [String]
|
1633
|
+
#
|
1634
|
+
# @!attribute [rw] replicator_resource_arn
|
1635
|
+
# The Amazon Resource Name (ARN) of the replicator resource in the
|
1636
|
+
# region where the replicator was created.
|
1637
|
+
# @return [String]
|
1638
|
+
#
|
1639
|
+
# @!attribute [rw] replicator_state
|
1640
|
+
# State of the replicator.
|
1641
|
+
# @return [String]
|
1642
|
+
#
|
1643
|
+
# @!attribute [rw] service_execution_role_arn
|
1644
|
+
# The Amazon Resource Name (ARN) of the IAM role used by the
|
1645
|
+
# replicator to access resources in the customer's account (e.g
|
1646
|
+
# source and target clusters)
|
1647
|
+
# @return [String]
|
1648
|
+
#
|
1649
|
+
# @!attribute [rw] state_info
|
1650
|
+
# Details about the state of the replicator.
|
1651
|
+
# @return [Types::ReplicationStateInfo]
|
1652
|
+
#
|
1653
|
+
# @!attribute [rw] tags
|
1654
|
+
# List of tags attached to the Replicator.
|
1655
|
+
# @return [Hash<String,String>]
|
1656
|
+
#
|
1657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeReplicatorResponse AWS API Documentation
|
1658
|
+
#
|
1659
|
+
class DescribeReplicatorResponse < Struct.new(
|
1660
|
+
:creation_time,
|
1661
|
+
:current_version,
|
1662
|
+
:is_replicator_reference,
|
1663
|
+
:kafka_clusters,
|
1664
|
+
:replication_info_list,
|
1665
|
+
:replicator_arn,
|
1666
|
+
:replicator_description,
|
1667
|
+
:replicator_name,
|
1668
|
+
:replicator_resource_arn,
|
1669
|
+
:replicator_state,
|
1670
|
+
:service_execution_role_arn,
|
1671
|
+
:state_info,
|
1672
|
+
:tags)
|
1673
|
+
SENSITIVE = []
|
1674
|
+
include Aws::Structure
|
1675
|
+
end
|
1676
|
+
|
1677
|
+
# @!attribute [rw] arn
|
1678
|
+
# @return [String]
|
1679
|
+
#
|
1680
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeVpcConnectionRequest AWS API Documentation
|
1681
|
+
#
|
1682
|
+
class DescribeVpcConnectionRequest < Struct.new(
|
1683
|
+
:arn)
|
1684
|
+
SENSITIVE = []
|
1685
|
+
include Aws::Structure
|
1686
|
+
end
|
1687
|
+
|
1688
|
+
# Response body for DescribeVpcConnection.
|
1689
|
+
#
|
1690
|
+
# @!attribute [rw] vpc_connection_arn
|
1691
|
+
# The Amazon Resource Name (ARN) of the VPC connection.
|
1692
|
+
# @return [String]
|
1693
|
+
#
|
1694
|
+
# @!attribute [rw] target_cluster_arn
|
1695
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
1696
|
+
# @return [String]
|
1697
|
+
#
|
1698
|
+
# @!attribute [rw] state
|
1699
|
+
# The state of the VPC connection. The possible states are AVAILABLE,
|
1700
|
+
# INACTIVE, DEACTIVATING, DELETING, CREATING, REJECTING, REJECTED and
|
1701
|
+
# FAILED.
|
1702
|
+
# @return [String]
|
1703
|
+
#
|
1704
|
+
# @!attribute [rw] authentication
|
1705
|
+
# The authentication type of the VPC connection.
|
1706
|
+
# @return [String]
|
1707
|
+
#
|
1708
|
+
# @!attribute [rw] vpc_id
|
1709
|
+
# The VPC ID of the VPC connection.
|
1710
|
+
# @return [String]
|
1711
|
+
#
|
1712
|
+
# @!attribute [rw] subnets
|
1713
|
+
# The list of subnets in the client VPC.
|
1714
|
+
# @return [Array<String>]
|
1715
|
+
#
|
1716
|
+
# @!attribute [rw] security_groups
|
1717
|
+
# The list of security groups attached to the VPC connection.
|
1718
|
+
# @return [Array<String>]
|
1719
|
+
#
|
1720
|
+
# @!attribute [rw] creation_time
|
1721
|
+
# The creation time of the VPC connection.
|
1722
|
+
# @return [Time]
|
1723
|
+
#
|
1724
|
+
# @!attribute [rw] tags
|
1725
|
+
# Tags attached to the VPC connection.
|
1726
|
+
# @return [Hash<String,String>]
|
1727
|
+
#
|
1728
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeVpcConnectionResponse AWS API Documentation
|
1729
|
+
#
|
1730
|
+
class DescribeVpcConnectionResponse < Struct.new(
|
1731
|
+
:vpc_connection_arn,
|
1732
|
+
:target_cluster_arn,
|
1733
|
+
:state,
|
1734
|
+
:authentication,
|
1735
|
+
:vpc_id,
|
1736
|
+
:subnets,
|
1737
|
+
:security_groups,
|
1738
|
+
:creation_time,
|
1739
|
+
:tags)
|
1740
|
+
SENSITIVE = []
|
1741
|
+
include Aws::Structure
|
1742
|
+
end
|
1743
|
+
|
1744
|
+
# Request body for BatchDisassociateScramSecret.
|
1260
1745
|
#
|
1261
1746
|
# @!attribute [rw] cluster_arn
|
1262
1747
|
# @return [String]
|
@@ -1296,12 +1781,9 @@ module Aws::Kafka
|
|
1296
1781
|
# Contains information about the EBS storage volumes attached to Apache
|
1297
1782
|
# Kafka broker nodes.
|
1298
1783
|
#
|
1299
|
-
#
|
1300
|
-
#
|
1301
|
-
#
|
1302
|
-
# {
|
1303
|
-
# volume_size: 1,
|
1304
|
-
# }
|
1784
|
+
# @!attribute [rw] provisioned_throughput
|
1785
|
+
# EBS volume provisioned throughput information.
|
1786
|
+
# @return [Types::ProvisionedThroughput]
|
1305
1787
|
#
|
1306
1788
|
# @!attribute [rw] volume_size
|
1307
1789
|
# The size in GiB of the EBS volume for the data drive on each broker
|
@@ -1311,6 +1793,7 @@ module Aws::Kafka
|
|
1311
1793
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/EBSStorageInfo AWS API Documentation
|
1312
1794
|
#
|
1313
1795
|
class EBSStorageInfo < Struct.new(
|
1796
|
+
:provisioned_throughput,
|
1314
1797
|
:volume_size)
|
1315
1798
|
SENSITIVE = []
|
1316
1799
|
include Aws::Structure
|
@@ -1318,13 +1801,6 @@ module Aws::Kafka
|
|
1318
1801
|
|
1319
1802
|
# The data-volume encryption details.
|
1320
1803
|
#
|
1321
|
-
# @note When making an API call, you may pass EncryptionAtRest
|
1322
|
-
# data as a hash:
|
1323
|
-
#
|
1324
|
-
# {
|
1325
|
-
# data_volume_kms_key_id: "__string", # required
|
1326
|
-
# }
|
1327
|
-
#
|
1328
1804
|
# @!attribute [rw] data_volume_kms_key_id
|
1329
1805
|
# The ARN of the AWS KMS key for encrypting data at rest. If you
|
1330
1806
|
# don't specify a KMS key, MSK creates one for you and uses it.
|
@@ -1340,14 +1816,6 @@ module Aws::Kafka
|
|
1340
1816
|
|
1341
1817
|
# The settings for encrypting data in transit.
|
1342
1818
|
#
|
1343
|
-
# @note When making an API call, you may pass EncryptionInTransit
|
1344
|
-
# data as a hash:
|
1345
|
-
#
|
1346
|
-
# {
|
1347
|
-
# client_broker: "TLS", # accepts TLS, TLS_PLAINTEXT, PLAINTEXT
|
1348
|
-
# in_cluster: false,
|
1349
|
-
# }
|
1350
|
-
#
|
1351
1819
|
# @!attribute [rw] client_broker
|
1352
1820
|
# Indicates the encryption setting for data in transit between clients
|
1353
1821
|
# and brokers. You must set it to one of the following values.
|
@@ -1384,19 +1852,6 @@ module Aws::Kafka
|
|
1384
1852
|
# for encrypting data at rest and whether you want MSK to encrypt your
|
1385
1853
|
# data in transit.
|
1386
1854
|
#
|
1387
|
-
# @note When making an API call, you may pass EncryptionInfo
|
1388
|
-
# data as a hash:
|
1389
|
-
#
|
1390
|
-
# {
|
1391
|
-
# encryption_at_rest: {
|
1392
|
-
# data_volume_kms_key_id: "__string", # required
|
1393
|
-
# },
|
1394
|
-
# encryption_in_transit: {
|
1395
|
-
# client_broker: "TLS", # accepts TLS, TLS_PLAINTEXT, PLAINTEXT
|
1396
|
-
# in_cluster: false,
|
1397
|
-
# },
|
1398
|
-
# }
|
1399
|
-
#
|
1400
1855
|
# @!attribute [rw] encryption_at_rest
|
1401
1856
|
# The data-volume encryption details.
|
1402
1857
|
# @return [Types::EncryptionAtRest]
|
@@ -1435,14 +1890,6 @@ module Aws::Kafka
|
|
1435
1890
|
|
1436
1891
|
# Firehose details for BrokerLogs.
|
1437
1892
|
#
|
1438
|
-
# @note When making an API call, you may pass Firehose
|
1439
|
-
# data as a hash:
|
1440
|
-
#
|
1441
|
-
# {
|
1442
|
-
# delivery_stream: "__string",
|
1443
|
-
# enabled: false, # required
|
1444
|
-
# }
|
1445
|
-
#
|
1446
1893
|
# @!attribute [rw] delivery_stream
|
1447
1894
|
# The Kinesis Data Firehose delivery stream that is the destination
|
1448
1895
|
# for broker logs.
|
@@ -1498,13 +1945,6 @@ module Aws::Kafka
|
|
1498
1945
|
include Aws::Structure
|
1499
1946
|
end
|
1500
1947
|
|
1501
|
-
# @note When making an API call, you may pass GetBootstrapBrokersRequest
|
1502
|
-
# data as a hash:
|
1503
|
-
#
|
1504
|
-
# {
|
1505
|
-
# cluster_arn: "__string", # required
|
1506
|
-
# }
|
1507
|
-
#
|
1508
1948
|
# @!attribute [rw] cluster_arn
|
1509
1949
|
# @return [String]
|
1510
1950
|
#
|
@@ -1564,6 +2004,21 @@ module Aws::Kafka
|
|
1564
2004
|
# <programlisting>\{ "BootstrapBrokerStringSaslIam": "b-3.exampleClusterName.abcde.c2.kafka.us-east-1.amazonaws.com:9098,b-1.exampleClusterName.abcde.c2.kafka.us-east-1.amazonaws.com:9098,b-2.exampleClusterName.abcde.c2.kafka.us-east-1.amazonaws.com:9098" \}</programlisting>
|
1565
2005
|
# @return [String]
|
1566
2006
|
#
|
2007
|
+
# @!attribute [rw] bootstrap_broker_string_vpc_connectivity_tls
|
2008
|
+
# A string containing one or more dns name (or IP) and Tls port pairs
|
2009
|
+
# for VPC connectivity.
|
2010
|
+
# @return [String]
|
2011
|
+
#
|
2012
|
+
# @!attribute [rw] bootstrap_broker_string_vpc_connectivity_sasl_scram
|
2013
|
+
# A string containing one or more dns name (or IP) and SASL SCRAM port
|
2014
|
+
# pairs for VPC connectivity.
|
2015
|
+
# @return [String]
|
2016
|
+
#
|
2017
|
+
# @!attribute [rw] bootstrap_broker_string_vpc_connectivity_sasl_iam
|
2018
|
+
# A string containing one or more dns name (or IP) and SASL IAM port
|
2019
|
+
# pairs for VPC connectivity.
|
2020
|
+
# @return [String]
|
2021
|
+
#
|
1567
2022
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetBootstrapBrokersResponse AWS API Documentation
|
1568
2023
|
#
|
1569
2024
|
class GetBootstrapBrokersResponse < Struct.new(
|
@@ -1573,18 +2028,14 @@ module Aws::Kafka
|
|
1573
2028
|
:bootstrap_broker_string_public_tls,
|
1574
2029
|
:bootstrap_broker_string_tls,
|
1575
2030
|
:bootstrap_broker_string_sasl_scram,
|
1576
|
-
:bootstrap_broker_string_sasl_iam
|
2031
|
+
:bootstrap_broker_string_sasl_iam,
|
2032
|
+
:bootstrap_broker_string_vpc_connectivity_tls,
|
2033
|
+
:bootstrap_broker_string_vpc_connectivity_sasl_scram,
|
2034
|
+
:bootstrap_broker_string_vpc_connectivity_sasl_iam)
|
1577
2035
|
SENSITIVE = []
|
1578
2036
|
include Aws::Structure
|
1579
2037
|
end
|
1580
2038
|
|
1581
|
-
# @note When making an API call, you may pass GetCompatibleKafkaVersionsRequest
|
1582
|
-
# data as a hash:
|
1583
|
-
#
|
1584
|
-
# {
|
1585
|
-
# cluster_arn: "__string",
|
1586
|
-
# }
|
1587
|
-
#
|
1588
2039
|
# @!attribute [rw] cluster_arn
|
1589
2040
|
# @return [String]
|
1590
2041
|
#
|
@@ -1627,6 +2078,94 @@ module Aws::Kafka
|
|
1627
2078
|
include Aws::Structure
|
1628
2079
|
end
|
1629
2080
|
|
2081
|
+
# Information about Kafka Cluster to be used as source / target for
|
2082
|
+
# replication.
|
2083
|
+
#
|
2084
|
+
# @!attribute [rw] amazon_msk_cluster
|
2085
|
+
# Details of an Amazon MSK Cluster.
|
2086
|
+
# @return [Types::AmazonMskCluster]
|
2087
|
+
#
|
2088
|
+
# @!attribute [rw] vpc_config
|
2089
|
+
# Details of an Amazon VPC which has network connectivity to the
|
2090
|
+
# Apache Kafka cluster.
|
2091
|
+
# @return [Types::KafkaClusterClientVpcConfig]
|
2092
|
+
#
|
2093
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaCluster AWS API Documentation
|
2094
|
+
#
|
2095
|
+
class KafkaCluster < Struct.new(
|
2096
|
+
:amazon_msk_cluster,
|
2097
|
+
:vpc_config)
|
2098
|
+
SENSITIVE = []
|
2099
|
+
include Aws::Structure
|
2100
|
+
end
|
2101
|
+
|
2102
|
+
# @!attribute [rw] security_group_ids
|
2103
|
+
# The security groups to attach to the ENIs for the broker nodes.
|
2104
|
+
# @return [Array<String>]
|
2105
|
+
#
|
2106
|
+
# @!attribute [rw] subnet_ids
|
2107
|
+
# The list of subnets in the client VPC to connect to.
|
2108
|
+
# @return [Array<String>]
|
2109
|
+
#
|
2110
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterClientVpcConfig AWS API Documentation
|
2111
|
+
#
|
2112
|
+
class KafkaClusterClientVpcConfig < Struct.new(
|
2113
|
+
:security_group_ids,
|
2114
|
+
:subnet_ids)
|
2115
|
+
SENSITIVE = []
|
2116
|
+
include Aws::Structure
|
2117
|
+
end
|
2118
|
+
|
2119
|
+
# Information about Kafka Cluster used as source / target for
|
2120
|
+
# replication.
|
2121
|
+
#
|
2122
|
+
# @!attribute [rw] amazon_msk_cluster
|
2123
|
+
# Details of an Amazon MSK Cluster.
|
2124
|
+
# @return [Types::AmazonMskCluster]
|
2125
|
+
#
|
2126
|
+
# @!attribute [rw] kafka_cluster_alias
|
2127
|
+
# The alias of the Kafka cluster. Used to prefix names of replicated
|
2128
|
+
# topics.
|
2129
|
+
# @return [String]
|
2130
|
+
#
|
2131
|
+
# @!attribute [rw] vpc_config
|
2132
|
+
# Details of an Amazon VPC which has network connectivity to the
|
2133
|
+
# Apache Kafka cluster.
|
2134
|
+
# @return [Types::KafkaClusterClientVpcConfig]
|
2135
|
+
#
|
2136
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterDescription AWS API Documentation
|
2137
|
+
#
|
2138
|
+
class KafkaClusterDescription < Struct.new(
|
2139
|
+
:amazon_msk_cluster,
|
2140
|
+
:kafka_cluster_alias,
|
2141
|
+
:vpc_config)
|
2142
|
+
SENSITIVE = []
|
2143
|
+
include Aws::Structure
|
2144
|
+
end
|
2145
|
+
|
2146
|
+
# Summarized information about Kafka Cluster used as source / target for
|
2147
|
+
# replication.
|
2148
|
+
#
|
2149
|
+
# @!attribute [rw] amazon_msk_cluster
|
2150
|
+
# Details of an Amazon MSK Cluster
|
2151
|
+
#
|
2152
|
+
# .
|
2153
|
+
# @return [Types::AmazonMskCluster]
|
2154
|
+
#
|
2155
|
+
# @!attribute [rw] kafka_cluster_alias
|
2156
|
+
# The alias of the Kafka cluster. Used to prefix names of replicated
|
2157
|
+
# topics.
|
2158
|
+
# @return [String]
|
2159
|
+
#
|
2160
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterSummary AWS API Documentation
|
2161
|
+
#
|
2162
|
+
class KafkaClusterSummary < Struct.new(
|
2163
|
+
:amazon_msk_cluster,
|
2164
|
+
:kafka_cluster_alias)
|
2165
|
+
SENSITIVE = []
|
2166
|
+
include Aws::Structure
|
2167
|
+
end
|
2168
|
+
|
1630
2169
|
# Information about a Apache Kafka version.
|
1631
2170
|
#
|
1632
2171
|
# @!attribute [rw] version
|
@@ -1646,15 +2185,6 @@ module Aws::Kafka
|
|
1646
2185
|
include Aws::Structure
|
1647
2186
|
end
|
1648
2187
|
|
1649
|
-
# @note When making an API call, you may pass ListClusterOperationsRequest
|
1650
|
-
# data as a hash:
|
1651
|
-
#
|
1652
|
-
# {
|
1653
|
-
# cluster_arn: "__string", # required
|
1654
|
-
# max_results: 1,
|
1655
|
-
# next_token: "__string",
|
1656
|
-
# }
|
1657
|
-
#
|
1658
2188
|
# @!attribute [rw] cluster_arn
|
1659
2189
|
# @return [String]
|
1660
2190
|
#
|
@@ -1674,6 +2204,25 @@ module Aws::Kafka
|
|
1674
2204
|
include Aws::Structure
|
1675
2205
|
end
|
1676
2206
|
|
2207
|
+
# @!attribute [rw] cluster_arn
|
2208
|
+
# @return [String]
|
2209
|
+
#
|
2210
|
+
# @!attribute [rw] max_results
|
2211
|
+
# @return [Integer]
|
2212
|
+
#
|
2213
|
+
# @!attribute [rw] next_token
|
2214
|
+
# @return [String]
|
2215
|
+
#
|
2216
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusterOperationsV2Request AWS API Documentation
|
2217
|
+
#
|
2218
|
+
class ListClusterOperationsV2Request < Struct.new(
|
2219
|
+
:cluster_arn,
|
2220
|
+
:max_results,
|
2221
|
+
:next_token)
|
2222
|
+
SENSITIVE = []
|
2223
|
+
include Aws::Structure
|
2224
|
+
end
|
2225
|
+
|
1677
2226
|
# The response contains an array containing cluster operation
|
1678
2227
|
# information and a next token if the response is truncated.
|
1679
2228
|
#
|
@@ -1696,16 +2245,24 @@ module Aws::Kafka
|
|
1696
2245
|
include Aws::Structure
|
1697
2246
|
end
|
1698
2247
|
|
1699
|
-
#
|
1700
|
-
#
|
2248
|
+
# The response contains an array containing cluster operation
|
2249
|
+
# information and a next token if the response is truncated.
|
1701
2250
|
#
|
1702
|
-
#
|
1703
|
-
#
|
1704
|
-
# cluster_type_filter: "__string",
|
1705
|
-
# max_results: 1,
|
1706
|
-
# next_token: "__string",
|
1707
|
-
# }
|
2251
|
+
# @!attribute [rw] cluster_operation_info_list
|
2252
|
+
# @return [Array<Types::ClusterOperationV2Summary>]
|
1708
2253
|
#
|
2254
|
+
# @!attribute [rw] next_token
|
2255
|
+
# @return [String]
|
2256
|
+
#
|
2257
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusterOperationsV2Response AWS API Documentation
|
2258
|
+
#
|
2259
|
+
class ListClusterOperationsV2Response < Struct.new(
|
2260
|
+
:cluster_operation_info_list,
|
2261
|
+
:next_token)
|
2262
|
+
SENSITIVE = []
|
2263
|
+
include Aws::Structure
|
2264
|
+
end
|
2265
|
+
|
1709
2266
|
# @!attribute [rw] cluster_name_filter
|
1710
2267
|
# Specify a prefix of the names of the clusters that you want to list.
|
1711
2268
|
# The service lists all the clusters whose names start with this
|
@@ -1764,109 +2321,6 @@ module Aws::Kafka
|
|
1764
2321
|
# Creates a new Amazon MSK cluster of either the provisioned or the
|
1765
2322
|
# serverless type.
|
1766
2323
|
#
|
1767
|
-
# @note When making an API call, you may pass CreateClusterV2Request
|
1768
|
-
# data as a hash:
|
1769
|
-
#
|
1770
|
-
# {
|
1771
|
-
# cluster_name: "__stringMin1Max64", # required
|
1772
|
-
# tags: {
|
1773
|
-
# "__string" => "__string",
|
1774
|
-
# },
|
1775
|
-
# provisioned: {
|
1776
|
-
# broker_node_group_info: { # required
|
1777
|
-
# broker_az_distribution: "DEFAULT", # accepts DEFAULT
|
1778
|
-
# client_subnets: ["__string"], # required
|
1779
|
-
# instance_type: "__stringMin5Max32", # required
|
1780
|
-
# security_groups: ["__string"],
|
1781
|
-
# storage_info: {
|
1782
|
-
# ebs_storage_info: {
|
1783
|
-
# volume_size: 1,
|
1784
|
-
# },
|
1785
|
-
# },
|
1786
|
-
# connectivity_info: {
|
1787
|
-
# public_access: {
|
1788
|
-
# type: "__string",
|
1789
|
-
# },
|
1790
|
-
# },
|
1791
|
-
# },
|
1792
|
-
# client_authentication: {
|
1793
|
-
# sasl: {
|
1794
|
-
# scram: {
|
1795
|
-
# enabled: false,
|
1796
|
-
# },
|
1797
|
-
# iam: {
|
1798
|
-
# enabled: false,
|
1799
|
-
# },
|
1800
|
-
# },
|
1801
|
-
# tls: {
|
1802
|
-
# certificate_authority_arn_list: ["__string"],
|
1803
|
-
# enabled: false,
|
1804
|
-
# },
|
1805
|
-
# unauthenticated: {
|
1806
|
-
# enabled: false,
|
1807
|
-
# },
|
1808
|
-
# },
|
1809
|
-
# configuration_info: {
|
1810
|
-
# arn: "__string", # required
|
1811
|
-
# revision: 1, # required
|
1812
|
-
# },
|
1813
|
-
# encryption_info: {
|
1814
|
-
# encryption_at_rest: {
|
1815
|
-
# data_volume_kms_key_id: "__string", # required
|
1816
|
-
# },
|
1817
|
-
# encryption_in_transit: {
|
1818
|
-
# client_broker: "TLS", # accepts TLS, TLS_PLAINTEXT, PLAINTEXT
|
1819
|
-
# in_cluster: false,
|
1820
|
-
# },
|
1821
|
-
# },
|
1822
|
-
# enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
|
1823
|
-
# open_monitoring: {
|
1824
|
-
# prometheus: { # required
|
1825
|
-
# jmx_exporter: {
|
1826
|
-
# enabled_in_broker: false, # required
|
1827
|
-
# },
|
1828
|
-
# node_exporter: {
|
1829
|
-
# enabled_in_broker: false, # required
|
1830
|
-
# },
|
1831
|
-
# },
|
1832
|
-
# },
|
1833
|
-
# kafka_version: "__stringMin1Max128", # required
|
1834
|
-
# logging_info: {
|
1835
|
-
# broker_logs: { # required
|
1836
|
-
# cloud_watch_logs: {
|
1837
|
-
# enabled: false, # required
|
1838
|
-
# log_group: "__string",
|
1839
|
-
# },
|
1840
|
-
# firehose: {
|
1841
|
-
# delivery_stream: "__string",
|
1842
|
-
# enabled: false, # required
|
1843
|
-
# },
|
1844
|
-
# s3: {
|
1845
|
-
# bucket: "__string",
|
1846
|
-
# enabled: false, # required
|
1847
|
-
# prefix: "__string",
|
1848
|
-
# },
|
1849
|
-
# },
|
1850
|
-
# },
|
1851
|
-
# number_of_broker_nodes: 1, # required
|
1852
|
-
# },
|
1853
|
-
# serverless: {
|
1854
|
-
# vpc_configs: [ # required
|
1855
|
-
# {
|
1856
|
-
# subnet_ids: ["__string"], # required
|
1857
|
-
# security_group_ids: ["__string"],
|
1858
|
-
# },
|
1859
|
-
# ],
|
1860
|
-
# client_authentication: {
|
1861
|
-
# sasl: {
|
1862
|
-
# iam: {
|
1863
|
-
# enabled: false,
|
1864
|
-
# },
|
1865
|
-
# },
|
1866
|
-
# },
|
1867
|
-
# },
|
1868
|
-
# }
|
1869
|
-
#
|
1870
2324
|
# @!attribute [rw] cluster_name
|
1871
2325
|
# The name of the cluster.
|
1872
2326
|
# @return [String]
|
@@ -1885,78 +2339,157 @@ module Aws::Kafka
|
|
1885
2339
|
#
|
1886
2340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateClusterV2Request AWS API Documentation
|
1887
2341
|
#
|
1888
|
-
class CreateClusterV2Request < Struct.new(
|
1889
|
-
:cluster_name,
|
1890
|
-
:tags,
|
1891
|
-
:provisioned,
|
1892
|
-
:serverless)
|
2342
|
+
class CreateClusterV2Request < Struct.new(
|
2343
|
+
:cluster_name,
|
2344
|
+
:tags,
|
2345
|
+
:provisioned,
|
2346
|
+
:serverless)
|
2347
|
+
SENSITIVE = []
|
2348
|
+
include Aws::Structure
|
2349
|
+
end
|
2350
|
+
|
2351
|
+
# Returns information about the created cluster of either the
|
2352
|
+
# provisioned or the serverless type.
|
2353
|
+
#
|
2354
|
+
# @!attribute [rw] cluster_arn
|
2355
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
2356
|
+
# @return [String]
|
2357
|
+
#
|
2358
|
+
# @!attribute [rw] cluster_name
|
2359
|
+
# The name of the MSK cluster.
|
2360
|
+
# @return [String]
|
2361
|
+
#
|
2362
|
+
# @!attribute [rw] state
|
2363
|
+
# The state of the cluster. The possible states are ACTIVE, CREATING,
|
2364
|
+
# DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING\_BROKER, and
|
2365
|
+
# UPDATING.
|
2366
|
+
# @return [String]
|
2367
|
+
#
|
2368
|
+
# @!attribute [rw] cluster_type
|
2369
|
+
# The type of the cluster. The possible types are PROVISIONED or
|
2370
|
+
# SERVERLESS.
|
2371
|
+
# @return [String]
|
2372
|
+
#
|
2373
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateClusterV2Response AWS API Documentation
|
2374
|
+
#
|
2375
|
+
class CreateClusterV2Response < Struct.new(
|
2376
|
+
:cluster_arn,
|
2377
|
+
:cluster_name,
|
2378
|
+
:state,
|
2379
|
+
:cluster_type)
|
2380
|
+
SENSITIVE = []
|
2381
|
+
include Aws::Structure
|
2382
|
+
end
|
2383
|
+
|
2384
|
+
# @!attribute [rw] cluster_arn
|
2385
|
+
# The Amazon Resource Name (ARN) that uniquely identifies the cluster.
|
2386
|
+
# @return [String]
|
2387
|
+
#
|
2388
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterV2Request AWS API Documentation
|
2389
|
+
#
|
2390
|
+
class DescribeClusterV2Request < Struct.new(
|
2391
|
+
:cluster_arn)
|
2392
|
+
SENSITIVE = []
|
2393
|
+
include Aws::Structure
|
2394
|
+
end
|
2395
|
+
|
2396
|
+
# Returns information about a cluster of either the provisioned or the
|
2397
|
+
# serverless type.
|
2398
|
+
#
|
2399
|
+
# @!attribute [rw] cluster_info
|
2400
|
+
# The cluster information.
|
2401
|
+
# @return [Types::Cluster]
|
2402
|
+
#
|
2403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterV2Response AWS API Documentation
|
2404
|
+
#
|
2405
|
+
class DescribeClusterV2Response < Struct.new(
|
2406
|
+
:cluster_info)
|
2407
|
+
SENSITIVE = []
|
2408
|
+
include Aws::Structure
|
2409
|
+
end
|
2410
|
+
|
2411
|
+
# Request body for DeleteClusterPolicy.
|
2412
|
+
#
|
2413
|
+
# @!attribute [rw] cluster_arn
|
2414
|
+
# @return [String]
|
2415
|
+
#
|
2416
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteClusterPolicyRequest AWS API Documentation
|
2417
|
+
#
|
2418
|
+
class DeleteClusterPolicyRequest < Struct.new(
|
2419
|
+
:cluster_arn)
|
1893
2420
|
SENSITIVE = []
|
1894
2421
|
include Aws::Structure
|
1895
2422
|
end
|
1896
2423
|
|
1897
|
-
#
|
1898
|
-
#
|
2424
|
+
# Response body for DeleteClusterPolicy.
|
2425
|
+
#
|
2426
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteClusterPolicyResponse AWS API Documentation
|
2427
|
+
#
|
2428
|
+
class DeleteClusterPolicyResponse < Aws::EmptyStructure; end
|
2429
|
+
|
2430
|
+
# Request body for GetClusterPolicy.
|
1899
2431
|
#
|
1900
2432
|
# @!attribute [rw] cluster_arn
|
1901
|
-
# The Amazon Resource Name (ARN) of the cluster.
|
1902
2433
|
# @return [String]
|
1903
2434
|
#
|
1904
|
-
#
|
1905
|
-
# The name of the MSK cluster.
|
1906
|
-
# @return [String]
|
2435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetClusterPolicyRequest AWS API Documentation
|
1907
2436
|
#
|
1908
|
-
|
1909
|
-
|
1910
|
-
|
1911
|
-
|
2437
|
+
class GetClusterPolicyRequest < Struct.new(
|
2438
|
+
:cluster_arn)
|
2439
|
+
SENSITIVE = []
|
2440
|
+
include Aws::Structure
|
2441
|
+
end
|
2442
|
+
|
2443
|
+
# Returns information about the specified cluster policy.
|
2444
|
+
#
|
2445
|
+
# @!attribute [rw] current_version
|
2446
|
+
# Cluster policy version.
|
1912
2447
|
# @return [String]
|
1913
2448
|
#
|
1914
|
-
# @!attribute [rw]
|
1915
|
-
#
|
1916
|
-
# SERVERLESS.
|
2449
|
+
# @!attribute [rw] policy
|
2450
|
+
# Cluster policy attached to the MSK cluster.
|
1917
2451
|
# @return [String]
|
1918
2452
|
#
|
1919
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/
|
2453
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetClusterPolicyResponse AWS API Documentation
|
1920
2454
|
#
|
1921
|
-
class
|
1922
|
-
:
|
1923
|
-
:
|
1924
|
-
:state,
|
1925
|
-
:cluster_type)
|
2455
|
+
class GetClusterPolicyResponse < Struct.new(
|
2456
|
+
:current_version,
|
2457
|
+
:policy)
|
1926
2458
|
SENSITIVE = []
|
1927
2459
|
include Aws::Structure
|
1928
2460
|
end
|
1929
2461
|
|
1930
|
-
#
|
1931
|
-
# data as a hash:
|
1932
|
-
#
|
1933
|
-
# {
|
1934
|
-
# cluster_arn: "__string", # required
|
1935
|
-
# }
|
2462
|
+
# Request body for PutClusterPolicy.
|
1936
2463
|
#
|
1937
2464
|
# @!attribute [rw] cluster_arn
|
1938
|
-
# The Amazon Resource Name (ARN) that uniquely identifies the cluster.
|
1939
2465
|
# @return [String]
|
1940
2466
|
#
|
1941
|
-
#
|
2467
|
+
# @!attribute [rw] current_version
|
2468
|
+
# @return [String]
|
1942
2469
|
#
|
1943
|
-
|
1944
|
-
|
2470
|
+
# @!attribute [rw] policy
|
2471
|
+
# @return [String]
|
2472
|
+
#
|
2473
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/PutClusterPolicyRequest AWS API Documentation
|
2474
|
+
#
|
2475
|
+
class PutClusterPolicyRequest < Struct.new(
|
2476
|
+
:cluster_arn,
|
2477
|
+
:current_version,
|
2478
|
+
:policy)
|
1945
2479
|
SENSITIVE = []
|
1946
2480
|
include Aws::Structure
|
1947
2481
|
end
|
1948
2482
|
|
1949
|
-
#
|
1950
|
-
# serverless type.
|
2483
|
+
# Response body for PutClusterPolicy.
|
1951
2484
|
#
|
1952
|
-
# @!attribute [rw]
|
1953
|
-
#
|
1954
|
-
# @return [
|
2485
|
+
# @!attribute [rw] current_version
|
2486
|
+
# Cluster policy version.
|
2487
|
+
# @return [String]
|
1955
2488
|
#
|
1956
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/
|
2489
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/PutClusterPolicyResponse AWS API Documentation
|
1957
2490
|
#
|
1958
|
-
class
|
1959
|
-
:
|
2491
|
+
class PutClusterPolicyResponse < Struct.new(
|
2492
|
+
:current_version)
|
1960
2493
|
SENSITIVE = []
|
1961
2494
|
include Aws::Structure
|
1962
2495
|
end
|
@@ -2031,88 +2564,6 @@ module Aws::Kafka
|
|
2031
2564
|
|
2032
2565
|
# Creates a provisioned cluster.
|
2033
2566
|
#
|
2034
|
-
# @note When making an API call, you may pass ProvisionedRequest
|
2035
|
-
# data as a hash:
|
2036
|
-
#
|
2037
|
-
# {
|
2038
|
-
# broker_node_group_info: { # required
|
2039
|
-
# broker_az_distribution: "DEFAULT", # accepts DEFAULT
|
2040
|
-
# client_subnets: ["__string"], # required
|
2041
|
-
# instance_type: "__stringMin5Max32", # required
|
2042
|
-
# security_groups: ["__string"],
|
2043
|
-
# storage_info: {
|
2044
|
-
# ebs_storage_info: {
|
2045
|
-
# volume_size: 1,
|
2046
|
-
# },
|
2047
|
-
# },
|
2048
|
-
# connectivity_info: {
|
2049
|
-
# public_access: {
|
2050
|
-
# type: "__string",
|
2051
|
-
# },
|
2052
|
-
# },
|
2053
|
-
# },
|
2054
|
-
# client_authentication: {
|
2055
|
-
# sasl: {
|
2056
|
-
# scram: {
|
2057
|
-
# enabled: false,
|
2058
|
-
# },
|
2059
|
-
# iam: {
|
2060
|
-
# enabled: false,
|
2061
|
-
# },
|
2062
|
-
# },
|
2063
|
-
# tls: {
|
2064
|
-
# certificate_authority_arn_list: ["__string"],
|
2065
|
-
# enabled: false,
|
2066
|
-
# },
|
2067
|
-
# unauthenticated: {
|
2068
|
-
# enabled: false,
|
2069
|
-
# },
|
2070
|
-
# },
|
2071
|
-
# configuration_info: {
|
2072
|
-
# arn: "__string", # required
|
2073
|
-
# revision: 1, # required
|
2074
|
-
# },
|
2075
|
-
# encryption_info: {
|
2076
|
-
# encryption_at_rest: {
|
2077
|
-
# data_volume_kms_key_id: "__string", # required
|
2078
|
-
# },
|
2079
|
-
# encryption_in_transit: {
|
2080
|
-
# client_broker: "TLS", # accepts TLS, TLS_PLAINTEXT, PLAINTEXT
|
2081
|
-
# in_cluster: false,
|
2082
|
-
# },
|
2083
|
-
# },
|
2084
|
-
# enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
|
2085
|
-
# open_monitoring: {
|
2086
|
-
# prometheus: { # required
|
2087
|
-
# jmx_exporter: {
|
2088
|
-
# enabled_in_broker: false, # required
|
2089
|
-
# },
|
2090
|
-
# node_exporter: {
|
2091
|
-
# enabled_in_broker: false, # required
|
2092
|
-
# },
|
2093
|
-
# },
|
2094
|
-
# },
|
2095
|
-
# kafka_version: "__stringMin1Max128", # required
|
2096
|
-
# logging_info: {
|
2097
|
-
# broker_logs: { # required
|
2098
|
-
# cloud_watch_logs: {
|
2099
|
-
# enabled: false, # required
|
2100
|
-
# log_group: "__string",
|
2101
|
-
# },
|
2102
|
-
# firehose: {
|
2103
|
-
# delivery_stream: "__string",
|
2104
|
-
# enabled: false, # required
|
2105
|
-
# },
|
2106
|
-
# s3: {
|
2107
|
-
# bucket: "__string",
|
2108
|
-
# enabled: false, # required
|
2109
|
-
# prefix: "__string",
|
2110
|
-
# },
|
2111
|
-
# },
|
2112
|
-
# },
|
2113
|
-
# number_of_broker_nodes: 1, # required
|
2114
|
-
# }
|
2115
|
-
#
|
2116
2567
|
# @!attribute [rw] broker_node_group_info
|
2117
2568
|
# Information about the brokers.
|
2118
2569
|
# @return [Types::BrokerNodeGroupInfo]
|
@@ -2152,6 +2603,10 @@ module Aws::Kafka
|
|
2152
2603
|
# The number of brokers in the cluster.
|
2153
2604
|
# @return [Integer]
|
2154
2605
|
#
|
2606
|
+
# @!attribute [rw] storage_mode
|
2607
|
+
# This controls storage mode for supported storage tiers.
|
2608
|
+
# @return [String]
|
2609
|
+
#
|
2155
2610
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ProvisionedRequest AWS API Documentation
|
2156
2611
|
#
|
2157
2612
|
class ProvisionedRequest < Struct.new(
|
@@ -2163,7 +2618,8 @@ module Aws::Kafka
|
|
2163
2618
|
:open_monitoring,
|
2164
2619
|
:kafka_version,
|
2165
2620
|
:logging_info,
|
2166
|
-
:number_of_broker_nodes
|
2621
|
+
:number_of_broker_nodes,
|
2622
|
+
:storage_mode)
|
2167
2623
|
SENSITIVE = []
|
2168
2624
|
include Aws::Structure
|
2169
2625
|
end
|
@@ -2223,6 +2679,10 @@ module Aws::Kafka
|
|
2223
2679
|
# cluster on a TLS port.
|
2224
2680
|
# @return [String]
|
2225
2681
|
#
|
2682
|
+
# @!attribute [rw] storage_mode
|
2683
|
+
# This controls storage mode for supported storage tiers.
|
2684
|
+
# @return [String]
|
2685
|
+
#
|
2226
2686
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/Provisioned AWS API Documentation
|
2227
2687
|
#
|
2228
2688
|
class Provisioned < Struct.new(
|
@@ -2235,21 +2695,14 @@ module Aws::Kafka
|
|
2235
2695
|
:logging_info,
|
2236
2696
|
:number_of_broker_nodes,
|
2237
2697
|
:zookeeper_connect_string,
|
2238
|
-
:zookeeper_connect_string_tls
|
2698
|
+
:zookeeper_connect_string_tls,
|
2699
|
+
:storage_mode)
|
2239
2700
|
SENSITIVE = []
|
2240
2701
|
include Aws::Structure
|
2241
2702
|
end
|
2242
2703
|
|
2243
2704
|
# The configuration of the Amazon VPCs for the cluster.
|
2244
2705
|
#
|
2245
|
-
# @note When making an API call, you may pass VpcConfig
|
2246
|
-
# data as a hash:
|
2247
|
-
#
|
2248
|
-
# {
|
2249
|
-
# subnet_ids: ["__string"], # required
|
2250
|
-
# security_group_ids: ["__string"],
|
2251
|
-
# }
|
2252
|
-
#
|
2253
2706
|
# @!attribute [rw] subnet_ids
|
2254
2707
|
# The IDs of the subnets associated with the cluster.
|
2255
2708
|
# @return [Array<String>]
|
@@ -2269,25 +2722,6 @@ module Aws::Kafka
|
|
2269
2722
|
|
2270
2723
|
# Creates serverless cluster.
|
2271
2724
|
#
|
2272
|
-
# @note When making an API call, you may pass ServerlessRequest
|
2273
|
-
# data as a hash:
|
2274
|
-
#
|
2275
|
-
# {
|
2276
|
-
# vpc_configs: [ # required
|
2277
|
-
# {
|
2278
|
-
# subnet_ids: ["__string"], # required
|
2279
|
-
# security_group_ids: ["__string"],
|
2280
|
-
# },
|
2281
|
-
# ],
|
2282
|
-
# client_authentication: {
|
2283
|
-
# sasl: {
|
2284
|
-
# iam: {
|
2285
|
-
# enabled: false,
|
2286
|
-
# },
|
2287
|
-
# },
|
2288
|
-
# },
|
2289
|
-
# }
|
2290
|
-
#
|
2291
2725
|
# @!attribute [rw] vpc_configs
|
2292
2726
|
# Information on vpc config for the serverless cluster.
|
2293
2727
|
# @return [Array<Types::VpcConfig>]
|
@@ -2307,17 +2741,6 @@ module Aws::Kafka
|
|
2307
2741
|
|
2308
2742
|
# Describes the serverless cluster client authentication.
|
2309
2743
|
#
|
2310
|
-
# @note When making an API call, you may pass ServerlessClientAuthentication
|
2311
|
-
# data as a hash:
|
2312
|
-
#
|
2313
|
-
# {
|
2314
|
-
# sasl: {
|
2315
|
-
# iam: {
|
2316
|
-
# enabled: false,
|
2317
|
-
# },
|
2318
|
-
# },
|
2319
|
-
# }
|
2320
|
-
#
|
2321
2744
|
# @!attribute [rw] sasl
|
2322
2745
|
# Serverless cluster SASL information.
|
2323
2746
|
# @return [Types::ServerlessSasl]
|
@@ -2332,15 +2755,6 @@ module Aws::Kafka
|
|
2332
2755
|
|
2333
2756
|
# Describes the serverless cluster SASL information.
|
2334
2757
|
#
|
2335
|
-
# @note When making an API call, you may pass ServerlessSasl
|
2336
|
-
# data as a hash:
|
2337
|
-
#
|
2338
|
-
# {
|
2339
|
-
# iam: {
|
2340
|
-
# enabled: false,
|
2341
|
-
# },
|
2342
|
-
# }
|
2343
|
-
#
|
2344
2758
|
# @!attribute [rw] iam
|
2345
2759
|
# Indicates whether IAM access control is enabled.
|
2346
2760
|
# @return [Types::Iam]
|
@@ -2372,15 +2786,6 @@ module Aws::Kafka
|
|
2372
2786
|
include Aws::Structure
|
2373
2787
|
end
|
2374
2788
|
|
2375
|
-
# @note When making an API call, you may pass ListClustersRequest
|
2376
|
-
# data as a hash:
|
2377
|
-
#
|
2378
|
-
# {
|
2379
|
-
# cluster_name_filter: "__string",
|
2380
|
-
# max_results: 1,
|
2381
|
-
# next_token: "__string",
|
2382
|
-
# }
|
2383
|
-
#
|
2384
2789
|
# @!attribute [rw] cluster_name_filter
|
2385
2790
|
# @return [String]
|
2386
2791
|
#
|
@@ -2423,15 +2828,6 @@ module Aws::Kafka
|
|
2423
2828
|
include Aws::Structure
|
2424
2829
|
end
|
2425
2830
|
|
2426
|
-
# @note When making an API call, you may pass ListConfigurationRevisionsRequest
|
2427
|
-
# data as a hash:
|
2428
|
-
#
|
2429
|
-
# {
|
2430
|
-
# arn: "__string", # required
|
2431
|
-
# max_results: 1,
|
2432
|
-
# next_token: "__string",
|
2433
|
-
# }
|
2434
|
-
#
|
2435
2831
|
# @!attribute [rw] arn
|
2436
2832
|
# @return [String]
|
2437
2833
|
#
|
@@ -2470,14 +2866,6 @@ module Aws::Kafka
|
|
2470
2866
|
include Aws::Structure
|
2471
2867
|
end
|
2472
2868
|
|
2473
|
-
# @note When making an API call, you may pass ListConfigurationsRequest
|
2474
|
-
# data as a hash:
|
2475
|
-
#
|
2476
|
-
# {
|
2477
|
-
# max_results: 1,
|
2478
|
-
# next_token: "__string",
|
2479
|
-
# }
|
2480
|
-
#
|
2481
2869
|
# @!attribute [rw] max_results
|
2482
2870
|
# @return [Integer]
|
2483
2871
|
#
|
@@ -2516,14 +2904,6 @@ module Aws::Kafka
|
|
2516
2904
|
include Aws::Structure
|
2517
2905
|
end
|
2518
2906
|
|
2519
|
-
# @note When making an API call, you may pass ListKafkaVersionsRequest
|
2520
|
-
# data as a hash:
|
2521
|
-
#
|
2522
|
-
# {
|
2523
|
-
# max_results: 1,
|
2524
|
-
# next_token: "__string",
|
2525
|
-
# }
|
2526
|
-
#
|
2527
2907
|
# @!attribute [rw] max_results
|
2528
2908
|
# @return [Integer]
|
2529
2909
|
#
|
@@ -2558,15 +2938,6 @@ module Aws::Kafka
|
|
2558
2938
|
include Aws::Structure
|
2559
2939
|
end
|
2560
2940
|
|
2561
|
-
# @note When making an API call, you may pass ListNodesRequest
|
2562
|
-
# data as a hash:
|
2563
|
-
#
|
2564
|
-
# {
|
2565
|
-
# cluster_arn: "__string", # required
|
2566
|
-
# max_results: 1,
|
2567
|
-
# next_token: "__string",
|
2568
|
-
# }
|
2569
|
-
#
|
2570
2941
|
# @!attribute [rw] cluster_arn
|
2571
2942
|
# @return [String]
|
2572
2943
|
#
|
@@ -2608,15 +2979,6 @@ module Aws::Kafka
|
|
2608
2979
|
include Aws::Structure
|
2609
2980
|
end
|
2610
2981
|
|
2611
|
-
# @note When making an API call, you may pass ListScramSecretsRequest
|
2612
|
-
# data as a hash:
|
2613
|
-
#
|
2614
|
-
# {
|
2615
|
-
# cluster_arn: "__string", # required
|
2616
|
-
# max_results: 1,
|
2617
|
-
# next_token: "__string",
|
2618
|
-
# }
|
2619
|
-
#
|
2620
2982
|
# @!attribute [rw] cluster_arn
|
2621
2983
|
# @return [String]
|
2622
2984
|
#
|
@@ -2655,13 +3017,6 @@ module Aws::Kafka
|
|
2655
3017
|
include Aws::Structure
|
2656
3018
|
end
|
2657
3019
|
|
2658
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2659
|
-
# data as a hash:
|
2660
|
-
#
|
2661
|
-
# {
|
2662
|
-
# resource_arn: "__string", # required
|
2663
|
-
# }
|
2664
|
-
#
|
2665
3020
|
# @!attribute [rw] resource_arn
|
2666
3021
|
# @return [String]
|
2667
3022
|
#
|
@@ -2691,27 +3046,6 @@ module Aws::Kafka
|
|
2691
3046
|
# destination types. This is a container for the configuration details
|
2692
3047
|
# related to broker logs.
|
2693
3048
|
#
|
2694
|
-
# @note When making an API call, you may pass LoggingInfo
|
2695
|
-
# data as a hash:
|
2696
|
-
#
|
2697
|
-
# {
|
2698
|
-
# broker_logs: { # required
|
2699
|
-
# cloud_watch_logs: {
|
2700
|
-
# enabled: false, # required
|
2701
|
-
# log_group: "__string",
|
2702
|
-
# },
|
2703
|
-
# firehose: {
|
2704
|
-
# delivery_stream: "__string",
|
2705
|
-
# enabled: false, # required
|
2706
|
-
# },
|
2707
|
-
# s3: {
|
2708
|
-
# bucket: "__string",
|
2709
|
-
# enabled: false, # required
|
2710
|
-
# prefix: "__string",
|
2711
|
-
# },
|
2712
|
-
# },
|
2713
|
-
# }
|
2714
|
-
#
|
2715
3049
|
# @!attribute [rw] broker_logs
|
2716
3050
|
# You can configure your MSK cluster to send broker logs to different
|
2717
3051
|
# destination types. This configuration specifies the details of these
|
@@ -2726,6 +3060,153 @@ module Aws::Kafka
|
|
2726
3060
|
include Aws::Structure
|
2727
3061
|
end
|
2728
3062
|
|
3063
|
+
# Request body for ListClientVpcConnections.
|
3064
|
+
#
|
3065
|
+
# @!attribute [rw] cluster_arn
|
3066
|
+
# @return [String]
|
3067
|
+
#
|
3068
|
+
# @!attribute [rw] max_results
|
3069
|
+
# @return [Integer]
|
3070
|
+
#
|
3071
|
+
# @!attribute [rw] next_token
|
3072
|
+
# @return [String]
|
3073
|
+
#
|
3074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClientVpcConnectionsRequest AWS API Documentation
|
3075
|
+
#
|
3076
|
+
class ListClientVpcConnectionsRequest < Struct.new(
|
3077
|
+
:cluster_arn,
|
3078
|
+
:max_results,
|
3079
|
+
:next_token)
|
3080
|
+
SENSITIVE = []
|
3081
|
+
include Aws::Structure
|
3082
|
+
end
|
3083
|
+
|
3084
|
+
# The response contains an array of client VPC connections and a next
|
3085
|
+
# token if the response is truncated.
|
3086
|
+
#
|
3087
|
+
# @!attribute [rw] next_token
|
3088
|
+
# If the response of ListClientVpcConnections is truncated, it returns
|
3089
|
+
# a NextToken in the response. This Nexttoken should be sent in the
|
3090
|
+
# subsequent request to ListClientVpcConnections.
|
3091
|
+
# @return [String]
|
3092
|
+
#
|
3093
|
+
# @!attribute [rw] client_vpc_connections
|
3094
|
+
# List containing a ClientVpcConnection object.
|
3095
|
+
# @return [Array<Types::ClientVpcConnection>]
|
3096
|
+
#
|
3097
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClientVpcConnectionsResponse AWS API Documentation
|
3098
|
+
#
|
3099
|
+
class ListClientVpcConnectionsResponse < Struct.new(
|
3100
|
+
:next_token,
|
3101
|
+
:client_vpc_connections)
|
3102
|
+
SENSITIVE = []
|
3103
|
+
include Aws::Structure
|
3104
|
+
end
|
3105
|
+
|
3106
|
+
# @!attribute [rw] max_results
|
3107
|
+
# @return [Integer]
|
3108
|
+
#
|
3109
|
+
# @!attribute [rw] next_token
|
3110
|
+
# @return [String]
|
3111
|
+
#
|
3112
|
+
# @!attribute [rw] replicator_name_filter
|
3113
|
+
# @return [String]
|
3114
|
+
#
|
3115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListReplicatorsRequest AWS API Documentation
|
3116
|
+
#
|
3117
|
+
class ListReplicatorsRequest < Struct.new(
|
3118
|
+
:max_results,
|
3119
|
+
:next_token,
|
3120
|
+
:replicator_name_filter)
|
3121
|
+
SENSITIVE = []
|
3122
|
+
include Aws::Structure
|
3123
|
+
end
|
3124
|
+
|
3125
|
+
# The response contains an array containing replicator information and a
|
3126
|
+
# NextToken if the response is truncated.
|
3127
|
+
#
|
3128
|
+
# @!attribute [rw] next_token
|
3129
|
+
# If the response of ListReplicators is truncated, it returns a
|
3130
|
+
# NextToken in the response. This NextToken should be sent in the
|
3131
|
+
# subsequent request to ListReplicators.
|
3132
|
+
# @return [String]
|
3133
|
+
#
|
3134
|
+
# @!attribute [rw] replicators
|
3135
|
+
# List containing information of each of the replicators in the
|
3136
|
+
# account.
|
3137
|
+
# @return [Array<Types::ReplicatorSummary>]
|
3138
|
+
#
|
3139
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListReplicatorsResponse AWS API Documentation
|
3140
|
+
#
|
3141
|
+
class ListReplicatorsResponse < Struct.new(
|
3142
|
+
:next_token,
|
3143
|
+
:replicators)
|
3144
|
+
SENSITIVE = []
|
3145
|
+
include Aws::Structure
|
3146
|
+
end
|
3147
|
+
|
3148
|
+
# Request body for ListVpcConnections.
|
3149
|
+
#
|
3150
|
+
# @!attribute [rw] max_results
|
3151
|
+
# @return [Integer]
|
3152
|
+
#
|
3153
|
+
# @!attribute [rw] next_token
|
3154
|
+
# @return [String]
|
3155
|
+
#
|
3156
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListVpcConnectionsRequest AWS API Documentation
|
3157
|
+
#
|
3158
|
+
class ListVpcConnectionsRequest < Struct.new(
|
3159
|
+
:max_results,
|
3160
|
+
:next_token)
|
3161
|
+
SENSITIVE = []
|
3162
|
+
include Aws::Structure
|
3163
|
+
end
|
3164
|
+
|
3165
|
+
# The response contains an array of MSK VPC connections and a next token
|
3166
|
+
# if the response is truncated.
|
3167
|
+
#
|
3168
|
+
# @!attribute [rw] next_token
|
3169
|
+
# If the response of ListVpcConnections is truncated, it returns a
|
3170
|
+
# NextToken in the response. This NextToken should be sent in the
|
3171
|
+
# subsequent request to ListVpcConnections.
|
3172
|
+
# @return [String]
|
3173
|
+
#
|
3174
|
+
# @!attribute [rw] vpc_connections
|
3175
|
+
# List containing a VpcConnection object.
|
3176
|
+
# @return [Array<Types::VpcConnection>]
|
3177
|
+
#
|
3178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListVpcConnectionsResponse AWS API Documentation
|
3179
|
+
#
|
3180
|
+
class ListVpcConnectionsResponse < Struct.new(
|
3181
|
+
:next_token,
|
3182
|
+
:vpc_connections)
|
3183
|
+
SENSITIVE = []
|
3184
|
+
include Aws::Structure
|
3185
|
+
end
|
3186
|
+
|
3187
|
+
# Request body for RejectClientVpcConnection.
|
3188
|
+
#
|
3189
|
+
# @!attribute [rw] cluster_arn
|
3190
|
+
# @return [String]
|
3191
|
+
#
|
3192
|
+
# @!attribute [rw] vpc_connection_arn
|
3193
|
+
# @return [String]
|
3194
|
+
#
|
3195
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/RejectClientVpcConnectionRequest AWS API Documentation
|
3196
|
+
#
|
3197
|
+
class RejectClientVpcConnectionRequest < Struct.new(
|
3198
|
+
:cluster_arn,
|
3199
|
+
:vpc_connection_arn)
|
3200
|
+
SENSITIVE = []
|
3201
|
+
include Aws::Structure
|
3202
|
+
end
|
3203
|
+
|
3204
|
+
# Response body for RejectClientVpcConnection.
|
3205
|
+
#
|
3206
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/RejectClientVpcConnectionResponse AWS API Documentation
|
3207
|
+
#
|
3208
|
+
class RejectClientVpcConnectionResponse < Aws::EmptyStructure; end
|
3209
|
+
|
2729
3210
|
# Information about cluster attributes that can be updated via update
|
2730
3211
|
# APIs.
|
2731
3212
|
#
|
@@ -2752,6 +3233,7 @@ module Aws::Kafka
|
|
2752
3233
|
# @return [String]
|
2753
3234
|
#
|
2754
3235
|
# @!attribute [rw] kafka_version
|
3236
|
+
# The Apache Kafka version.
|
2755
3237
|
# @return [String]
|
2756
3238
|
#
|
2757
3239
|
# @!attribute [rw] logging_info
|
@@ -2775,6 +3257,10 @@ module Aws::Kafka
|
|
2775
3257
|
# Information about the broker access configuration.
|
2776
3258
|
# @return [Types::ConnectivityInfo]
|
2777
3259
|
#
|
3260
|
+
# @!attribute [rw] storage_mode
|
3261
|
+
# This controls storage mode for supported storage tiers.
|
3262
|
+
# @return [String]
|
3263
|
+
#
|
2778
3264
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/MutableClusterInfo AWS API Documentation
|
2779
3265
|
#
|
2780
3266
|
class MutableClusterInfo < Struct.new(
|
@@ -2788,7 +3274,8 @@ module Aws::Kafka
|
|
2788
3274
|
:instance_type,
|
2789
3275
|
:client_authentication,
|
2790
3276
|
:encryption_info,
|
2791
|
-
:connectivity_info
|
3277
|
+
:connectivity_info,
|
3278
|
+
:storage_mode)
|
2792
3279
|
SENSITIVE = []
|
2793
3280
|
include Aws::Structure
|
2794
3281
|
end
|
@@ -2832,35 +3319,192 @@ module Aws::Kafka
|
|
2832
3319
|
include Aws::Structure
|
2833
3320
|
end
|
2834
3321
|
|
2835
|
-
# Returns information about an error.
|
3322
|
+
# Returns information about an error.
|
3323
|
+
#
|
3324
|
+
# @!attribute [rw] invalid_parameter
|
3325
|
+
# @return [String]
|
3326
|
+
#
|
3327
|
+
# @!attribute [rw] message
|
3328
|
+
# @return [String]
|
3329
|
+
#
|
3330
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/NotFoundException AWS API Documentation
|
3331
|
+
#
|
3332
|
+
class NotFoundException < Struct.new(
|
3333
|
+
:invalid_parameter,
|
3334
|
+
:message)
|
3335
|
+
SENSITIVE = []
|
3336
|
+
include Aws::Structure
|
3337
|
+
end
|
3338
|
+
|
3339
|
+
# Specifies configuration for replication between a source and target
|
3340
|
+
# Kafka cluster.
|
3341
|
+
#
|
3342
|
+
# @!attribute [rw] consumer_group_replication
|
3343
|
+
# Configuration relating to consumer group replication.
|
3344
|
+
# @return [Types::ConsumerGroupReplication]
|
3345
|
+
#
|
3346
|
+
# @!attribute [rw] source_kafka_cluster_arn
|
3347
|
+
# The ARN of the source Kafka cluster.
|
3348
|
+
# @return [String]
|
3349
|
+
#
|
3350
|
+
# @!attribute [rw] target_compression_type
|
3351
|
+
# The compression type to use when producing records to target
|
3352
|
+
# cluster.
|
3353
|
+
# @return [String]
|
3354
|
+
#
|
3355
|
+
# @!attribute [rw] target_kafka_cluster_arn
|
3356
|
+
# The ARN of the target Kafka cluster.
|
3357
|
+
# @return [String]
|
3358
|
+
#
|
3359
|
+
# @!attribute [rw] topic_replication
|
3360
|
+
# Configuration relating to topic replication.
|
3361
|
+
# @return [Types::TopicReplication]
|
3362
|
+
#
|
3363
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ReplicationInfo AWS API Documentation
|
3364
|
+
#
|
3365
|
+
class ReplicationInfo < Struct.new(
|
3366
|
+
:consumer_group_replication,
|
3367
|
+
:source_kafka_cluster_arn,
|
3368
|
+
:target_compression_type,
|
3369
|
+
:target_kafka_cluster_arn,
|
3370
|
+
:topic_replication)
|
3371
|
+
SENSITIVE = []
|
3372
|
+
include Aws::Structure
|
3373
|
+
end
|
3374
|
+
|
3375
|
+
# Specifies configuration for replication between a source and target
|
3376
|
+
# Kafka cluster (sourceKafkaClusterAlias -> targetKafkaClusterAlias)
|
3377
|
+
#
|
3378
|
+
# @!attribute [rw] consumer_group_replication
|
3379
|
+
# Configuration relating to consumer group replication
|
3380
|
+
#
|
3381
|
+
# .
|
3382
|
+
# @return [Types::ConsumerGroupReplication]
|
3383
|
+
#
|
3384
|
+
# @!attribute [rw] source_kafka_cluster_alias
|
3385
|
+
# The alias of the source Kafka cluster.
|
3386
|
+
# @return [String]
|
3387
|
+
#
|
3388
|
+
# @!attribute [rw] target_compression_type
|
3389
|
+
# The compression type to use when producing records to target
|
3390
|
+
# cluster.
|
3391
|
+
# @return [String]
|
3392
|
+
#
|
3393
|
+
# @!attribute [rw] target_kafka_cluster_alias
|
3394
|
+
# The alias of the target Kafka cluster.
|
3395
|
+
# @return [String]
|
3396
|
+
#
|
3397
|
+
# @!attribute [rw] topic_replication
|
3398
|
+
# Configuration relating to topic replication.
|
3399
|
+
# @return [Types::TopicReplication]
|
3400
|
+
#
|
3401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ReplicationInfoDescription AWS API Documentation
|
3402
|
+
#
|
3403
|
+
class ReplicationInfoDescription < Struct.new(
|
3404
|
+
:consumer_group_replication,
|
3405
|
+
:source_kafka_cluster_alias,
|
3406
|
+
:target_compression_type,
|
3407
|
+
:target_kafka_cluster_alias,
|
3408
|
+
:topic_replication)
|
3409
|
+
SENSITIVE = []
|
3410
|
+
include Aws::Structure
|
3411
|
+
end
|
3412
|
+
|
3413
|
+
# Summarized information of replication between clusters.
|
3414
|
+
#
|
3415
|
+
# @!attribute [rw] source_kafka_cluster_alias
|
3416
|
+
# The alias of the source Kafka cluster.
|
3417
|
+
# @return [String]
|
3418
|
+
#
|
3419
|
+
# @!attribute [rw] target_kafka_cluster_alias
|
3420
|
+
# The alias of the target Kafka cluster.
|
3421
|
+
# @return [String]
|
3422
|
+
#
|
3423
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ReplicationInfoSummary AWS API Documentation
|
3424
|
+
#
|
3425
|
+
class ReplicationInfoSummary < Struct.new(
|
3426
|
+
:source_kafka_cluster_alias,
|
3427
|
+
:target_kafka_cluster_alias)
|
3428
|
+
SENSITIVE = []
|
3429
|
+
include Aws::Structure
|
3430
|
+
end
|
3431
|
+
|
3432
|
+
# Details about the state of a replicator
|
3433
|
+
#
|
3434
|
+
# @!attribute [rw] code
|
3435
|
+
# Code that describes the current state of the replicator.
|
3436
|
+
# @return [String]
|
3437
|
+
#
|
3438
|
+
# @!attribute [rw] message
|
3439
|
+
# Message that describes the state of the replicator.
|
3440
|
+
# @return [String]
|
3441
|
+
#
|
3442
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ReplicationStateInfo AWS API Documentation
|
3443
|
+
#
|
3444
|
+
class ReplicationStateInfo < Struct.new(
|
3445
|
+
:code,
|
3446
|
+
:message)
|
3447
|
+
SENSITIVE = []
|
3448
|
+
include Aws::Structure
|
3449
|
+
end
|
3450
|
+
|
3451
|
+
# Information about a replicator.
|
2836
3452
|
#
|
2837
|
-
# @!attribute [rw]
|
3453
|
+
# @!attribute [rw] creation_time
|
3454
|
+
# The time the replicator was created.
|
3455
|
+
# @return [Time]
|
3456
|
+
#
|
3457
|
+
# @!attribute [rw] current_version
|
3458
|
+
# The current version of the replicator.
|
2838
3459
|
# @return [String]
|
2839
3460
|
#
|
2840
|
-
# @!attribute [rw]
|
3461
|
+
# @!attribute [rw] is_replicator_reference
|
3462
|
+
# Whether this resource is a replicator reference.
|
3463
|
+
# @return [Boolean]
|
3464
|
+
#
|
3465
|
+
# @!attribute [rw] kafka_clusters_summary
|
3466
|
+
# Kafka Clusters used in setting up sources / targets for replication.
|
3467
|
+
# @return [Array<Types::KafkaClusterSummary>]
|
3468
|
+
#
|
3469
|
+
# @!attribute [rw] replication_info_summary_list
|
3470
|
+
# A list of summarized information of replications between clusters.
|
3471
|
+
# @return [Array<Types::ReplicationInfoSummary>]
|
3472
|
+
#
|
3473
|
+
# @!attribute [rw] replicator_arn
|
3474
|
+
# The Amazon Resource Name (ARN) of the replicator.
|
2841
3475
|
# @return [String]
|
2842
3476
|
#
|
2843
|
-
#
|
3477
|
+
# @!attribute [rw] replicator_name
|
3478
|
+
# The name of the replicator.
|
3479
|
+
# @return [String]
|
2844
3480
|
#
|
2845
|
-
|
2846
|
-
|
2847
|
-
|
3481
|
+
# @!attribute [rw] replicator_resource_arn
|
3482
|
+
# The Amazon Resource Name (ARN) of the replicator resource in the
|
3483
|
+
# region where the replicator was created.
|
3484
|
+
#
|
3485
|
+
# </p>
|
3486
|
+
# @return [String]
|
3487
|
+
#
|
3488
|
+
# @!attribute [rw] replicator_state
|
3489
|
+
# State of the replicator.
|
3490
|
+
# @return [String]
|
3491
|
+
#
|
3492
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ReplicatorSummary AWS API Documentation
|
3493
|
+
#
|
3494
|
+
class ReplicatorSummary < Struct.new(
|
3495
|
+
:creation_time,
|
3496
|
+
:current_version,
|
3497
|
+
:is_replicator_reference,
|
3498
|
+
:kafka_clusters_summary,
|
3499
|
+
:replication_info_summary_list,
|
3500
|
+
:replicator_arn,
|
3501
|
+
:replicator_name,
|
3502
|
+
:replicator_resource_arn,
|
3503
|
+
:replicator_state)
|
2848
3504
|
SENSITIVE = []
|
2849
3505
|
include Aws::Structure
|
2850
3506
|
end
|
2851
3507
|
|
2852
|
-
# @note When making an API call, you may pass Sasl
|
2853
|
-
# data as a hash:
|
2854
|
-
#
|
2855
|
-
# {
|
2856
|
-
# scram: {
|
2857
|
-
# enabled: false,
|
2858
|
-
# },
|
2859
|
-
# iam: {
|
2860
|
-
# enabled: false,
|
2861
|
-
# },
|
2862
|
-
# }
|
2863
|
-
#
|
2864
3508
|
# @!attribute [rw] scram
|
2865
3509
|
# @return [Types::Scram]
|
2866
3510
|
#
|
@@ -2876,13 +3520,21 @@ module Aws::Kafka
|
|
2876
3520
|
include Aws::Structure
|
2877
3521
|
end
|
2878
3522
|
|
2879
|
-
#
|
2880
|
-
#
|
3523
|
+
# @!attribute [rw] scram
|
3524
|
+
# @return [Types::VpcConnectivityScram]
|
3525
|
+
#
|
3526
|
+
# @!attribute [rw] iam
|
3527
|
+
# @return [Types::VpcConnectivityIam]
|
2881
3528
|
#
|
2882
|
-
#
|
2883
|
-
# enabled: false,
|
2884
|
-
# }
|
3529
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectivitySasl AWS API Documentation
|
2885
3530
|
#
|
3531
|
+
class VpcConnectivitySasl < Struct.new(
|
3532
|
+
:scram,
|
3533
|
+
:iam)
|
3534
|
+
SENSITIVE = []
|
3535
|
+
include Aws::Structure
|
3536
|
+
end
|
3537
|
+
|
2886
3538
|
# @!attribute [rw] enabled
|
2887
3539
|
# SASL/SCRAM authentication is enabled or not.
|
2888
3540
|
# @return [Boolean]
|
@@ -2895,13 +3547,18 @@ module Aws::Kafka
|
|
2895
3547
|
include Aws::Structure
|
2896
3548
|
end
|
2897
3549
|
|
2898
|
-
#
|
2899
|
-
#
|
3550
|
+
# @!attribute [rw] enabled
|
3551
|
+
# SASL/SCRAM authentication for VPC connectivity is on or off.
|
3552
|
+
# @return [Boolean]
|
2900
3553
|
#
|
2901
|
-
#
|
2902
|
-
# enabled: false,
|
2903
|
-
# }
|
3554
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectivityScram AWS API Documentation
|
2904
3555
|
#
|
3556
|
+
class VpcConnectivityScram < Struct.new(
|
3557
|
+
:enabled)
|
3558
|
+
SENSITIVE = []
|
3559
|
+
include Aws::Structure
|
3560
|
+
end
|
3561
|
+
|
2905
3562
|
# @!attribute [rw] enabled
|
2906
3563
|
# @return [Boolean]
|
2907
3564
|
#
|
@@ -2913,6 +3570,17 @@ module Aws::Kafka
|
|
2913
3570
|
include Aws::Structure
|
2914
3571
|
end
|
2915
3572
|
|
3573
|
+
# @!attribute [rw] enabled
|
3574
|
+
# @return [Boolean]
|
3575
|
+
#
|
3576
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectivityIam AWS API Documentation
|
3577
|
+
#
|
3578
|
+
class VpcConnectivityIam < Struct.new(
|
3579
|
+
:enabled)
|
3580
|
+
SENSITIVE = []
|
3581
|
+
include Aws::Structure
|
3582
|
+
end
|
3583
|
+
|
2916
3584
|
# Returns information about an error.
|
2917
3585
|
#
|
2918
3586
|
# @!attribute [rw] invalid_parameter
|
@@ -2954,15 +3622,6 @@ module Aws::Kafka
|
|
2954
3622
|
# Contains information about storage volumes attached to MSK broker
|
2955
3623
|
# nodes.
|
2956
3624
|
#
|
2957
|
-
# @note When making an API call, you may pass StorageInfo
|
2958
|
-
# data as a hash:
|
2959
|
-
#
|
2960
|
-
# {
|
2961
|
-
# ebs_storage_info: {
|
2962
|
-
# volume_size: 1,
|
2963
|
-
# },
|
2964
|
-
# }
|
2965
|
-
#
|
2966
3625
|
# @!attribute [rw] ebs_storage_info
|
2967
3626
|
# EBS volume information.
|
2968
3627
|
# @return [Types::EBSStorageInfo]
|
@@ -2977,16 +3636,6 @@ module Aws::Kafka
|
|
2977
3636
|
|
2978
3637
|
# Tag a resource.
|
2979
3638
|
#
|
2980
|
-
# @note When making an API call, you may pass TagResourceRequest
|
2981
|
-
# data as a hash:
|
2982
|
-
#
|
2983
|
-
# {
|
2984
|
-
# resource_arn: "__string", # required
|
2985
|
-
# tags: { # required
|
2986
|
-
# "__string" => "__string",
|
2987
|
-
# },
|
2988
|
-
# }
|
2989
|
-
#
|
2990
3639
|
# @!attribute [rw] resource_arn
|
2991
3640
|
# @return [String]
|
2992
3641
|
#
|
@@ -3003,15 +3652,81 @@ module Aws::Kafka
|
|
3003
3652
|
include Aws::Structure
|
3004
3653
|
end
|
3005
3654
|
|
3006
|
-
# Details
|
3655
|
+
# Details about topic replication.
|
3656
|
+
#
|
3657
|
+
# @!attribute [rw] copy_access_control_lists_for_topics
|
3658
|
+
# Whether to periodically configure remote topic ACLs to match their
|
3659
|
+
# corresponding upstream topics.
|
3660
|
+
# @return [Boolean]
|
3661
|
+
#
|
3662
|
+
# @!attribute [rw] copy_topic_configurations
|
3663
|
+
# Whether to periodically configure remote topics to match their
|
3664
|
+
# corresponding upstream topics.
|
3665
|
+
# @return [Boolean]
|
3666
|
+
#
|
3667
|
+
# @!attribute [rw] detect_and_copy_new_topics
|
3668
|
+
# Whether to periodically check for new topics and partitions.
|
3669
|
+
# @return [Boolean]
|
3007
3670
|
#
|
3008
|
-
#
|
3009
|
-
#
|
3671
|
+
# @!attribute [rw] topics_to_exclude
|
3672
|
+
# List of regular expression patterns indicating the topics that
|
3673
|
+
# should not be replicated.
|
3674
|
+
# @return [Array<String>]
|
3675
|
+
#
|
3676
|
+
# @!attribute [rw] topics_to_replicate
|
3677
|
+
# List of regular expression patterns indicating the topics to copy.
|
3678
|
+
# @return [Array<String>]
|
3679
|
+
#
|
3680
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/TopicReplication AWS API Documentation
|
3681
|
+
#
|
3682
|
+
class TopicReplication < Struct.new(
|
3683
|
+
:copy_access_control_lists_for_topics,
|
3684
|
+
:copy_topic_configurations,
|
3685
|
+
:detect_and_copy_new_topics,
|
3686
|
+
:topics_to_exclude,
|
3687
|
+
:topics_to_replicate)
|
3688
|
+
SENSITIVE = []
|
3689
|
+
include Aws::Structure
|
3690
|
+
end
|
3691
|
+
|
3692
|
+
# Details for updating the topic replication of a replicator.
|
3693
|
+
#
|
3694
|
+
# @!attribute [rw] copy_access_control_lists_for_topics
|
3695
|
+
# Whether to periodically configure remote topic ACLs to match their
|
3696
|
+
# corresponding upstream topics.
|
3697
|
+
# @return [Boolean]
|
3698
|
+
#
|
3699
|
+
# @!attribute [rw] copy_topic_configurations
|
3700
|
+
# Whether to periodically configure remote topics to match their
|
3701
|
+
# corresponding upstream topics.
|
3702
|
+
# @return [Boolean]
|
3703
|
+
#
|
3704
|
+
# @!attribute [rw] detect_and_copy_new_topics
|
3705
|
+
# Whether to periodically check for new topics and partitions.
|
3706
|
+
# @return [Boolean]
|
3707
|
+
#
|
3708
|
+
# @!attribute [rw] topics_to_exclude
|
3709
|
+
# List of regular expression patterns indicating the topics that
|
3710
|
+
# should not be replicated.
|
3711
|
+
# @return [Array<String>]
|
3712
|
+
#
|
3713
|
+
# @!attribute [rw] topics_to_replicate
|
3714
|
+
# List of regular expression patterns indicating the topics to copy.
|
3715
|
+
# @return [Array<String>]
|
3716
|
+
#
|
3717
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/TopicReplicationUpdate AWS API Documentation
|
3010
3718
|
#
|
3011
|
-
|
3012
|
-
|
3013
|
-
|
3014
|
-
|
3719
|
+
class TopicReplicationUpdate < Struct.new(
|
3720
|
+
:copy_access_control_lists_for_topics,
|
3721
|
+
:copy_topic_configurations,
|
3722
|
+
:detect_and_copy_new_topics,
|
3723
|
+
:topics_to_exclude,
|
3724
|
+
:topics_to_replicate)
|
3725
|
+
SENSITIVE = []
|
3726
|
+
include Aws::Structure
|
3727
|
+
end
|
3728
|
+
|
3729
|
+
# Details for client authentication using TLS.
|
3015
3730
|
#
|
3016
3731
|
# @!attribute [rw] certificate_authority_arn_list
|
3017
3732
|
# List of ACM Certificate Authority ARNs.
|
@@ -3030,6 +3745,18 @@ module Aws::Kafka
|
|
3030
3745
|
include Aws::Structure
|
3031
3746
|
end
|
3032
3747
|
|
3748
|
+
# @!attribute [rw] enabled
|
3749
|
+
# TLS authentication for VPC connectivity is on or off.
|
3750
|
+
# @return [Boolean]
|
3751
|
+
#
|
3752
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectivityTls AWS API Documentation
|
3753
|
+
#
|
3754
|
+
class VpcConnectivityTls < Struct.new(
|
3755
|
+
:enabled)
|
3756
|
+
SENSITIVE = []
|
3757
|
+
include Aws::Structure
|
3758
|
+
end
|
3759
|
+
|
3033
3760
|
# Returns information about an error.
|
3034
3761
|
#
|
3035
3762
|
# @!attribute [rw] invalid_parameter
|
@@ -3049,13 +3776,6 @@ module Aws::Kafka
|
|
3049
3776
|
|
3050
3777
|
# Contains information about unauthenticated traffic to the cluster.
|
3051
3778
|
#
|
3052
|
-
# @note When making an API call, you may pass Unauthenticated
|
3053
|
-
# data as a hash:
|
3054
|
-
#
|
3055
|
-
# {
|
3056
|
-
# enabled: false,
|
3057
|
-
# }
|
3058
|
-
#
|
3059
3779
|
# @!attribute [rw] enabled
|
3060
3780
|
# Specifies whether you want to enable or disable unauthenticated
|
3061
3781
|
# traffic to your cluster.
|
@@ -3105,14 +3825,6 @@ module Aws::Kafka
|
|
3105
3825
|
include Aws::Structure
|
3106
3826
|
end
|
3107
3827
|
|
3108
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
3109
|
-
# data as a hash:
|
3110
|
-
#
|
3111
|
-
# {
|
3112
|
-
# resource_arn: "__string", # required
|
3113
|
-
# tag_keys: ["__string"], # required
|
3114
|
-
# }
|
3115
|
-
#
|
3116
3828
|
# @!attribute [rw] resource_arn
|
3117
3829
|
# @return [String]
|
3118
3830
|
#
|
@@ -3130,15 +3842,6 @@ module Aws::Kafka
|
|
3130
3842
|
|
3131
3843
|
# Request body for UpdateBrokerType.
|
3132
3844
|
#
|
3133
|
-
# @note When making an API call, you may pass UpdateBrokerTypeRequest
|
3134
|
-
# data as a hash:
|
3135
|
-
#
|
3136
|
-
# {
|
3137
|
-
# cluster_arn: "__string", # required
|
3138
|
-
# current_version: "__string", # required
|
3139
|
-
# target_instance_type: "__string", # required
|
3140
|
-
# }
|
3141
|
-
#
|
3142
3845
|
# @!attribute [rw] cluster_arn
|
3143
3846
|
# @return [String]
|
3144
3847
|
#
|
@@ -3182,15 +3885,6 @@ module Aws::Kafka
|
|
3182
3885
|
|
3183
3886
|
# Request body for UpdateBrokerCount.
|
3184
3887
|
#
|
3185
|
-
# @note When making an API call, you may pass UpdateBrokerCountRequest
|
3186
|
-
# data as a hash:
|
3187
|
-
#
|
3188
|
-
# {
|
3189
|
-
# cluster_arn: "__string", # required
|
3190
|
-
# current_version: "__string", # required
|
3191
|
-
# target_number_of_broker_nodes: 1, # required
|
3192
|
-
# }
|
3193
|
-
#
|
3194
3888
|
# @!attribute [rw] cluster_arn
|
3195
3889
|
# @return [String]
|
3196
3890
|
#
|
@@ -3234,20 +3928,6 @@ module Aws::Kafka
|
|
3234
3928
|
|
3235
3929
|
# Request object for UpdateBrokerStorage.
|
3236
3930
|
#
|
3237
|
-
# @note When making an API call, you may pass UpdateBrokerStorageRequest
|
3238
|
-
# data as a hash:
|
3239
|
-
#
|
3240
|
-
# {
|
3241
|
-
# cluster_arn: "__string", # required
|
3242
|
-
# current_version: "__string", # required
|
3243
|
-
# target_broker_ebs_volume_info: [ # required
|
3244
|
-
# {
|
3245
|
-
# kafka_broker_node_id: "__string", # required
|
3246
|
-
# volume_size_gb: 1, # required
|
3247
|
-
# },
|
3248
|
-
# ],
|
3249
|
-
# }
|
3250
|
-
#
|
3251
3931
|
# @!attribute [rw] cluster_arn
|
3252
3932
|
# @return [String]
|
3253
3933
|
#
|
@@ -3298,18 +3978,6 @@ module Aws::Kafka
|
|
3298
3978
|
|
3299
3979
|
# Request body for UpdateClusterConfiguration.
|
3300
3980
|
#
|
3301
|
-
# @note When making an API call, you may pass UpdateClusterConfigurationRequest
|
3302
|
-
# data as a hash:
|
3303
|
-
#
|
3304
|
-
# {
|
3305
|
-
# cluster_arn: "__string", # required
|
3306
|
-
# configuration_info: { # required
|
3307
|
-
# arn: "__string", # required
|
3308
|
-
# revision: 1, # required
|
3309
|
-
# },
|
3310
|
-
# current_version: "__string", # required
|
3311
|
-
# }
|
3312
|
-
#
|
3313
3981
|
# @!attribute [rw] cluster_arn
|
3314
3982
|
# @return [String]
|
3315
3983
|
#
|
@@ -3353,19 +4021,6 @@ module Aws::Kafka
|
|
3353
4021
|
|
3354
4022
|
# Request body for UpdateClusterKafkaVersion.
|
3355
4023
|
#
|
3356
|
-
# @note When making an API call, you may pass UpdateClusterKafkaVersionRequest
|
3357
|
-
# data as a hash:
|
3358
|
-
#
|
3359
|
-
# {
|
3360
|
-
# cluster_arn: "__string", # required
|
3361
|
-
# configuration_info: {
|
3362
|
-
# arn: "__string", # required
|
3363
|
-
# revision: 1, # required
|
3364
|
-
# },
|
3365
|
-
# current_version: "__string", # required
|
3366
|
-
# target_kafka_version: "__string", # required
|
3367
|
-
# }
|
3368
|
-
#
|
3369
4024
|
# @!attribute [rw] cluster_arn
|
3370
4025
|
# @return [String]
|
3371
4026
|
#
|
@@ -3413,15 +4068,6 @@ module Aws::Kafka
|
|
3413
4068
|
|
3414
4069
|
# Request body for UpdateConfiguration.
|
3415
4070
|
#
|
3416
|
-
# @note When making an API call, you may pass UpdateConfigurationRequest
|
3417
|
-
# data as a hash:
|
3418
|
-
#
|
3419
|
-
# {
|
3420
|
-
# arn: "__string", # required
|
3421
|
-
# description: "__string",
|
3422
|
-
# server_properties: "data", # required
|
3423
|
-
# }
|
3424
|
-
#
|
3425
4071
|
# @!attribute [rw] arn
|
3426
4072
|
# The Amazon Resource Name (ARN) of the configuration.
|
3427
4073
|
# @return [String]
|
@@ -3464,19 +4110,6 @@ module Aws::Kafka
|
|
3464
4110
|
|
3465
4111
|
# Request body for UpdateConnectivity.
|
3466
4112
|
#
|
3467
|
-
# @note When making an API call, you may pass UpdateConnectivityRequest
|
3468
|
-
# data as a hash:
|
3469
|
-
#
|
3470
|
-
# {
|
3471
|
-
# cluster_arn: "__string", # required
|
3472
|
-
# connectivity_info: { # required
|
3473
|
-
# public_access: {
|
3474
|
-
# type: "__string",
|
3475
|
-
# },
|
3476
|
-
# },
|
3477
|
-
# current_version: "__string", # required
|
3478
|
-
# }
|
3479
|
-
#
|
3480
4113
|
# @!attribute [rw] cluster_arn
|
3481
4114
|
# @return [String]
|
3482
4115
|
#
|
@@ -3519,42 +4152,6 @@ module Aws::Kafka
|
|
3519
4152
|
|
3520
4153
|
# Request body for UpdateMonitoring.
|
3521
4154
|
#
|
3522
|
-
# @note When making an API call, you may pass UpdateMonitoringRequest
|
3523
|
-
# data as a hash:
|
3524
|
-
#
|
3525
|
-
# {
|
3526
|
-
# cluster_arn: "__string", # required
|
3527
|
-
# current_version: "__string", # required
|
3528
|
-
# enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
|
3529
|
-
# open_monitoring: {
|
3530
|
-
# prometheus: { # required
|
3531
|
-
# jmx_exporter: {
|
3532
|
-
# enabled_in_broker: false, # required
|
3533
|
-
# },
|
3534
|
-
# node_exporter: {
|
3535
|
-
# enabled_in_broker: false, # required
|
3536
|
-
# },
|
3537
|
-
# },
|
3538
|
-
# },
|
3539
|
-
# logging_info: {
|
3540
|
-
# broker_logs: { # required
|
3541
|
-
# cloud_watch_logs: {
|
3542
|
-
# enabled: false, # required
|
3543
|
-
# log_group: "__string",
|
3544
|
-
# },
|
3545
|
-
# firehose: {
|
3546
|
-
# delivery_stream: "__string",
|
3547
|
-
# enabled: false, # required
|
3548
|
-
# },
|
3549
|
-
# s3: {
|
3550
|
-
# bucket: "__string",
|
3551
|
-
# enabled: false, # required
|
3552
|
-
# prefix: "__string",
|
3553
|
-
# },
|
3554
|
-
# },
|
3555
|
-
# },
|
3556
|
-
# }
|
3557
|
-
#
|
3558
4155
|
# @!attribute [rw] cluster_arn
|
3559
4156
|
# @return [String]
|
3560
4157
|
#
|
@@ -3607,41 +4204,65 @@ module Aws::Kafka
|
|
3607
4204
|
include Aws::Structure
|
3608
4205
|
end
|
3609
4206
|
|
3610
|
-
#
|
4207
|
+
# Parameters for updating replication information between source and
|
4208
|
+
# target Kafka clusters of a replicator.
|
4209
|
+
#
|
4210
|
+
# @!attribute [rw] consumer_group_replication
|
4211
|
+
# Updated consumer group replication information.
|
4212
|
+
# @return [Types::ConsumerGroupReplicationUpdate]
|
4213
|
+
#
|
4214
|
+
# @!attribute [rw] current_version
|
4215
|
+
# Current replicator version.
|
4216
|
+
# @return [String]
|
4217
|
+
#
|
4218
|
+
# @!attribute [rw] replicator_arn
|
4219
|
+
# @return [String]
|
4220
|
+
#
|
4221
|
+
# @!attribute [rw] source_kafka_cluster_arn
|
4222
|
+
# The ARN of the source Kafka cluster.
|
4223
|
+
# @return [String]
|
4224
|
+
#
|
4225
|
+
# @!attribute [rw] target_kafka_cluster_arn
|
4226
|
+
# The ARN of the target Kafka cluster.
|
4227
|
+
# @return [String]
|
3611
4228
|
#
|
3612
|
-
#
|
3613
|
-
#
|
3614
|
-
#
|
3615
|
-
#
|
3616
|
-
#
|
3617
|
-
#
|
3618
|
-
|
3619
|
-
|
3620
|
-
|
3621
|
-
|
3622
|
-
|
3623
|
-
|
3624
|
-
|
3625
|
-
|
3626
|
-
|
3627
|
-
|
3628
|
-
|
3629
|
-
#
|
3630
|
-
#
|
3631
|
-
#
|
3632
|
-
#
|
3633
|
-
#
|
3634
|
-
#
|
3635
|
-
#
|
3636
|
-
#
|
3637
|
-
#
|
3638
|
-
#
|
3639
|
-
#
|
3640
|
-
#
|
3641
|
-
|
3642
|
-
|
3643
|
-
|
3644
|
-
|
4229
|
+
# @!attribute [rw] topic_replication
|
4230
|
+
# Updated topic replication information.
|
4231
|
+
# @return [Types::TopicReplicationUpdate]
|
4232
|
+
#
|
4233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateReplicationInfoRequest AWS API Documentation
|
4234
|
+
#
|
4235
|
+
class UpdateReplicationInfoRequest < Struct.new(
|
4236
|
+
:consumer_group_replication,
|
4237
|
+
:current_version,
|
4238
|
+
:replicator_arn,
|
4239
|
+
:source_kafka_cluster_arn,
|
4240
|
+
:target_kafka_cluster_arn,
|
4241
|
+
:topic_replication)
|
4242
|
+
SENSITIVE = []
|
4243
|
+
include Aws::Structure
|
4244
|
+
end
|
4245
|
+
|
4246
|
+
# Updated Replication information of a replicator.
|
4247
|
+
#
|
4248
|
+
# @!attribute [rw] replicator_arn
|
4249
|
+
# The Amazon Resource Name (ARN) of the replicator.
|
4250
|
+
# @return [String]
|
4251
|
+
#
|
4252
|
+
# @!attribute [rw] replicator_state
|
4253
|
+
# State of the replicator.
|
4254
|
+
# @return [String]
|
4255
|
+
#
|
4256
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateReplicationInfoResponse AWS API Documentation
|
4257
|
+
#
|
4258
|
+
class UpdateReplicationInfoResponse < Struct.new(
|
4259
|
+
:replicator_arn,
|
4260
|
+
:replicator_state)
|
4261
|
+
SENSITIVE = []
|
4262
|
+
include Aws::Structure
|
4263
|
+
end
|
4264
|
+
|
4265
|
+
# Request body for UpdateSecurity.
|
3645
4266
|
#
|
3646
4267
|
# @!attribute [rw] client_authentication
|
3647
4268
|
# Includes all client authentication related information.
|
@@ -3690,6 +4311,77 @@ module Aws::Kafka
|
|
3690
4311
|
include Aws::Structure
|
3691
4312
|
end
|
3692
4313
|
|
4314
|
+
# Request object for UpdateStorageApi.
|
4315
|
+
#
|
4316
|
+
# @!attribute [rw] cluster_arn
|
4317
|
+
# @return [String]
|
4318
|
+
#
|
4319
|
+
# @!attribute [rw] current_version
|
4320
|
+
# The version of cluster to update from. A successful operation will
|
4321
|
+
# then generate a new version.
|
4322
|
+
# @return [String]
|
4323
|
+
#
|
4324
|
+
# @!attribute [rw] provisioned_throughput
|
4325
|
+
# EBS volume provisioned throughput information.
|
4326
|
+
# @return [Types::ProvisionedThroughput]
|
4327
|
+
#
|
4328
|
+
# @!attribute [rw] storage_mode
|
4329
|
+
# Controls storage mode for supported storage tiers.
|
4330
|
+
# @return [String]
|
4331
|
+
#
|
4332
|
+
# @!attribute [rw] volume_size_gb
|
4333
|
+
# size of the EBS volume to update.
|
4334
|
+
# @return [Integer]
|
4335
|
+
#
|
4336
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateStorageRequest AWS API Documentation
|
4337
|
+
#
|
4338
|
+
class UpdateStorageRequest < Struct.new(
|
4339
|
+
:cluster_arn,
|
4340
|
+
:current_version,
|
4341
|
+
:provisioned_throughput,
|
4342
|
+
:storage_mode,
|
4343
|
+
:volume_size_gb)
|
4344
|
+
SENSITIVE = []
|
4345
|
+
include Aws::Structure
|
4346
|
+
end
|
4347
|
+
|
4348
|
+
# Response body for UpdateStorageResponse Api.
|
4349
|
+
#
|
4350
|
+
# @!attribute [rw] cluster_arn
|
4351
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
4352
|
+
# @return [String]
|
4353
|
+
#
|
4354
|
+
# @!attribute [rw] cluster_operation_arn
|
4355
|
+
# The Amazon Resource Name (ARN) of the cluster operation.
|
4356
|
+
# @return [String]
|
4357
|
+
#
|
4358
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateStorageResponse AWS API Documentation
|
4359
|
+
#
|
4360
|
+
class UpdateStorageResponse < Struct.new(
|
4361
|
+
:cluster_arn,
|
4362
|
+
:cluster_operation_arn)
|
4363
|
+
SENSITIVE = []
|
4364
|
+
include Aws::Structure
|
4365
|
+
end
|
4366
|
+
|
4367
|
+
# Description of the requester that calls the API operation.
|
4368
|
+
#
|
4369
|
+
# @!attribute [rw] type
|
4370
|
+
# The identity type of the requester that calls the API operation.
|
4371
|
+
# @return [String]
|
4372
|
+
#
|
4373
|
+
# @!attribute [rw] principal_id
|
4374
|
+
# @return [String]
|
4375
|
+
#
|
4376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UserIdentity AWS API Documentation
|
4377
|
+
#
|
4378
|
+
class UserIdentity < Struct.new(
|
4379
|
+
:type,
|
4380
|
+
:principal_id)
|
4381
|
+
SENSITIVE = []
|
4382
|
+
include Aws::Structure
|
4383
|
+
end
|
4384
|
+
|
3693
4385
|
# Zookeeper node information.
|
3694
4386
|
#
|
3695
4387
|
# @!attribute [rw] attached_eni_id
|
@@ -3740,20 +4432,6 @@ module Aws::Kafka
|
|
3740
4432
|
|
3741
4433
|
# JMX and Node monitoring for the MSK cluster.
|
3742
4434
|
#
|
3743
|
-
# @note When making an API call, you may pass OpenMonitoringInfo
|
3744
|
-
# data as a hash:
|
3745
|
-
#
|
3746
|
-
# {
|
3747
|
-
# prometheus: { # required
|
3748
|
-
# jmx_exporter: {
|
3749
|
-
# enabled_in_broker: false, # required
|
3750
|
-
# },
|
3751
|
-
# node_exporter: {
|
3752
|
-
# enabled_in_broker: false, # required
|
3753
|
-
# },
|
3754
|
-
# },
|
3755
|
-
# }
|
3756
|
-
#
|
3757
4435
|
# @!attribute [rw] prometheus
|
3758
4436
|
# Prometheus settings.
|
3759
4437
|
# @return [Types::PrometheusInfo]
|
@@ -3787,18 +4465,6 @@ module Aws::Kafka
|
|
3787
4465
|
|
3788
4466
|
# Prometheus settings.
|
3789
4467
|
#
|
3790
|
-
# @note When making an API call, you may pass PrometheusInfo
|
3791
|
-
# data as a hash:
|
3792
|
-
#
|
3793
|
-
# {
|
3794
|
-
# jmx_exporter: {
|
3795
|
-
# enabled_in_broker: false, # required
|
3796
|
-
# },
|
3797
|
-
# node_exporter: {
|
3798
|
-
# enabled_in_broker: false, # required
|
3799
|
-
# },
|
3800
|
-
# }
|
3801
|
-
#
|
3802
4468
|
# @!attribute [rw] jmx_exporter
|
3803
4469
|
# JMX Exporter settings.
|
3804
4470
|
# @return [Types::JmxExporterInfo]
|
@@ -3816,14 +4482,28 @@ module Aws::Kafka
|
|
3816
4482
|
include Aws::Structure
|
3817
4483
|
end
|
3818
4484
|
|
3819
|
-
#
|
4485
|
+
# Contains information about provisioned throughput for EBS storage
|
4486
|
+
# volumes attached to kafka broker nodes.
|
4487
|
+
#
|
4488
|
+
# @!attribute [rw] enabled
|
4489
|
+
# Provisioned throughput is enabled or not.
|
4490
|
+
# @return [Boolean]
|
3820
4491
|
#
|
3821
|
-
#
|
3822
|
-
# data
|
4492
|
+
# @!attribute [rw] volume_throughput
|
4493
|
+
# Throughput value of the EBS volumes for the data drive on each kafka
|
4494
|
+
# broker node in MiB per second.
|
4495
|
+
# @return [Integer]
|
4496
|
+
#
|
4497
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ProvisionedThroughput AWS API Documentation
|
3823
4498
|
#
|
3824
|
-
|
3825
|
-
|
3826
|
-
|
4499
|
+
class ProvisionedThroughput < Struct.new(
|
4500
|
+
:enabled,
|
4501
|
+
:volume_throughput)
|
4502
|
+
SENSITIVE = []
|
4503
|
+
include Aws::Structure
|
4504
|
+
end
|
4505
|
+
|
4506
|
+
# Broker public access control.
|
3827
4507
|
#
|
3828
4508
|
# @!attribute [rw] type
|
3829
4509
|
# The value DISABLED indicates that public access is disabled.
|
@@ -3838,15 +4518,74 @@ module Aws::Kafka
|
|
3838
4518
|
include Aws::Structure
|
3839
4519
|
end
|
3840
4520
|
|
3841
|
-
#
|
4521
|
+
# Broker VPC connectivity access control.
|
4522
|
+
#
|
4523
|
+
# @!attribute [rw] client_authentication
|
4524
|
+
# @return [Types::VpcConnectivityClientAuthentication]
|
4525
|
+
#
|
4526
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectivity AWS API Documentation
|
4527
|
+
#
|
4528
|
+
class VpcConnectivity < Struct.new(
|
4529
|
+
:client_authentication)
|
4530
|
+
SENSITIVE = []
|
4531
|
+
include Aws::Structure
|
4532
|
+
end
|
4533
|
+
|
4534
|
+
# Description of the VPC connection for CreateVpcConnection and
|
4535
|
+
# DeleteVpcConnection operations.
|
4536
|
+
#
|
4537
|
+
# @!attribute [rw] vpc_connection_arn
|
4538
|
+
# @return [String]
|
3842
4539
|
#
|
3843
|
-
#
|
3844
|
-
#
|
4540
|
+
# @!attribute [rw] owner
|
4541
|
+
# @return [String]
|
4542
|
+
#
|
4543
|
+
# @!attribute [rw] user_identity
|
4544
|
+
# Description of the requester that calls the API operation.
|
4545
|
+
# @return [Types::UserIdentity]
|
4546
|
+
#
|
4547
|
+
# @!attribute [rw] creation_time
|
4548
|
+
# @return [Time]
|
4549
|
+
#
|
4550
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectionInfo AWS API Documentation
|
4551
|
+
#
|
4552
|
+
class VpcConnectionInfo < Struct.new(
|
4553
|
+
:vpc_connection_arn,
|
4554
|
+
:owner,
|
4555
|
+
:user_identity,
|
4556
|
+
:creation_time)
|
4557
|
+
SENSITIVE = []
|
4558
|
+
include Aws::Structure
|
4559
|
+
end
|
4560
|
+
|
4561
|
+
# Description of the VPC connection for CreateVpcConnection and
|
4562
|
+
# DeleteVpcConnection operations.
|
4563
|
+
#
|
4564
|
+
# @!attribute [rw] creation_time
|
4565
|
+
# @return [Time]
|
4566
|
+
#
|
4567
|
+
# @!attribute [rw] owner
|
4568
|
+
# @return [String]
|
3845
4569
|
#
|
3846
|
-
#
|
3847
|
-
#
|
3848
|
-
#
|
3849
|
-
#
|
4570
|
+
# @!attribute [rw] user_identity
|
4571
|
+
# Description of the requester that calls the API operation.
|
4572
|
+
# @return [Types::UserIdentity]
|
4573
|
+
#
|
4574
|
+
# @!attribute [rw] vpc_connection_arn
|
4575
|
+
# @return [String]
|
4576
|
+
#
|
4577
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectionInfoServerless AWS API Documentation
|
4578
|
+
#
|
4579
|
+
class VpcConnectionInfoServerless < Struct.new(
|
4580
|
+
:creation_time,
|
4581
|
+
:owner,
|
4582
|
+
:user_identity,
|
4583
|
+
:vpc_connection_arn)
|
4584
|
+
SENSITIVE = []
|
4585
|
+
include Aws::Structure
|
4586
|
+
end
|
4587
|
+
|
4588
|
+
# Request body for RebootBrokerNode action.
|
3850
4589
|
#
|
3851
4590
|
# @!attribute [rw] broker_ids
|
3852
4591
|
# The list of broker ids to be rebooted.
|
@@ -3885,15 +4624,6 @@ module Aws::Kafka
|
|
3885
4624
|
|
3886
4625
|
# The details of the Amazon S3 destination for broker logs.
|
3887
4626
|
#
|
3888
|
-
# @note When making an API call, you may pass S3
|
3889
|
-
# data as a hash:
|
3890
|
-
#
|
3891
|
-
# {
|
3892
|
-
# bucket: "__string",
|
3893
|
-
# enabled: false, # required
|
3894
|
-
# prefix: "__string",
|
3895
|
-
# }
|
3896
|
-
#
|
3897
4627
|
# @!attribute [rw] bucket
|
3898
4628
|
# The name of the S3 bucket that is the destination for broker logs.
|
3899
4629
|
# @return [String]
|
@@ -3933,13 +4663,6 @@ module Aws::Kafka
|
|
3933
4663
|
|
3934
4664
|
# Indicates whether you want to enable or disable the JMX Exporter.
|
3935
4665
|
#
|
3936
|
-
# @note When making an API call, you may pass JmxExporterInfo
|
3937
|
-
# data as a hash:
|
3938
|
-
#
|
3939
|
-
# {
|
3940
|
-
# enabled_in_broker: false, # required
|
3941
|
-
# }
|
3942
|
-
#
|
3943
4666
|
# @!attribute [rw] enabled_in_broker
|
3944
4667
|
# JMX Exporter being enabled in broker.
|
3945
4668
|
# @return [Boolean]
|
@@ -3968,13 +4691,6 @@ module Aws::Kafka
|
|
3968
4691
|
|
3969
4692
|
# Indicates whether you want to enable or disable the Node Exporter.
|
3970
4693
|
#
|
3971
|
-
# @note When making an API call, you may pass NodeExporterInfo
|
3972
|
-
# data as a hash:
|
3973
|
-
#
|
3974
|
-
# {
|
3975
|
-
# enabled_in_broker: false, # required
|
3976
|
-
# }
|
3977
|
-
#
|
3978
4694
|
# @!attribute [rw] enabled_in_broker
|
3979
4695
|
# Node Exporter being enabled in broker.
|
3980
4696
|
# @return [Boolean]
|