# Cloud Storage

> Source: https://docs.synthesized.io/tdk/latest/user_guide/070_integrations/cloud_storage/
> For the complete documentation index, see [llms.txt](https://docs.synthesized.io/llms.txt).

Store platform configurations, scripts, and data files in AWS S3, Google Cloud Storage, or Azure Blob Storage.

## What You’ll Find Here

- **AWS S3** - Store files in Amazon S3
- **Google Cloud Storage** - Use GCS for file storage
- **Azure Blob Storage** - Microsoft Azure storage
- **CSV Files** - Working with CSV files
- **Configuration** - Set up cloud storage access

## All Topics

- [AWS S3](https://docs.synthesized.io/tdk/latest/user_guide/070_integrations/cloud_storage/aws_s3)
- [CSV Files](https://docs.synthesized.io/tdk/latest/user_guide/070_integrations/cloud_storage/csv)

## Use Cases

### Store Custom Scripts

Store JavaScript scripts for Scripting Transformer in S3:

```yaml
- columns:
    - "custom_field"
  type: Scripting
  params:
    mode: MASKING
    code_location: "s3://my-bucket/scripts/custom_transform.js"
```

See: [Scripting Transformer](https://docs.synthesized.io/tdk/latest/user_guide/020_guides/advanced_workflows/scripting_transformer)

### CSV Generation

Generate CSV files to cloud storage:

```yaml
output:
  type: csv
  location: "s3://my-bucket/output/data.csv"
```

See: [CSV Generation](https://docs.synthesized.io/tdk/latest/user_guide/020_guides/generating_data/csv_generation)

## Where to Start

- [AWS S3 Setup](https://docs.synthesized.io/tdk/latest/user_guide/070_integrations/cloud_storage/aws_s3)
- [CSV File Integration](https://docs.synthesized.io/tdk/latest/user_guide/070_integrations/cloud_storage/csv)

## Related Topics

- [Cloud Integrations](https://docs.synthesized.io/tdk/latest/user_guide/070_integrations/cloud/)
