Class: Aws::Kafka::Types::EncryptionInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::EncryptionInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafka/types.rb
Overview
Includes encryption-related information, such as the AWS KMS key used for encrypting data at rest and whether you want MSK to encrypt your data in transit.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#encryption_at_rest ⇒ Types::EncryptionAtRest
The data-volume encryption details.
-
#encryption_in_transit ⇒ Types::EncryptionInTransit
The details for encryption in transit.
Instance Attribute Details
#encryption_at_rest ⇒ Types::EncryptionAtRest
The data-volume encryption details.
1889 1890 1891 1892 1893 1894 |
# File 'lib/aws-sdk-kafka/types.rb', line 1889 class EncryptionInfo < Struct.new( :encryption_at_rest, :encryption_in_transit) SENSITIVE = [] include Aws::Structure end |
#encryption_in_transit ⇒ Types::EncryptionInTransit
The details for encryption in transit.
1889 1890 1891 1892 1893 1894 |
# File 'lib/aws-sdk-kafka/types.rb', line 1889 class EncryptionInfo < Struct.new( :encryption_at_rest, :encryption_in_transit) SENSITIVE = [] include Aws::Structure end |