← 返回
开发者工具 中文

Watadot Aws S3

High-performance S3 management by Watadot Studio. Includes bucket orchestration, sync, and lifecycle management.
Watadot Studio 出品的高性能 S3 管理工具,包含存储桶编排、同步及生命周期管理。
ordiy
开发者工具 clawhub v1.0.0 1 版本 99842 Key: 无需
★ 0
Stars
📥 632
下载
💾 8
安装
1
版本
#latest

概述

AWS S3 Skills

Advanced patterns for Amazon Simple Storage Service (S3) utilization.

🚀 Core Commands

Bucket Management

# List all buckets with creation date
aws s3api list-buckets --query "Buckets[].{Name:Name,Created:CreationDate}" --output table

# Create a bucket with specific region
aws s3 mb s3://<bucket-name> --region <region>

High-Speed Synchronization

# Intelligent sync (only changed files)
aws s3 sync ./local-dir s3://<bucket-name>/path --delete --exclude "*.tmp"

# Concurrent upload tuning (performance)
aws configure set default.s3.max_concurrent_requests 20

Content Discovery & Filtering

# Find objects larger than 100MB
aws s3api list-objects-v2 --bucket <bucket-name> --query "Contents[?Size > \`104857600\`].[Key, Size]" --output json

# Total size of a prefix
aws s3 ls s3://<bucket-name>/prefix --recursive --human-readable --summarize | tail -n 2

🧠 Best Practices

  1. Least Privilege: Always use IAM policies that restrict access to specific buckets/prefixes.
  2. Versioning: Enable versioning for critical production data to prevent accidental deletions.
  3. Encrypted at Rest: Enforce SSE-S3 or SSE-KMS for all sensitive objects.
  4. Lifecycle Policies: Automate transition to S3 Glacier for aging assets to optimize cost.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 02:59 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

security-compliance

Watadot Aws Iam

ordiy
IAM安全模式(Watadot Studio)。管理用户、角色及策略验证。
★ 0 📥 642
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 672 📥 324,503
developer-tools

Gog

steipete
Google Workspace 命令行工具,支持 Gmail、日历、云端硬盘、通讯录、表格和文档。
★ 921 📥 185,920