1 2 3 4 5 6 7 8 9 10 11 12 13
|
#!/usr/bin/env python3
# For consistency with TypeScript code, `cdk` is the preferred import name for
# the CDK's core module. The following line also imports it as `core` for use
# with examples from the CDK Developer's Guide, which are in the process of
# being updated to use `cdk`. You may delete this import if you don't need it.
from aws_cdk import core
from validator_cdk.validator_cdk_stack import ValidatorCdkStack
app = core.App()
ValidatorCdkStack(app, "ValidatorCdkStack")
app.synth()
|