aws-cdk
Version:
CDK Toolkit, the command line tool for CDK apps
11 lines (10 loc) • 600 B
TypeScript
import * as cxapi from '@aws-cdk/cx-api';
import { AssetManifestBuilder } from './asset-manifest-builder';
import { EnvironmentResources } from '../environment-resources';
/**
* Take the metadata assets from the given stack and add them to the given asset manifest
*
* Returns the CloudFormation parameters that need to be sent to the template to
* pass Asset coordinates.
*/
export declare function addMetadataAssetsToManifest(stack: cxapi.CloudFormationStackArtifact, assetManifest: AssetManifestBuilder, envResources: EnvironmentResources, reuse?: string[]): Promise<Record<string, string>>;