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,
},
iam: {
enabled: false,
},
},
tls: {
certificate_authority_arn_list: ["__string"],
enabled: false,
},
unauthenticated: {
enabled: false,
},
}
Includes all client authentication information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#sasl ⇒ Types::Sasl
-
#tls ⇒ Types::Tls
Details for ClientAuthentication using TLS.
-
#unauthenticated ⇒ Types::Unauthenticated
Contains information about unauthenticated traffic to the cluster.
Instance Attribute Details
#sasl ⇒ Types::Sasl
334 335 336 337 338 339 340 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 334 class ClientAuthentication < Struct.new( :sasl, :tls, :unauthenticated) SENSITIVE = [] include Aws::Structure end |
#tls ⇒ Types::Tls
Details for ClientAuthentication using TLS.
334 335 336 337 338 339 340 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 334 class ClientAuthentication < Struct.new( :sasl, :tls, :unauthenticated) SENSITIVE = [] include Aws::Structure end |
#unauthenticated ⇒ Types::Unauthenticated
Contains information about unauthenticated traffic to the cluster.
334 335 336 337 338 339 340 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 334 class ClientAuthentication < Struct.new( :sasl, :tls, :unauthenticated) SENSITIVE = [] include Aws::Structure end |