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.KeyPair

Key pair to use for client side encryption.

Example

>>> from atoti_storage_aws import KeyPair
>>> client_side_encryption = KeyPair(
...     "public_key",
...     "private_key",
...     region="eu-west-3",
... )

private_key : str

The private key.

public_key : str

The public key.

region : str

The AWS region to interact with.