Metadata-Version: 2.1
Name: stormreply.cdk-openapi
Version: 0.0.2
Summary: @stormreply/cdk-openapi
Home-page: https://github.com/stormreply/cdk-openapi.git
Author: Henning Teek<h.teek@reply.com>
License: UNKNOWN
Project-URL: Source, https://github.com/stormreply/cdk-openapi.git
Description: # cdk-openapi
        
        An AWS CDK construct which generates API Gateway exposed Lambda functions
        from an OpenAPI specification in your stack.
        
        ## Usage
        
        ### JavaScript
        
        Install via npm:
        
        ```shell
        $ npm i @stormreply/cdk-openapi
        ```
        
        Add to your CDK stack:
        
        ```ts
        import { OpenAPI } from 'cdk-openapi'
        
        const api = new OpenAPI(this, 'SampleAPI', {
          api: 'api.yaml'
        });
        ```
        
        ### Python
        
        Install via pip:
        
        ```shell
        $ pip install cdk-openapi
        ```
        
        Add to your CDK stack:
        
        ```python
        from cdk-openapi import OpenAPI
        
        api = OpenAPI(
            self, "SampleAPI", {
              api='api.yaml'
            }
        )
        ```
        
        ## License
        
        Apache 2.0
        
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
