infra/src/stages/deploy_stage_codebuild.py [83:90]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        stack_scope = Stack.of(scope)
        # service role
        service_role_parameter = CfnParameter(stack_scope, f"{env}{stage}ServiceRole", type="String",
                                              description="The role arn to use for the by the service",
                                              default="")
        service_role = service_role_parameter.value_as_string

        role_parameter = CfnParameter(stack_scope, f"{env}{stage}ToolsCodeBuildRole", type="String",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



infra/src/stages/train_stage_codebuild_long_polling.py [108:117]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        stack_scope = Stack.of(scope)

        # service role
        service_role_parameter = CfnParameter(stack_scope, f"{env}{stage}ServiceRole", type="String",
                                              description="The role arn to use for the by the service",
                                              default="")
        service_role = service_role_parameter.value_as_string

        # Code build role
        role_parameter = CfnParameter(stack_scope, f"{env}{stage}ToolsCodeBuildRole", type="String",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



