aws-sdk-kafka 1.118.0 → 1.119.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kafka/client.rb +31 -1
- data/lib/aws-sdk-kafka/client_api.rb +29 -0
- data/lib/aws-sdk-kafka/types.rb +124 -1
- data/lib/aws-sdk-kafka.rb +1 -1
- data/sig/client.rbs +19 -0
- data/sig/types.rbs +31 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: caa22ed9a548517b27e1c8b6e0b7813a252e09182feece3ceb8fa3d710c94419
|
|
4
|
+
data.tar.gz: a437b85a1d9eabc46d6f7821fb7ccff621ada0b86da9232bcdc8cd96a4dd5253
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 324b494209f06f4c935a06005a1e9efc0cf9d1508f8b7eb57f76af720d341f73cc0a5687d0f120ccc25c5f6a0ecab8d786b635ef51e7b3ba49627a8ea9bb98f6
|
|
7
|
+
data.tar.gz: 48248d720e40f86efb51ad2e1539b2218d2daee91279eeab8bc2a012ce13e7a7c9dc47c229f448a5a39a733e748f5645122ed96573b192f506f6f4c19bf163af
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.119.0 (2026-08-24)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon MSK Replicator now supports OAuth authentication when connecting to external Apache Kafka clusters, enabling customers to replicate data from clusters that require OAuth for client authentication. This new capability is supported in all AWS Regions where MSK Express brokers are available.
|
|
8
|
+
|
|
4
9
|
1.118.0 (2026-08-06)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.119.0
|
data/lib/aws-sdk-kafka/client.rb
CHANGED
|
@@ -1129,6 +1129,25 @@ module Aws::Kafka
|
|
|
1129
1129
|
# mtls: {
|
|
1130
1130
|
# secret_arn: "__string", # required
|
|
1131
1131
|
# },
|
|
1132
|
+
# sasl_o_auth_bearer: {
|
|
1133
|
+
# token_endpoint_url: "__string", # required
|
|
1134
|
+
# client_credentials: {
|
|
1135
|
+
# token_request_secret_arn: "__string", # required
|
|
1136
|
+
# },
|
|
1137
|
+
# iam_jwt_bearer: {
|
|
1138
|
+
# audience: "__string", # required
|
|
1139
|
+
# signing_algorithm: "RS256", # required, accepts RS256, ES384
|
|
1140
|
+
# token_request_secret_arn: "__string",
|
|
1141
|
+
# },
|
|
1142
|
+
# client_credentials_assertion: {
|
|
1143
|
+
# audience: "__string", # required
|
|
1144
|
+
# signing_algorithm: "RS256", # required, accepts RS256, ES384
|
|
1145
|
+
# token_request_secret_arn: "__string",
|
|
1146
|
+
# },
|
|
1147
|
+
# token_endpoint_authentication_method: "POST", # required, accepts POST, BASIC, NONE
|
|
1148
|
+
# scope: "__string",
|
|
1149
|
+
# token_endpoint_tls_certificate_arn: "__string",
|
|
1150
|
+
# },
|
|
1132
1151
|
# },
|
|
1133
1152
|
# encryption_in_transit: {
|
|
1134
1153
|
# encryption_type: "TLS", # required, accepts TLS
|
|
@@ -2195,6 +2214,17 @@ module Aws::Kafka
|
|
|
2195
2214
|
# resp.kafka_clusters[0].client_authentication.sasl_scram.mechanism #=> String, one of "SHA256", "SHA512"
|
|
2196
2215
|
# resp.kafka_clusters[0].client_authentication.sasl_scram.secret_arn #=> String
|
|
2197
2216
|
# resp.kafka_clusters[0].client_authentication.mtls.secret_arn #=> String
|
|
2217
|
+
# resp.kafka_clusters[0].client_authentication.sasl_o_auth_bearer.token_endpoint_url #=> String
|
|
2218
|
+
# resp.kafka_clusters[0].client_authentication.sasl_o_auth_bearer.client_credentials.token_request_secret_arn #=> String
|
|
2219
|
+
# resp.kafka_clusters[0].client_authentication.sasl_o_auth_bearer.iam_jwt_bearer.audience #=> String
|
|
2220
|
+
# resp.kafka_clusters[0].client_authentication.sasl_o_auth_bearer.iam_jwt_bearer.signing_algorithm #=> String, one of "RS256", "ES384"
|
|
2221
|
+
# resp.kafka_clusters[0].client_authentication.sasl_o_auth_bearer.iam_jwt_bearer.token_request_secret_arn #=> String
|
|
2222
|
+
# resp.kafka_clusters[0].client_authentication.sasl_o_auth_bearer.client_credentials_assertion.audience #=> String
|
|
2223
|
+
# resp.kafka_clusters[0].client_authentication.sasl_o_auth_bearer.client_credentials_assertion.signing_algorithm #=> String, one of "RS256", "ES384"
|
|
2224
|
+
# resp.kafka_clusters[0].client_authentication.sasl_o_auth_bearer.client_credentials_assertion.token_request_secret_arn #=> String
|
|
2225
|
+
# resp.kafka_clusters[0].client_authentication.sasl_o_auth_bearer.token_endpoint_authentication_method #=> String, one of "POST", "BASIC", "NONE"
|
|
2226
|
+
# resp.kafka_clusters[0].client_authentication.sasl_o_auth_bearer.scope #=> String
|
|
2227
|
+
# resp.kafka_clusters[0].client_authentication.sasl_o_auth_bearer.token_endpoint_tls_certificate_arn #=> String
|
|
2198
2228
|
# resp.kafka_clusters[0].encryption_in_transit.encryption_type #=> String, one of "TLS"
|
|
2199
2229
|
# resp.kafka_clusters[0].encryption_in_transit.root_ca_certificate #=> String
|
|
2200
2230
|
# resp.log_delivery.replicator_log_delivery.cloud_watch_logs.enabled #=> Boolean
|
|
@@ -4346,7 +4376,7 @@ module Aws::Kafka
|
|
|
4346
4376
|
tracer: tracer
|
|
4347
4377
|
)
|
|
4348
4378
|
context[:gem_name] = 'aws-sdk-kafka'
|
|
4349
|
-
context[:gem_version] = '1.
|
|
4379
|
+
context[:gem_version] = '1.119.0'
|
|
4350
4380
|
Seahorse::Client::Request.new(handlers, context)
|
|
4351
4381
|
end
|
|
4352
4382
|
|
|
@@ -140,6 +140,7 @@ module Aws::Kafka
|
|
|
140
140
|
InternalServerErrorException = Shapes::StructureShape.new(name: 'InternalServerErrorException')
|
|
141
141
|
JmxExporter = Shapes::StructureShape.new(name: 'JmxExporter')
|
|
142
142
|
JmxExporterInfo = Shapes::StructureShape.new(name: 'JmxExporterInfo')
|
|
143
|
+
JwtSigningAlgorithm = Shapes::StringShape.new(name: 'JwtSigningAlgorithm')
|
|
143
144
|
KafkaCluster = Shapes::StructureShape.new(name: 'KafkaCluster')
|
|
144
145
|
KafkaClusterClientAuthentication = Shapes::StructureShape.new(name: 'KafkaClusterClientAuthentication')
|
|
145
146
|
KafkaClusterClientVpcConfig = Shapes::StructureShape.new(name: 'KafkaClusterClientVpcConfig')
|
|
@@ -147,6 +148,10 @@ module Aws::Kafka
|
|
|
147
148
|
KafkaClusterEncryptionInTransit = Shapes::StructureShape.new(name: 'KafkaClusterEncryptionInTransit')
|
|
148
149
|
KafkaClusterEncryptionInTransitType = Shapes::StringShape.new(name: 'KafkaClusterEncryptionInTransitType')
|
|
149
150
|
KafkaClusterMTLSAuthentication = Shapes::StructureShape.new(name: 'KafkaClusterMTLSAuthentication')
|
|
151
|
+
KafkaClusterOAuthClientCredentials = Shapes::StructureShape.new(name: 'KafkaClusterOAuthClientCredentials')
|
|
152
|
+
KafkaClusterOAuthClientCredentialsAssertion = Shapes::StructureShape.new(name: 'KafkaClusterOAuthClientCredentialsAssertion')
|
|
153
|
+
KafkaClusterOAuthIamJwtBearer = Shapes::StructureShape.new(name: 'KafkaClusterOAuthIamJwtBearer')
|
|
154
|
+
KafkaClusterSaslOAuthBearerAuthentication = Shapes::StructureShape.new(name: 'KafkaClusterSaslOAuthBearerAuthentication')
|
|
150
155
|
KafkaClusterSaslScramAuthentication = Shapes::StructureShape.new(name: 'KafkaClusterSaslScramAuthentication')
|
|
151
156
|
KafkaClusterSaslScramMechanism = Shapes::StringShape.new(name: 'KafkaClusterSaslScramMechanism')
|
|
152
157
|
KafkaClusterSummary = Shapes::StructureShape.new(name: 'KafkaClusterSummary')
|
|
@@ -253,6 +258,7 @@ module Aws::Kafka
|
|
|
253
258
|
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
|
254
259
|
TargetCompressionType = Shapes::StringShape.new(name: 'TargetCompressionType')
|
|
255
260
|
Tls = Shapes::StructureShape.new(name: 'Tls')
|
|
261
|
+
TokenEndpointAuthenticationMethod = Shapes::StringShape.new(name: 'TokenEndpointAuthenticationMethod')
|
|
256
262
|
TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
|
|
257
263
|
TopicConfiguration = Shapes::StructureShape.new(name: 'TopicConfiguration')
|
|
258
264
|
TopicExistsException = Shapes::StructureShape.new(name: 'TopicExistsException')
|
|
@@ -1003,6 +1009,7 @@ module Aws::Kafka
|
|
|
1003
1009
|
|
|
1004
1010
|
KafkaClusterClientAuthentication.add_member(:sasl_scram, Shapes::ShapeRef.new(shape: KafkaClusterSaslScramAuthentication, location_name: "saslScram"))
|
|
1005
1011
|
KafkaClusterClientAuthentication.add_member(:mtls, Shapes::ShapeRef.new(shape: KafkaClusterMTLSAuthentication, location_name: "mTLS"))
|
|
1012
|
+
KafkaClusterClientAuthentication.add_member(:sasl_o_auth_bearer, Shapes::ShapeRef.new(shape: KafkaClusterSaslOAuthBearerAuthentication, location_name: "saslOAuthBearer"))
|
|
1006
1013
|
KafkaClusterClientAuthentication.struct_class = Types::KafkaClusterClientAuthentication
|
|
1007
1014
|
|
|
1008
1015
|
KafkaClusterClientVpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroupIds"))
|
|
@@ -1024,6 +1031,28 @@ module Aws::Kafka
|
|
|
1024
1031
|
KafkaClusterMTLSAuthentication.add_member(:secret_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "secretArn"))
|
|
1025
1032
|
KafkaClusterMTLSAuthentication.struct_class = Types::KafkaClusterMTLSAuthentication
|
|
1026
1033
|
|
|
1034
|
+
KafkaClusterOAuthClientCredentials.add_member(:token_request_secret_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "tokenRequestSecretArn"))
|
|
1035
|
+
KafkaClusterOAuthClientCredentials.struct_class = Types::KafkaClusterOAuthClientCredentials
|
|
1036
|
+
|
|
1037
|
+
KafkaClusterOAuthClientCredentialsAssertion.add_member(:audience, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "audience"))
|
|
1038
|
+
KafkaClusterOAuthClientCredentialsAssertion.add_member(:signing_algorithm, Shapes::ShapeRef.new(shape: JwtSigningAlgorithm, required: true, location_name: "signingAlgorithm"))
|
|
1039
|
+
KafkaClusterOAuthClientCredentialsAssertion.add_member(:token_request_secret_arn, Shapes::ShapeRef.new(shape: __string, location_name: "tokenRequestSecretArn"))
|
|
1040
|
+
KafkaClusterOAuthClientCredentialsAssertion.struct_class = Types::KafkaClusterOAuthClientCredentialsAssertion
|
|
1041
|
+
|
|
1042
|
+
KafkaClusterOAuthIamJwtBearer.add_member(:audience, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "audience"))
|
|
1043
|
+
KafkaClusterOAuthIamJwtBearer.add_member(:signing_algorithm, Shapes::ShapeRef.new(shape: JwtSigningAlgorithm, required: true, location_name: "signingAlgorithm"))
|
|
1044
|
+
KafkaClusterOAuthIamJwtBearer.add_member(:token_request_secret_arn, Shapes::ShapeRef.new(shape: __string, location_name: "tokenRequestSecretArn"))
|
|
1045
|
+
KafkaClusterOAuthIamJwtBearer.struct_class = Types::KafkaClusterOAuthIamJwtBearer
|
|
1046
|
+
|
|
1047
|
+
KafkaClusterSaslOAuthBearerAuthentication.add_member(:token_endpoint_url, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "tokenEndpointUrl"))
|
|
1048
|
+
KafkaClusterSaslOAuthBearerAuthentication.add_member(:client_credentials, Shapes::ShapeRef.new(shape: KafkaClusterOAuthClientCredentials, location_name: "clientCredentials"))
|
|
1049
|
+
KafkaClusterSaslOAuthBearerAuthentication.add_member(:iam_jwt_bearer, Shapes::ShapeRef.new(shape: KafkaClusterOAuthIamJwtBearer, location_name: "iamJwtBearer"))
|
|
1050
|
+
KafkaClusterSaslOAuthBearerAuthentication.add_member(:client_credentials_assertion, Shapes::ShapeRef.new(shape: KafkaClusterOAuthClientCredentialsAssertion, location_name: "clientCredentialsAssertion"))
|
|
1051
|
+
KafkaClusterSaslOAuthBearerAuthentication.add_member(:token_endpoint_authentication_method, Shapes::ShapeRef.new(shape: TokenEndpointAuthenticationMethod, required: true, location_name: "tokenEndpointAuthenticationMethod"))
|
|
1052
|
+
KafkaClusterSaslOAuthBearerAuthentication.add_member(:scope, Shapes::ShapeRef.new(shape: __string, location_name: "scope"))
|
|
1053
|
+
KafkaClusterSaslOAuthBearerAuthentication.add_member(:token_endpoint_tls_certificate_arn, Shapes::ShapeRef.new(shape: __string, location_name: "tokenEndpointTlsCertificateArn"))
|
|
1054
|
+
KafkaClusterSaslOAuthBearerAuthentication.struct_class = Types::KafkaClusterSaslOAuthBearerAuthentication
|
|
1055
|
+
|
|
1027
1056
|
KafkaClusterSaslScramAuthentication.add_member(:mechanism, Shapes::ShapeRef.new(shape: KafkaClusterSaslScramMechanism, required: true, location_name: "mechanism"))
|
|
1028
1057
|
KafkaClusterSaslScramAuthentication.add_member(:secret_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "secretArn"))
|
|
1029
1058
|
KafkaClusterSaslScramAuthentication.struct_class = Types::KafkaClusterSaslScramAuthentication
|
data/lib/aws-sdk-kafka/types.rb
CHANGED
|
@@ -2848,11 +2848,134 @@ module Aws::Kafka
|
|
|
2848
2848
|
# Details for mTLS client authentication.
|
|
2849
2849
|
# @return [Types::KafkaClusterMTLSAuthentication]
|
|
2850
2850
|
#
|
|
2851
|
+
# @!attribute [rw] sasl_o_auth_bearer
|
|
2852
|
+
# Details for SASL/OAUTHBEARER client authentication.
|
|
2853
|
+
# @return [Types::KafkaClusterSaslOAuthBearerAuthentication]
|
|
2854
|
+
#
|
|
2851
2855
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterClientAuthentication AWS API Documentation
|
|
2852
2856
|
#
|
|
2853
2857
|
class KafkaClusterClientAuthentication < Struct.new(
|
|
2854
2858
|
:sasl_scram,
|
|
2855
|
-
:mtls
|
|
2859
|
+
:mtls,
|
|
2860
|
+
:sasl_o_auth_bearer)
|
|
2861
|
+
SENSITIVE = []
|
|
2862
|
+
include Aws::Structure
|
|
2863
|
+
end
|
|
2864
|
+
|
|
2865
|
+
# Details for SASL/OAUTHBEARER client authentication.
|
|
2866
|
+
#
|
|
2867
|
+
# @!attribute [rw] token_endpoint_url
|
|
2868
|
+
# The HTTPS URL of the OAuth token endpoint that vends OAuth Bearer
|
|
2869
|
+
# tokens per RFC 6749.
|
|
2870
|
+
# @return [String]
|
|
2871
|
+
#
|
|
2872
|
+
# @!attribute [rw] client_credentials
|
|
2873
|
+
# Details for SASL/OAUTHBEARER using standard client\_credentials
|
|
2874
|
+
# grant.
|
|
2875
|
+
# @return [Types::KafkaClusterOAuthClientCredentials]
|
|
2876
|
+
#
|
|
2877
|
+
# @!attribute [rw] iam_jwt_bearer
|
|
2878
|
+
# Details for SASL/OAUTHBEARER using JWT Bearer assertion grant.
|
|
2879
|
+
# @return [Types::KafkaClusterOAuthIamJwtBearer]
|
|
2880
|
+
#
|
|
2881
|
+
# @!attribute [rw] client_credentials_assertion
|
|
2882
|
+
# Details for SASL/OAUTHBEARER using client credentials grant with JWT
|
|
2883
|
+
# client assertion.
|
|
2884
|
+
# @return [Types::KafkaClusterOAuthClientCredentialsAssertion]
|
|
2885
|
+
#
|
|
2886
|
+
# @!attribute [rw] token_endpoint_authentication_method
|
|
2887
|
+
# How client credentials are sent to the identity provider. Valid
|
|
2888
|
+
# values are POST, BASIC, or NONE.
|
|
2889
|
+
# @return [String]
|
|
2890
|
+
#
|
|
2891
|
+
# @!attribute [rw] scope
|
|
2892
|
+
# OAuth scope to request. Included in the token request if provided.
|
|
2893
|
+
# @return [String]
|
|
2894
|
+
#
|
|
2895
|
+
# @!attribute [rw] token_endpoint_tls_certificate_arn
|
|
2896
|
+
# Secrets Manager ARN containing a custom CA certificate for the
|
|
2897
|
+
# identity provider. Required only if the identity provider uses a
|
|
2898
|
+
# private CA.
|
|
2899
|
+
# @return [String]
|
|
2900
|
+
#
|
|
2901
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterSaslOAuthBearerAuthentication AWS API Documentation
|
|
2902
|
+
#
|
|
2903
|
+
class KafkaClusterSaslOAuthBearerAuthentication < Struct.new(
|
|
2904
|
+
:token_endpoint_url,
|
|
2905
|
+
:client_credentials,
|
|
2906
|
+
:iam_jwt_bearer,
|
|
2907
|
+
:client_credentials_assertion,
|
|
2908
|
+
:token_endpoint_authentication_method,
|
|
2909
|
+
:scope,
|
|
2910
|
+
:token_endpoint_tls_certificate_arn)
|
|
2911
|
+
SENSITIVE = []
|
|
2912
|
+
include Aws::Structure
|
|
2913
|
+
end
|
|
2914
|
+
|
|
2915
|
+
# Details for SASL/OAUTHBEARER using standard client\_credentials grant
|
|
2916
|
+
# (RFC 6749).
|
|
2917
|
+
#
|
|
2918
|
+
# @!attribute [rw] token_request_secret_arn
|
|
2919
|
+
# The Amazon Resource Name (ARN) of the Secrets Manager secret
|
|
2920
|
+
# containing the OAuth client credentials.
|
|
2921
|
+
# @return [String]
|
|
2922
|
+
#
|
|
2923
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterOAuthClientCredentials AWS API Documentation
|
|
2924
|
+
#
|
|
2925
|
+
class KafkaClusterOAuthClientCredentials < Struct.new(
|
|
2926
|
+
:token_request_secret_arn)
|
|
2927
|
+
SENSITIVE = []
|
|
2928
|
+
include Aws::Structure
|
|
2929
|
+
end
|
|
2930
|
+
|
|
2931
|
+
# Details for SASL/OAUTHBEARER using JWT Bearer assertion grant (RFC
|
|
2932
|
+
# 7523).
|
|
2933
|
+
#
|
|
2934
|
+
# @!attribute [rw] audience
|
|
2935
|
+
# The audience for the JWT Bearer assertion.
|
|
2936
|
+
# @return [String]
|
|
2937
|
+
#
|
|
2938
|
+
# @!attribute [rw] signing_algorithm
|
|
2939
|
+
# The signing algorithm for the JWT Bearer assertion.
|
|
2940
|
+
# @return [String]
|
|
2941
|
+
#
|
|
2942
|
+
# @!attribute [rw] token_request_secret_arn
|
|
2943
|
+
# The Amazon Resource Name (ARN) of the Secrets Manager secret
|
|
2944
|
+
# containing the signing key.
|
|
2945
|
+
# @return [String]
|
|
2946
|
+
#
|
|
2947
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterOAuthIamJwtBearer AWS API Documentation
|
|
2948
|
+
#
|
|
2949
|
+
class KafkaClusterOAuthIamJwtBearer < Struct.new(
|
|
2950
|
+
:audience,
|
|
2951
|
+
:signing_algorithm,
|
|
2952
|
+
:token_request_secret_arn)
|
|
2953
|
+
SENSITIVE = []
|
|
2954
|
+
include Aws::Structure
|
|
2955
|
+
end
|
|
2956
|
+
|
|
2957
|
+
# Details for SASL/OAUTHBEARER using client credentials grant with JWT
|
|
2958
|
+
# client assertion (RFC 7521/7523).
|
|
2959
|
+
#
|
|
2960
|
+
# @!attribute [rw] audience
|
|
2961
|
+
# The audience for the JWT client assertion.
|
|
2962
|
+
# @return [String]
|
|
2963
|
+
#
|
|
2964
|
+
# @!attribute [rw] signing_algorithm
|
|
2965
|
+
# The signing algorithm for the JWT client assertion.
|
|
2966
|
+
# @return [String]
|
|
2967
|
+
#
|
|
2968
|
+
# @!attribute [rw] token_request_secret_arn
|
|
2969
|
+
# The Amazon Resource Name (ARN) of the Secrets Manager secret
|
|
2970
|
+
# containing the signing key.
|
|
2971
|
+
# @return [String]
|
|
2972
|
+
#
|
|
2973
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterOAuthClientCredentialsAssertion AWS API Documentation
|
|
2974
|
+
#
|
|
2975
|
+
class KafkaClusterOAuthClientCredentialsAssertion < Struct.new(
|
|
2976
|
+
:audience,
|
|
2977
|
+
:signing_algorithm,
|
|
2978
|
+
:token_request_secret_arn)
|
|
2856
2979
|
SENSITIVE = []
|
|
2857
2980
|
include Aws::Structure
|
|
2858
2981
|
end
|
data/lib/aws-sdk-kafka.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -306,6 +306,25 @@ module Aws
|
|
|
306
306
|
}?,
|
|
307
307
|
mtls: {
|
|
308
308
|
secret_arn: ::String
|
|
309
|
+
}?,
|
|
310
|
+
sasl_o_auth_bearer: {
|
|
311
|
+
token_endpoint_url: ::String,
|
|
312
|
+
client_credentials: {
|
|
313
|
+
token_request_secret_arn: ::String
|
|
314
|
+
}?,
|
|
315
|
+
iam_jwt_bearer: {
|
|
316
|
+
audience: ::String,
|
|
317
|
+
signing_algorithm: ("RS256" | "ES384"),
|
|
318
|
+
token_request_secret_arn: ::String?
|
|
319
|
+
}?,
|
|
320
|
+
client_credentials_assertion: {
|
|
321
|
+
audience: ::String,
|
|
322
|
+
signing_algorithm: ("RS256" | "ES384"),
|
|
323
|
+
token_request_secret_arn: ::String?
|
|
324
|
+
}?,
|
|
325
|
+
token_endpoint_authentication_method: ("POST" | "BASIC" | "NONE"),
|
|
326
|
+
scope: ::String?,
|
|
327
|
+
token_endpoint_tls_certificate_arn: ::String?
|
|
309
328
|
}?
|
|
310
329
|
}?,
|
|
311
330
|
encryption_in_transit: {
|
data/sig/types.rbs
CHANGED
|
@@ -781,6 +781,37 @@ module Aws::Kafka
|
|
|
781
781
|
class KafkaClusterClientAuthentication
|
|
782
782
|
attr_accessor sasl_scram: Types::KafkaClusterSaslScramAuthentication
|
|
783
783
|
attr_accessor mtls: Types::KafkaClusterMTLSAuthentication
|
|
784
|
+
attr_accessor sasl_o_auth_bearer: Types::KafkaClusterSaslOAuthBearerAuthentication
|
|
785
|
+
SENSITIVE: []
|
|
786
|
+
end
|
|
787
|
+
|
|
788
|
+
class KafkaClusterSaslOAuthBearerAuthentication
|
|
789
|
+
attr_accessor token_endpoint_url: ::String
|
|
790
|
+
attr_accessor client_credentials: Types::KafkaClusterOAuthClientCredentials
|
|
791
|
+
attr_accessor iam_jwt_bearer: Types::KafkaClusterOAuthIamJwtBearer
|
|
792
|
+
attr_accessor client_credentials_assertion: Types::KafkaClusterOAuthClientCredentialsAssertion
|
|
793
|
+
attr_accessor token_endpoint_authentication_method: ("POST" | "BASIC" | "NONE")
|
|
794
|
+
attr_accessor scope: ::String
|
|
795
|
+
attr_accessor token_endpoint_tls_certificate_arn: ::String
|
|
796
|
+
SENSITIVE: []
|
|
797
|
+
end
|
|
798
|
+
|
|
799
|
+
class KafkaClusterOAuthClientCredentials
|
|
800
|
+
attr_accessor token_request_secret_arn: ::String
|
|
801
|
+
SENSITIVE: []
|
|
802
|
+
end
|
|
803
|
+
|
|
804
|
+
class KafkaClusterOAuthIamJwtBearer
|
|
805
|
+
attr_accessor audience: ::String
|
|
806
|
+
attr_accessor signing_algorithm: ("RS256" | "ES384")
|
|
807
|
+
attr_accessor token_request_secret_arn: ::String
|
|
808
|
+
SENSITIVE: []
|
|
809
|
+
end
|
|
810
|
+
|
|
811
|
+
class KafkaClusterOAuthClientCredentialsAssertion
|
|
812
|
+
attr_accessor audience: ::String
|
|
813
|
+
attr_accessor signing_algorithm: ("RS256" | "ES384")
|
|
814
|
+
attr_accessor token_request_secret_arn: ::String
|
|
784
815
|
SENSITIVE: []
|
|
785
816
|
end
|
|
786
817
|
|