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
1
Repository
delorenj/skills
GitHub Stars
15
First Seen
Sep 4, 2026
aws-sdk-swift-usage — delorenj/skills