aws-sdk-swift-usage

Installation
SKILL.md

AWS SDK for Swift

Async Code Structure

All SDK operations are async. Use @main entry point:

@main
struct Main {
    static func main() async throws {
        let client = try await S3Client()
        // ... async operations
    }
}

CRITICAL: Use Struct Config Types

NEVER use S3ClientConfiguration or DynamoDBClientConfiguration - these are DEPRECATED classes.

Installs
929
GitHub Stars
829
First Seen
May 6, 2026
aws-sdk-swift-usage — aws/agent-toolkit-for-aws