Class: Aws::Kafka::Types::ClientAuthentication

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kafka/types.rb

Overview

Includes all client authentication information.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#saslTypes::Sasl

Returns:



450
451
452
453
454
455
456
# File 'lib/aws-sdk-kafka/types.rb', line 450

class ClientAuthentication < Struct.new(
  :sasl,
  :tls,
  :unauthenticated)
  SENSITIVE = []
  include Aws::Structure
end

#tlsTypes::Tls

Details for ClientAuthentication using TLS.

Returns:



450
451
452
453
454
455
456
# File 'lib/aws-sdk-kafka/types.rb', line 450

class ClientAuthentication < Struct.new(
  :sasl,
  :tls,
  :unauthenticated)
  SENSITIVE = []
  include Aws::Structure
end

#unauthenticatedTypes::Unauthenticated

Contains information about unauthenticated traffic to the cluster.



450
451
452
453
454
455
456
# File 'lib/aws-sdk-kafka/types.rb', line 450

class ClientAuthentication < Struct.new(
  :sasl,
  :tls,
  :unauthenticated)
  SENSITIVE = []
  include Aws::Structure
end