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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kafka/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.



1870
1871
1872
1873
1874
1875
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1870

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.



1870
1871
1872
1873
1874
1875
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1870

class EncryptionInfo < Struct.new(
  :encryption_at_rest,
  :encryption_in_transit)
  SENSITIVE = []
  include Aws::Structure
end