I am writing a codepipeline with AWS CDK and there is one action I can't figure out how to implement.
AWS CDK
When using cloudformation, I can have below actions in codepipeline:
codepipeline
AppPipeline: Type: 'AWS::CodePipeline::Pipeline' Properties: Stages: ... - Name: Actions: - Name: Configuration: ... TemplatePath: !Sub "SourceOutput::${TemplateFile}"
I can put a cloudformation template file and referent it in TemplatePath. Codepipeline will create this action from the template file. I wonder how I can achieve this in CDK?
TemplatePath
CDK
2.1m questions
2.1m answers
60 comments
57.0k users