UNPKG

351 BTypeScriptView Raw
1import { Source } from './source';
2/**
3 * CodePipeline Source definition for a CodeBuild Project.
4 * *Note*: this type cannot be used as a secondary source,
5 * and because of that, you're not allowed to specify an identifier for it.
6 */
7export declare class CodePipelineSource extends Source {
8 readonly type = "CODEPIPELINE";
9 constructor();
10}