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 (source) | @aws-cdk/cloud-assembly-schema » AssetManifest |
Obtainable from
Manifest.loadAssetManifest()
Definitions for the asset manifest.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';
const assetManifest: cloud_assembly_schema.AssetManifest = {
version: 'version',
// the properties below are optional
dockerImages: {
dockerImagesKey: {
destinations: {
destinationsKey: {
imageTag: 'imageTag',
repositoryName: 'repositoryName',
// the properties below are optional
assumeRoleArn: 'assumeRoleArn',
assumeRoleExternalId: 'assumeRoleExternalId',
region: 'region',
},
},
source: {
directory: 'directory',
dockerBuildArgs: {
dockerBuildArgsKey: 'dockerBuildArgs',
},
dockerBuildTarget: 'dockerBuildTarget',
dockerFile: 'dockerFile',
executable: ['executable'],
networkMode: 'networkMode',
platform: 'platform',
},
},
},
files: {
filesKey: {
destinations: {
destinationsKey: {
bucketName: 'bucketName',
objectKey: 'objectKey',
// the properties below are optional
assumeRoleArn: 'assumeRoleArn',
assumeRoleExternalId: 'assumeRoleExternalId',
region: 'region',
},
},
source: {
executable: ['executable'],
packaging: cloud_assembly_schema.FileAssetPackaging.FILE,
path: 'path',
},
},
},
};
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 (