Skip to content

Instantly share code, notes, and snippets.

View marekq's full-sized avatar
🧙

Marek Kuczynski marekq

🧙
View GitHub Profile
@marekq
marekq / gist:9667004f16cc60a5532dd6ed5661db62
Created September 14, 2020 13:10
codebuild_cdk_python
from aws_cdk import (
core,
aws_codebuild
)
class CodebStack(core.Stack):
def __init__(self, scope: core.Construct, id: str, **kwargs) -> None:
super().__init__(scope, id, **kwargs)