Datasets:
File size: 187 Bytes
d16079c | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/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()
|