Untitled
unknown
plain_text
a year ago
466 B
4
Indexable
from aws_cdk import Stack
from constructs import Construct
from principal_environment import PrincipalEnvironment
class Hello(Stack):
def __init__(
self,
scope: Construct,
stack_id: str,
app_name: str,
env: PrincipalEnvironment,
**kwargs: dict
):
Stack.__init__(self, scope, stack_id, env=env.to_cdk_env, **kwargs)
self.app_name = app_name
self.env = env
Editor is loading...
Leave a Comment