# @ts-cloud/aws-types

> AWS CloudFormation resource type definitions (without AWS SDK)

Latest version **0.16.0** (published 2026-09-10) · MIT license · 0 weekly downloads

## Install

```sh
npm install @ts-cloud/aws-types
pnpm add @ts-cloud/aws-types
yarn add @ts-cloud/aws-types
bun add @ts-cloud/aws-types
```

## Health

**Score 70/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; has provenance; recently updated; high maintenance score.

Warnings: low downloads; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.16.0 |
| Published | 2026-09-10 |
| First published | 2026-03-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 124.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 3 |
| Author | Chris Breuer <chris@stacksjs.com> |
| Maintainers | chrisbreuer, glenn123 |

## Links

- npm: https://www.npmjs.com/package/@ts-cloud/aws-types
- Repository: https://github.com/stacksjs/ts-cloud
- Homepage: https://github.com/stacksjs/ts-cloud#readme
- Issues: https://github.com/stacksjs/ts-cloud/issues
- npm.io page: https://npm.io/package/@ts-cloud/aws-types

## Recent versions

- 0.16.0 (latest) — 2026-09-10
- 0.15.1 — 2026-09-10
- 0.15.0 — 2026-09-10
- 0.14.0 — 2026-09-10
- 0.13.1 — 2026-09-10
- 0.13.0 — 2026-09-10
- 0.12.16 — 2026-09-09
- 0.12.13 — 2026-09-07
- 0.12.15 — 2026-09-07
- 0.12.14 — 2026-09-07
- 0.12.12 — 2026-09-02
- 0.12.11 — 2026-09-02
- 0.12.10 — 2026-08-29
- 0.12.9 — 2026-08-29
- 0.12.8 — 2026-08-27
- … 219 more at https://npm.io/package/@ts-cloud/aws-types/versions

## README

# @ts-cloud/aws-types

AWS CloudFormation resource type definitions for TypeScript, without any dependency on the AWS SDK.

## Installation

```bash
bun add @ts-cloud/aws-types
```

```bash
npm install @ts-cloud/aws-types
```

## Usage

```typescript
import type {
  EC2Instance,
  S3Bucket,
  LambdaFunction,
  Route53HostedZone,
} from '@ts-cloud/aws-types'

// Use fully typed AWS resource definitions
const instance: EC2Instance = {
  Type: 'AWS::EC2::Instance',
  Properties: {
    InstanceType: 't3.micro',
    ImageId: 'ami-0abcdef1234567890',
  },
}
```

## Features

- Comprehensive TypeScript type definitions for AWS CloudFormation resources
- Covers a wide range of AWS services (EC2, S3, Lambda, ECS, RDS, Route53, CloudWatch, SNS, SQS, and many more)
- Zero runtime dependencies -- types only
- No AWS SDK required
- Used internally by `@ts-cloud/core` and `@stacksjs/ts-cloud`

## License

MIT

---
_Source: https://npm.io/package/@ts-cloud/aws-types · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
