aws-sdk-kafka 1.113.0 → 1.114.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f15511b2c9c84ee1e5d14019922635eb559e62e2dfbb6d44a18a7cb8cb340bd5
4
- data.tar.gz: 06dfcf2c0a07fde930da3d8136cec5de8b53a038204529efcf6629f6337bde6d
3
+ metadata.gz: f5334c81e6b1302de289098280129d4240dfd071234468b101dcea90d4d20792
4
+ data.tar.gz: 15454f10104a1ea1fe372523cb8939e416476ac095fd9de621685865166a14c3
5
5
  SHA512:
6
- metadata.gz: 86a592003dbf76832109b0d6fd56d54d02987e566f7eed81a5b8f4c66ccf7ebe7a1e3531a9ae8f50f1b205395e18506720982837dc1aaea8813ff327022687bb
7
- data.tar.gz: 163c2332d39f316cac785fa5b163f98238bf0f2f4136c9b3b21795994f88e6a7684c3ecde2440e278646ce41702670ec26348069bb9165acc4b6262541c98595
6
+ metadata.gz: 953c77a3089cbfc0a6f989880f95737c8f84409f6d6057ec24e796e63ee789c91a1a979299345108fbc34edef2e63e81a62756658391a4de55b6b3591c4db20e
7
+ data.tar.gz: 29ca132ffd924a86cad4dad921ad3fa484e144e476e80fad7bcc2e9b3feb3c98f8af9e825bffa8665ae3a6f171fea0f3e66bf0f334d4891502c5545257f65135
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.114.0 (2026-06-22)
5
+ ------------------
6
+
7
+ * Feature - Amazon MSK Replicator now supports mTLS authentication when connecting to external Apache Kafka clusters, enabling customers to replicate data from clusters that require mutual TLS for client authentication. This capability is supported when replicating to Amazon MSK Express brokers.
8
+
4
9
  1.113.0 (2026-05-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.113.0
1
+ 1.114.0
@@ -952,10 +952,13 @@ module Aws::Kafka
952
952
  # subnet_ids: ["__string"], # required
953
953
  # },
954
954
  # client_authentication: {
955
- # sasl_scram: { # required
955
+ # sasl_scram: {
956
956
  # mechanism: "SHA256", # required, accepts SHA256, SHA512
957
957
  # secret_arn: "__string", # required
958
958
  # },
959
+ # mtls: {
960
+ # secret_arn: "__string", # required
961
+ # },
959
962
  # },
960
963
  # encryption_in_transit: {
961
964
  # encryption_type: "TLS", # required, accepts TLS
@@ -1850,6 +1853,7 @@ module Aws::Kafka
1850
1853
  # resp.kafka_clusters[0].vpc_config.subnet_ids[0] #=> String
1851
1854
  # resp.kafka_clusters[0].client_authentication.sasl_scram.mechanism #=> String, one of "SHA256", "SHA512"
1852
1855
  # resp.kafka_clusters[0].client_authentication.sasl_scram.secret_arn #=> String
1856
+ # resp.kafka_clusters[0].client_authentication.mtls.secret_arn #=> String
1853
1857
  # resp.kafka_clusters[0].encryption_in_transit.encryption_type #=> String, one of "TLS"
1854
1858
  # resp.kafka_clusters[0].encryption_in_transit.root_ca_certificate #=> String
1855
1859
  # resp.log_delivery.replicator_log_delivery.cloud_watch_logs.enabled #=> Boolean
@@ -3857,7 +3861,7 @@ module Aws::Kafka
3857
3861
  tracer: tracer
3858
3862
  )
3859
3863
  context[:gem_name] = 'aws-sdk-kafka'
3860
- context[:gem_version] = '1.113.0'
3864
+ context[:gem_version] = '1.114.0'
3861
3865
  Seahorse::Client::Request.new(handlers, context)
3862
3866
  end
3863
3867
 
@@ -127,6 +127,7 @@ module Aws::Kafka
127
127
  KafkaClusterDescription = Shapes::StructureShape.new(name: 'KafkaClusterDescription')
128
128
  KafkaClusterEncryptionInTransit = Shapes::StructureShape.new(name: 'KafkaClusterEncryptionInTransit')
129
129
  KafkaClusterEncryptionInTransitType = Shapes::StringShape.new(name: 'KafkaClusterEncryptionInTransitType')
130
+ KafkaClusterMTLSAuthentication = Shapes::StructureShape.new(name: 'KafkaClusterMTLSAuthentication')
130
131
  KafkaClusterSaslScramAuthentication = Shapes::StructureShape.new(name: 'KafkaClusterSaslScramAuthentication')
131
132
  KafkaClusterSaslScramMechanism = Shapes::StringShape.new(name: 'KafkaClusterSaslScramMechanism')
132
133
  KafkaClusterSummary = Shapes::StructureShape.new(name: 'KafkaClusterSummary')
@@ -865,7 +866,8 @@ module Aws::Kafka
865
866
  KafkaCluster.add_member(:encryption_in_transit, Shapes::ShapeRef.new(shape: KafkaClusterEncryptionInTransit, location_name: "encryptionInTransit"))
866
867
  KafkaCluster.struct_class = Types::KafkaCluster
867
868
 
868
- KafkaClusterClientAuthentication.add_member(:sasl_scram, Shapes::ShapeRef.new(shape: KafkaClusterSaslScramAuthentication, required: true, location_name: "saslScram"))
869
+ KafkaClusterClientAuthentication.add_member(:sasl_scram, Shapes::ShapeRef.new(shape: KafkaClusterSaslScramAuthentication, location_name: "saslScram"))
870
+ KafkaClusterClientAuthentication.add_member(:mtls, Shapes::ShapeRef.new(shape: KafkaClusterMTLSAuthentication, location_name: "mTLS"))
869
871
  KafkaClusterClientAuthentication.struct_class = Types::KafkaClusterClientAuthentication
870
872
 
871
873
  KafkaClusterClientVpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroupIds"))
@@ -884,6 +886,9 @@ module Aws::Kafka
884
886
  KafkaClusterEncryptionInTransit.add_member(:root_ca_certificate, Shapes::ShapeRef.new(shape: __string, location_name: "rootCaCertificate"))
885
887
  KafkaClusterEncryptionInTransit.struct_class = Types::KafkaClusterEncryptionInTransit
886
888
 
889
+ KafkaClusterMTLSAuthentication.add_member(:secret_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "secretArn"))
890
+ KafkaClusterMTLSAuthentication.struct_class = Types::KafkaClusterMTLSAuthentication
891
+
887
892
  KafkaClusterSaslScramAuthentication.add_member(:mechanism, Shapes::ShapeRef.new(shape: KafkaClusterSaslScramMechanism, required: true, location_name: "mechanism"))
888
893
  KafkaClusterSaslScramAuthentication.add_member(:secret_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "secretArn"))
889
894
  KafkaClusterSaslScramAuthentication.struct_class = Types::KafkaClusterSaslScramAuthentication
@@ -2463,10 +2463,15 @@ module Aws::Kafka
2463
2463
  # Details for SASL/SCRAM client authentication.
2464
2464
  # @return [Types::KafkaClusterSaslScramAuthentication]
2465
2465
  #
2466
+ # @!attribute [rw] mtls
2467
+ # Details for mTLS client authentication.
2468
+ # @return [Types::KafkaClusterMTLSAuthentication]
2469
+ #
2466
2470
  # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterClientAuthentication AWS API Documentation
2467
2471
  #
2468
2472
  class KafkaClusterClientAuthentication < Struct.new(
2469
- :sasl_scram)
2473
+ :sasl_scram,
2474
+ :mtls)
2470
2475
  SENSITIVE = []
2471
2476
  include Aws::Structure
2472
2477
  end
@@ -2490,6 +2495,20 @@ module Aws::Kafka
2490
2495
  include Aws::Structure
2491
2496
  end
2492
2497
 
2498
+ # Details for mTLS client authentication.
2499
+ #
2500
+ # @!attribute [rw] secret_arn
2501
+ # The Amazon Resource Name (ARN) of the Secrets Manager secret.
2502
+ # @return [String]
2503
+ #
2504
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterMTLSAuthentication AWS API Documentation
2505
+ #
2506
+ class KafkaClusterMTLSAuthentication < Struct.new(
2507
+ :secret_arn)
2508
+ SENSITIVE = []
2509
+ include Aws::Structure
2510
+ end
2511
+
2493
2512
  # Details of encryption in transit to the Apache Kafka cluster.
2494
2513
  #
2495
2514
  # @!attribute [rw] encryption_type
data/lib/aws-sdk-kafka.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Kafka
54
54
  autoload :EndpointProvider, 'aws-sdk-kafka/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-kafka/endpoints'
56
56
 
57
- GEM_VERSION = '1.113.0'
57
+ GEM_VERSION = '1.114.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -209,7 +209,10 @@ module Aws
209
209
  sasl_scram: {
210
210
  mechanism: ("SHA256" | "SHA512"),
211
211
  secret_arn: ::String
212
- }
212
+ }?,
213
+ mtls: {
214
+ secret_arn: ::String
215
+ }?
213
216
  }?,
214
217
  encryption_in_transit: {
215
218
  encryption_type: ("TLS"),
data/sig/types.rbs CHANGED
@@ -685,6 +685,7 @@ module Aws::Kafka
685
685
 
686
686
  class KafkaClusterClientAuthentication
687
687
  attr_accessor sasl_scram: Types::KafkaClusterSaslScramAuthentication
688
+ attr_accessor mtls: Types::KafkaClusterMTLSAuthentication
688
689
  SENSITIVE: []
689
690
  end
690
691
 
@@ -694,6 +695,11 @@ module Aws::Kafka
694
695
  SENSITIVE: []
695
696
  end
696
697
 
698
+ class KafkaClusterMTLSAuthentication
699
+ attr_accessor secret_arn: ::String
700
+ SENSITIVE: []
701
+ end
702
+
697
703
  class KafkaClusterEncryptionInTransit
698
704
  attr_accessor encryption_type: ("TLS")
699
705
  attr_accessor root_ca_certificate: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.113.0
4
+ version: 1.114.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services