infra/src/stages/deploy_stage_codebuild.py [112:122]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            build_image = self._cfn_build_image_parameter.value_as_string
            buildspec_file = self._cfn_buildspec_file_parameter.value_as_string

            self._code_build = aws_codebuild.PipelineProject(
                scope,
                "{}CodeBuild".format(stage),
                environment=aws_codebuild.BuildEnvironment(
                    build_image=aws_codebuild.LinuxBuildImage.from_code_build_image_id(build_image),
                    privileged=True),
                build_spec=aws_codebuild.BuildSpec.from_source_filename(buildspec_file)
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



infra/src/stages/train_stage_codebuild_long_polling.py [167:177]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        build_image = self._cfn_build_image_parameter.value_as_string
        buildspec_file = self._cfn_buildspec_file_parameter.value_as_string

        self._code_build = aws_codebuild.PipelineProject(
            scope,
            "{}CodeBuild".format(stage),
            environment=aws_codebuild.BuildEnvironment(
                build_image=aws_codebuild.LinuxBuildImage.from_code_build_image_id(build_image),
                privileged=True),
            build_spec=aws_codebuild.BuildSpec.from_source_filename(buildspec_file)
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



