14 lines
426 B
TypeScript
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;
|
|
}
|