Class: Aws::Kafka::Types::ClientAuthentication
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::ClientAuthentication
- Defined in:
- gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb
Overview
Note:
When making an API call, you may pass ClientAuthentication data as a hash:
{
sasl: {
scram: {
enabled: false,
},
},
tls: {
certificate_authority_arn_list: ["__string"],
},
}
Includes all client authentication information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#sasl ⇒ Types::Sasl
-
#tls ⇒ Types::Tls
Details for ClientAuthentication using TLS.
Instance Attribute Details
#sasl ⇒ Types::Sasl
299 300 301 302 303 304 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 299 class ClientAuthentication < Struct.new( :sasl, :tls) SENSITIVE = [] include Aws::Structure end |
#tls ⇒ Types::Tls
Details for ClientAuthentication using TLS.
299 300 301 302 303 304 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 299 class ClientAuthentication < Struct.new( :sasl, :tls) SENSITIVE = [] include Aws::Structure end |