> For the complete documentation index, see [llms.txt](https://docs.flashback.tech/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.flashback.tech/support-reference/supported-sdks/cloud-storage/aws-s3.md).

# AWS S3

We have tested extensively with the following SDK's

* Node.js

```
npm install @aws-sdk/client-s3 @aws-sdk/s3-request-presigner
```

* Python

```
pip install boto3>=1.34.0
```

* Rust AWS S3 SDK

```
# Cargo.toml S3 sdk
aws-sdk-s3 = { version = "1.72.0", features = ["behavior-version-latest"] }
```

It is expected that all existing client SDKs available for all languages, are compatible with Flashgate API, for the supported [API operations](https://github.com/flashbacknetwork/flashback-usermanual/blob/main/support-reference/storage-api-operations/aws-s3-operations/README.md).

This is thanks to S3 authentication mechanism based on HMAC signatures.

Given the right credentials, any S3 client SDK can generate the correct request or pre-signed URL signature, and the signature can be validated by the Flashgate Endpoint against the API key, without any external intervention or the need of an authentication endpoint.

The only requirement to use S3 client SDKs on Flashgate nodes is indicating the [endpoint URL](/flashgate-platform/cloud-and-ai-gateway/bridge-nodes.md) you want to use, and use one of the valid repo [generated API keys](/flashgate-platform/cloud-and-ai-gateway/repositories.md).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.flashback.tech/support-reference/supported-sdks/cloud-storage/aws-s3.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
