Files
agent-claw/cdk/node_modules/aws-cdk-lib/pipelines/lib/codepipeline/stack-outputs-map.d.ts
2026-05-06 18:55:16 -05:00

14 lines
426 B
TypeScript

import type { StackOutputReference } from '../blueprint';
import type { PipelineBase } from '../main';
/**
* Translate stack outputs to CodePipeline variable references
*/
export declare class StackOutputsMap {
private queries;
constructor(pipeline: PipelineBase);
/**
* Return the matching variable reference string for a StackOutputReference
*/
toCodePipeline(x: StackOutputReference): string;
}