Skip to main content

Convenient wrapper around CfnApi.

Project description

B.CfnApiV2

Pipeline

An API Gateway resource that adds convenient functionality over traditional CfnApi resource. It lets you easily enable authorization, stages, and CDNs.

Description

Essentially this resource is a wrapper resource for aws_apigatewayv2 module's CfnApi. Meaning, that you can easily swap CfnApi and this Api resource with no major impact. But why would you want to switch a traditional CfnApi to this one. Mainly these convenient features:

  • Easy to add CloudFront distribution on top of the API (enabling CDN).
  • Easy to enable Stage and attached to the api.
  • Easy to add authorization with UserPoolAuthorizer & ApiKeyAuthorizer.

Remarks

Biomapas aims to modernise life-science industry by sharing its IT knowledge with other companies and the community. This is an open source library intended to be used by anyone. Improvements and pull requests are welcome.

Related technology

  • Python3
  • AWS CDK
  • AWS Lambda
  • AWS API Gateway
  • AWS CloudFront
  • AWS User Pool authorization

Assumptions

This project assumes you know what Lambda functions are and how code is being shared between them (Lambda layers).

  • Excellent knowledge in IaaC (Infrastructure as a Code) principles.
  • Excellent knowledge in Lambda functions and API Gateway service.
  • Good experience in AWS CDK and AWS CloudFormation.

Useful sources

Install

Before installing this library, ensure you have these tools setup:

  • Python / Pip
  • AWS CDK

To install this project from source run:

pip install .

Or you can install it from a PyPi repository:

pip install b-cfn-api-v2

Usage & Examples

The traditional way of creating an API looks something like this:

from aws_cdk.aws_apigatewayv2 import CfnApi

CfnApi(
    scope=Stack(),
    id='Api',
    name='Api',
    description='Sample description.',
    protocol_type='HTTP',
    cors_configuration=CfnApi.CorsProperty(
        allow_methods=['GET', 'PUT', 'POST', 'OPTIONS', 'DELETE'],
        allow_origins=['*'],
        allow_headers=[
            'Content-Type',
            'Authorization'
        ],
        max_age=300
    )
)

To create our resource Api is exactly the same:
(It works since Api is a pure wrapper of CfnApi resource.)

from b_cfn_api_v2.api import Api

Api(
    scope=Stack(),
    id='Api',
    name='Api',
    description='Sample description.',
    protocol_type='HTTP',
    cors_configuration=Api.CorsProperty(
        allow_methods=['GET', 'PUT', 'POST', 'OPTIONS', 'DELETE'],
        allow_origins=['*'],
        allow_headers=[
            'Content-Type',
            'Authorization'
        ],
        max_age=300
    )
)

Three main advantages of this Api resource:

  • Easy to enable default stage.
from b_cfn_api_v2.api import Api

api = Api(...)
api.enable_default_stage('dev')
  • Easy to enable authorization.
from b_cfn_api_v2.api import Api
from b_cfn_custom_userpool_authorizer.config.user_pool_config import UserPoolConfig

api = Api(...)

# Your authorized endpoint will require `Authorization`
# supplied in headers.
# Read more:
# https://github.com/Biomapas/B.CfnCustomUserPoolAuthorizer
api.enable_user_pool_authorizer(UserPoolConfig(
    user_pool_id='id',
    user_pool_region='region',
    user_pool_client_id='client'
))

# Your authorized endpoint will require `ApiKey` and `ApiSecret`
# supplied in headers.
# Read more:
# https://github.com/Biomapas/B.CfnCustomApiKeyAuthorizer
api.enable_api_key_authorizer()
  • Easy to enable CDN.
from b_cfn_api_v2.api import Api
from aws_cdk.aws_cloudfront import CachePolicy

api = Api(...)
api.enable_cdn(default_behavior_cache_policy=CachePolicy.CACHING_OPTIMIZED)

Testing

This package has integration tests based on pytest. To run tests simply run:

pytest b_cfn_api_v2_test/integration/tests

Contribution

Found a bug? Want to add or suggest a new feature? Contributions of any kind are gladly welcome. You may contact us directly, create a pull-request or an issue in github platform. Lets modernize the world together.

Release history

3.1.0

  • Enable easy stage logging.

3.0.0

  • Upgrade breaking dependencies.

2.0.1

  • Make dependencies range more loose with maximum version not reaching 2.0.0.

2.0.0

  • Use the newest 2.0.0 custom api keys authorizer which now hashes api secrets and is no longer compatible with previous versions.

1.1.1

  • Update readme.

1.1.0

1.0.0

  • Fully documented, tested, and working version release.

0.0.1

  • Initial build.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

b_cfn_api_v2-3.1.0.tar.gz (16.6 kB view details)

Uploaded Source

Built Distribution

b_cfn_api_v2-3.1.0-py3-none-any.whl (21.8 kB view details)

Uploaded Python 3

File details

Details for the file b_cfn_api_v2-3.1.0.tar.gz.

File metadata

  • Download URL: b_cfn_api_v2-3.1.0.tar.gz
  • Upload date:
  • Size: 16.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.13

File hashes

Hashes for b_cfn_api_v2-3.1.0.tar.gz
Algorithm Hash digest
SHA256 d935908209f654158a352019945f6773e4cfa80cc5745112218f0671a96f3d17
MD5 0b19ed27505e60061045f7dfa0e2c9a5
BLAKE2b-256 fbef4b804a7e77236c8159010ae778bb901e20585dd4f555ec42452244831471

See more details on using hashes here.

File details

Details for the file b_cfn_api_v2-3.1.0-py3-none-any.whl.

File metadata

  • Download URL: b_cfn_api_v2-3.1.0-py3-none-any.whl
  • Upload date:
  • Size: 21.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.13

File hashes

Hashes for b_cfn_api_v2-3.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 06c8afa6b782f4a35ea9056c7fa7a427c3bdddc25270bfcf18a7901d64b018b1
MD5 c7144f16106cd31ee22c85ae0ebc70f6
BLAKE2b-256 c998bdc4cd57e9d4d7b00f166a39c7518b1d8d1a5c9d40e91628ba68728b6e22

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page