Let's explain AWS Proton with AWS CDK 😋
const envTemplate = new EnvironmentTemplate(...);
const svcTemplate = new ServiceTemplate({
envTemplaet: myEnvTemplate,
});
const myService = new Service({
template: svcTemplate
});
// or simply
svcTemplate.createService()