Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 865 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 865 Bytes

Commitizen friendly npm

View on Construct Hub

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

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