Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt

Use this file to discover all available pages before exploring further.

final class atoti_storage_aws.KmsConfig

KMS config to use for client side encryption. The AWS KMS CMK must have been created in the same AWS region as the destination bucket (Cf. AWS documentation).

Example

>>> from atoti_storage_aws import KmsConfig
>>> client_side_encryption = KmsConfig(
...     region="eu-west-3",
...     key_id="key_id",
... )

key_id : str

The ID to identify the key in KMS.

region : str

The AWS region to interact with.