File size: 214 Bytes
d16079c
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python3
import aws_cdk as cdk

from rds_aurora_postgres.rds_aurora_postgres_stack import RdsAuroraPostgresStack


app = cdk.App()
RdsAuroraPostgresStack(app, "RdsAuroraPostgresStack",
)

app.synth()