UNPKG

@aws-cdk/cloud-assembly-schema

Version:

Schema for the protocol between CDK framework and CDK CLI

28 lines (27 loc) 603 B
import type { DockerImageAsset } from './docker-image-asset'; import type { 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; }; }