interface AssetManifest
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CloudAssembly.Schema.AssetManifest |
Java | software.amazon.awscdk.cloudassembly.schema.AssetManifest |
Python | aws_cdk.cloud_assembly_schema.AssetManifest |
TypeScript | @aws-cdk/cloud-assembly-schema » AssetManifest |
Obtainable from
Manifest.loadAssetManifest()
Definitions for the asset manifest.
Properties
| Name | Type | Description |
|---|---|---|
| version | string | Version of the manifest. |
| docker | { [string]: Docker } | The Docker image assets in this manifest. |
| files? | { [string]: File } | The file assets in this manifest. |
version
Type:
string
Version of the manifest.
dockerImages?
Type:
{ [string]: Docker }
(optional, default: No Docker images)
The Docker image assets in this manifest.
files?
Type:
{ [string]: File }
(optional, default: No files)
The file assets in this manifest.

.NET
Java
Python
TypeScript