class Manifest
| Language | Type name |
|---|---|
.NET | Amazon.CDK.cloud_assembly_schema.Manifest |
Go | github.com/aws/aws-cdk-go/awscdk/v2/cloudassemblyschema#Manifest |
Java | software.amazon.awscdk.cloud_assembly_schema.Manifest |
Python | aws_cdk.cloud_assembly_schema.Manifest |
TypeScript (source) | aws-cdk-lib » cloud_assembly_schema » Manifest |
Protocol utility class.
Methods
| Name | Description |
|---|---|
| static cli | Return the CLI version that supports this Cloud Assembly Schema version. |
| static load | Load and validates the cloud assembly manifest from file. |
| static load | Load and validates the asset manifest from file. |
| static load | Load and validates the integ manifest from file. |
| static save | Validates and saves the cloud assembly manifest to file. |
| static save | Validates and saves the asset manifest to file. |
| static save | Validates and saves the integ manifest to file. |
| static version() | Fetch the current schema version number. |
static cliVersion()
public static cliVersion(): string
Returns
string
Return the CLI version that supports this Cloud Assembly Schema version.
static loadAssemblyManifest(filePath, options?)
public static loadAssemblyManifest(filePath: string, options?: LoadManifestOptions): AssemblyManifest
Parameters
- filePath
string— - path to the manifest file. - options
LoadManifest Options
Returns
Load and validates the cloud assembly manifest from file.
static loadAssetManifest(filePath)
public static loadAssetManifest(filePath: string): AssetManifest
Parameters
- filePath
string— - path to the manifest file.
Returns
Load and validates the asset manifest from file.
static loadIntegManifest(filePath)
public static loadIntegManifest(filePath: string): IntegManifest
Parameters
- filePath
string— - path to the manifest file.
Returns
Load and validates the integ manifest from file.
static saveAssemblyManifest(manifest, filePath)
public static saveAssemblyManifest(manifest: AssemblyManifest, filePath: string): void
Parameters
- manifest
Assembly— - manifest.Manifest - filePath
string— - output file path.
Validates and saves the cloud assembly manifest to file.
static saveAssetManifest(manifest, filePath)
public static saveAssetManifest(manifest: AssetManifest, filePath: string): void
Parameters
- manifest
Asset— - manifest.Manifest - filePath
string— - output file path.
Validates and saves the asset manifest to file.
static saveIntegManifest(manifest, filePath)
public static saveIntegManifest(manifest: IntegManifest, filePath: string): void
Parameters
- manifest
Integ— - manifest.Manifest - filePath
string— - output file path.
Validates and saves the integ manifest to file.
static version()
public static version(): string
Returns
string
Fetch the current schema version number.

.NET
Go
Java
Python
TypeScript (