# For consistency with other languages, `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 Stack from api_personalize.api_personalize import ApiPersonalize from constructs import Construct class RecomendacionesRestApiStack(Stack): def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None: super().__init__(scope, construct_id, **kwargs) self.api_personaliz = ApiPersonalize(self, "apiconstruct") # The code that defines your stack goes here