Class: Aws::Kafka::Types::EncryptionInfo

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#encryption_at_restTypes::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_transitTypes::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