/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details of encryption in transit to the Apache Kafka cluster.See
* Also:
AWS
* API Reference
The type of encryption in transit to the Apache Kafka cluster.
*/ inline const KafkaClusterEncryptionInTransitType& GetEncryptionType() const{ return m_encryptionType; } /** *The type of encryption in transit to the Apache Kafka cluster.
*/ inline bool EncryptionTypeHasBeenSet() const { return m_encryptionTypeHasBeenSet; } /** *The type of encryption in transit to the Apache Kafka cluster.
*/ inline void SetEncryptionType(const KafkaClusterEncryptionInTransitType& value) { m_encryptionTypeHasBeenSet = true; m_encryptionType = value; } /** *The type of encryption in transit to the Apache Kafka cluster.
*/ inline void SetEncryptionType(KafkaClusterEncryptionInTransitType&& value) { m_encryptionTypeHasBeenSet = true; m_encryptionType = std::move(value); } /** *The type of encryption in transit to the Apache Kafka cluster.
*/ inline KafkaClusterEncryptionInTransit& WithEncryptionType(const KafkaClusterEncryptionInTransitType& value) { SetEncryptionType(value); return *this;} /** *The type of encryption in transit to the Apache Kafka cluster.
*/ inline KafkaClusterEncryptionInTransit& WithEncryptionType(KafkaClusterEncryptionInTransitType&& value) { SetEncryptionType(std::move(value)); return *this;} private: KafkaClusterEncryptionInTransitType m_encryptionType; bool m_encryptionTypeHasBeenSet = false; }; } // namespace Model } // namespace KafkaConnect } // namespace Aws