Metadata-Version: 2.1
Name: aws-codestarconnection
Version: 0.0.12
Summary: AWS CDK L2 construct for aws code star connection
Home-page: https://github.com/JumpToTheCloud/aws-codestarconnection
Author: Antonio Márquez Pérez<antonio.marquez@jumptothecloud.tech>
License: Apache-2.0
Project-URL: Source, https://github.com/JumpToTheCloud/aws-codestarconnection
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
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.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aws-cdk-lib <3.0.0,>=2.103.0
Requires-Dist: constructs <11.0.0,>=10.3.0
Requires-Dist: jsii <2.0.0,>=1.91.0
Requires-Dist: publication >=0.0.3
Requires-Dist: typeguard ~=2.13.3

[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
![npm](https://img.shields.io/npm/v/%40jttc%2Faws-codestarconnection)

[![View on Construct Hub](https://constructs.dev/badge?package=%40jttc%2Faws-codestarconnection)](https://constructs.dev/packages/@jttc/aws-codestarconnection)

# AWS CodeStar Connection Construct Library

This package contains constructs for working with Amazon CodeStar Connection.

## CodeStar Connection

Define a Codestar Connection by creating a new instance of CodeStarConnection. You can create a connection for different providers

```python
const codestartConnection = new CodeStarConnection(
  this,
  'CodeStarConnection',
    {
      connectionName: 'github-connection',
      providerType: CodeStarConnectionProviderType.GITHUB,
    }
  );
```
