AnimeshShaw's picture
Add human_reference_dataset/iac-model-evaluation/cdk/
d16079c
Raw
History Blame Contribute Delete
187 Bytes
#!/usr/bin/env python3
import aws_cdk as cdk
from rds_postgres.rds_postgres_stack import RdsPostgresStack
app = cdk.App()
RdsPostgresStack(app, "RdsPostgresStack",
)
app.synth()