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

# atoti_storage_aws.KeyPair

### *final class* atoti\_storage\_aws.KeyPair

Key pair to use for [client side encryption](https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingClientSideEncryption.html).

### Example

```pycon theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
>>> from atoti_storage_aws import KeyPair
>>> client_side_encryption = KeyPair(
...     "public_key",
...     "private_key",
...     region="eu-west-3",
... )
```

#### private\_key *: [str](https://docs.python.org/3/library/stdtypes.html#str)*

The private key.

#### public\_key *: [str](https://docs.python.org/3/library/stdtypes.html#str)*

The public key.

#### region *: [str](https://docs.python.org/3/library/stdtypes.html#str)*

The AWS region to interact with.
