Metadata-Version: 2.1
Name: demo-awscdk-construct
Version: 0.0.3
Summary: demo-awscdk-construct
Home-page: https://github.com/hustshawn/my-ecs-quickstart-construct.git
Author: hustshawn<hustshawn@gmail.com>
License: Apache-2.0
Project-URL: Source, https://github.com/hustshawn/my-ecs-quickstart-construct.git
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Typing :: Typed
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved
Requires-Python: ~=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aws-cdk-lib <3.0.0,>=2.114.1
Requires-Dist: constructs <11.0.0,>=10.0.5
Requires-Dist: jsii <2.0.0,>=1.93.0
Requires-Dist: publication >=0.0.3
Requires-Dist: typeguard ~=2.13.3

[![npm version](https://badge.fury.io/js/demo-awscdk-construct.svg)](https://badge.fury.io/js/demo-awscdk-construct)
[![PyPI version](https://badge.fury.io/py/demo-awscdk-construct.svg)](https://badge.fury.io/py/demo-awscdk-construct)
[![release](https://github.com/hustshawn/my-ecs-quickstart-construct/actions/workflows/release.yml/badge.svg)](https://github.com/hustshawn/my-ecs-quickstart-construct/actions/workflows/release.yml)

# ECS Construct Quickstart

This is a sample project to use projen to create CDK Construct and publish to registries like `npm` and `pypi`.

## Usage

```python
    const app = new cdk.App();
    const stack = new cdk.Stack(app, "MyStack");
    new MyEcs(stack, "MyEcs");
```
