models.encryption_configuration module

class models.encryption_configuration.EncryptionConfiguration(enable_encryption=None, enable_fips_mode=None, rotation_period=None)[source]

Bases: object

Implementation of the ‘EncryptionConfiguration’ model.

Specifies the parameters the user wants to use when configuring encryption for the new Cluster.

Attributes:
enable_encryption (bool): Specifies whether or not to enable

encryption. If encryption is enabled, all data on the Cluster will be encrypted. This can only be enabled at Cluster creation time and cannot be disabled later.

enable_fips_mode (bool): Specifies whether or not to enable FIPS mode.

EnableEncryption must be set to true in order to enable FIPS.

rotation_period (int): Specifies the rotation period for encryption

keys in days.

classmethod from_dictionary(dictionary)[source]

Creates an instance of this model from a dictionary

Args:

dictionary (dictionary): A dictionary representation of the object as obtained from the deserialization of the server’s response. The keys MUST match property names in the API description.

Returns:

object: An instance of this structure class.