aws-cdk
Version:
AWS CDK CLI, the command line tool for CDK apps
9 lines (8 loc) • 460 B
TypeScript
import * as cxschema from '@aws-cdk/cloud-assembly-schema';
import { AssetManifest } from 'cdk-assets';
export declare class AssetManifestBuilder {
private readonly manifest;
addFileAsset(id: string, source: cxschema.FileSource, destination: cxschema.FileDestination): void;
addDockerImageAsset(id: string, source: cxschema.DockerImageSource, destination: cxschema.DockerImageDestination): void;
toManifest(directory: string): AssetManifest;
}