aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
28 lines (27 loc) • 593 B
TypeScript
import { DockerImageAsset } from './docker-image-asset';
import { FileAsset } from './file-asset';
/**
* Definitions for the asset manifest
*/
export interface AssetManifest {
/**
* Version of the manifest
*/
readonly version: string;
/**
* The file assets in this manifest
*
* @default - No files
*/
readonly files?: {
[id: string]: FileAsset;
};
/**
* The Docker image assets in this manifest
*
* @default - No Docker images
*/
readonly dockerImages?: {
[id: string]: DockerImageAsset;
};
}