Class: Aws::KafkaConnect::Types::KafkaClusterEncryptionInTransit
- Inherits:
-
Struct
- Object
- Struct
- Aws::KafkaConnect::Types::KafkaClusterEncryptionInTransit
- Defined in:
- gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb
Overview
Note:
When making an API call, you may pass KafkaClusterEncryptionInTransit data as a hash:
{
encryption_type: "PLAINTEXT", # required, accepts PLAINTEXT, TLS
}
Details of encryption in transit to the Apache Kafka cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#encryption_type ⇒ String
The type of encryption in transit to the Apache Kafka cluster.
Instance Attribute Details
#encryption_type ⇒ String
The type of encryption in transit to the Apache Kafka cluster.
1449 1450 1451 1452 1453 |
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 1449 class KafkaClusterEncryptionInTransit < Struct.new( :encryption_type) SENSITIVE = [] include Aws::Structure end |