Files
agent-claw/cdk/node_modules/aws-cdk-lib/aws-codebuild/lib/codepipeline-source.d.ts
2026-05-06 18:55:16 -05:00

11 lines
351 B
TypeScript

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