找不到对代码构建源自定义命令的引用

Cant find reference to codebuild source custom command

我正在为 codepipeline 构建一个 cloudformation 脚本,但卡在了 codebuild 阶段。

这就是我的 CodeBuild 脚本的样子

CodeBuildProject:
    Type: AWS::CodeBuild::Project
    Properties:
      Name: Dev-Build
      ServiceRole: !Ref ServiceRoleForCodepipeline
      Artifacts:
        Type: CODEPIPELINE
      Environment:
        Type: LINUX_CONTAINER
        ComputeType: BUILD_GENERAL1_SMALL
        Image: aws/codebuild/standard:3.0
        EnvironmentVariables:
          - Name: stage
            Type: PLAINTEXT
            Value: dev
      Source:
        Type: CODEPIPELINE
        BuildSpec: buildspec.yml

这很好用。我的疑问是如何设置 Source 项目以接受自定义命令而不是此处的 BuildSpec 文件

Source:
  Type: CODEPIPELINE
  BuildSpec: buildspec.yml

在此处的控制台中,我们可以指定自定义命令。

我已经阅读了文档 here 源代码参考没有提到任何关于添加自定义命令的内容。任何帮助表示赞赏。坚持这个一段时间了。

BuildSpec 用于:

if this value is provided, it can be either a single string containing the entire build specification