Overview

CloudNexus Buckets provide enterprise-grade object storage built for high availability, low latency, and massive scale. Fully compatible with the Amazon S3 API, you can migrate workloads with zero code changes.

Each bucket is a logical container for objects (files). Buckets are globally unique, support versioning, lifecycle policies, and server-side encryption. Data is automatically replicated across availability zones for fault tolerance.

💡 Tip

Bucket names must be globally unique and follow DNS naming conventions. They can contain lowercase letters, numbers, hyphens, and periods.

Key Features

  • S3-Compatible API: Drop-in replacement for existing S3 workflows, SDKs, and third-party tools.
  • 11 9's Durability: Data is replicated across 3+ geographically separated facilities with automatic healing.
  • Lifecycle Management: Automatically transition objects to colder storage tiers or expire them based on time-based rules.
  • Versioning & MFA Delete: Protect against accidental deletion and maintain historical versions of objects.
  • Server-Side Encryption: AES-256 and SSE-KMS support with automatic key rotation and audit logging.

Quick Start

Create a bucket and upload a file using the CloudNexus CLI or any S3-compatible SDK. Below is a CLI example:

Terminal
# Create a new bucket
cnx storage create-bucket my-app-assets

✓ Bucket created: my-app-assets
  Region: us-east-1
  Endpoint: https://my-app-assets.storage.cloudnexus.io

# Upload a file
cnx storage cp ./logo.png s3://my-app-assets/images/

✓ Uploaded: logo.png (24.3 KB)
  ETag: a1b2c3d4e5f6g7h8i9j0

Environment Configuration

Set your credentials as environment variables or in your SDK configuration:

Bash
export CNX_ACCESS_KEY="your-access-key"
export CNX_SECRET_KEY="your-secret-key"
export CNX_REGION="us-east-1"
export CNX_ENDPOINT="https://storage.cloudnexus.io"

Limits & Pricing

CloudNexus Buckets scale automatically. Standard limits ensure platform stability while supporting enterprise workloads.

Metric Default Limit Notes
Buckets per account 100 Request increase via support
Max object size 5 TB Multipart upload recommended for >100 MB
Requests per second 5,000 PUT/10,000 GET Scalable on-demand
Storage tiers Standard, Cool, Archive Auto-transition via lifecycle rules
💰 Pricing

Standard storage: $0.022/GB/month. Cool: $0.012/GB. Archive: $0.004/GB. Egress: $0.08/GB. Compute operations billed per 10,000 requests.

Frequently Asked Questions

Can I use CloudNexus Buckets with existing AWS S3 code?
Yes. CloudNexus is fully S3 API-compatible. You only need to update the endpoint URL and credentials. Most SDKs, Terraform providers, and CLI tools work out of the box.
How is data replicated for durability?
Objects are automatically replicated across three separate availability zones within a region. Each zone uses redundant storage hardware with continuous checksum verification and automatic repair.
Can I set up automatic backups from my database to a bucket?
Absolutely. CloudNexus provides pre-built integrations for PostgreSQL, MySQL, MongoDB, and Redis. You can also use our CLI or S3-compatible SDKs to script custom backup workflows.
Is there a free tier available?
New accounts receive $200 in credits, which includes 5 GB of standard storage, 1 TB of egress, and 10,000 requests per month for the first 90 days.
"}