interface LoadManifestOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CloudAssembly.Schema.LoadManifestOptions |
Java | software.amazon.awscdk.cloudassembly.schema.LoadManifestOptions |
Python | aws_cdk.cloud_assembly_schema.LoadManifestOptions |
TypeScript | @aws-cdk/cloud-assembly-schema » LoadManifestOptions |
Options for the loadManifest operation.
Properties
| Name | Type | Description |
|---|---|---|
| skip | boolean | Skip enum checks. |
| skip | boolean | Skip the version check. |
| topo | boolean | Topologically sort all artifacts. |
| validate | boolean | Validate the file according to the declared JSON Schema. |
skipEnumCheck?
Type:
boolean
(optional, default: false)
Skip enum checks.
This means you may read enum values you don't know about yet. Make sure to always check the values of enums you encounter in the manifest.
skipVersionCheck?
Type:
boolean
(optional, default: false)
Skip the version check.
This means you may read a newer cloud assembly than the CX API is designed to support, and your application may not be aware of all features that in use in the Cloud Assembly.
topoSort?
Type:
boolean
(optional, default: true)
Topologically sort all artifacts.
This parameter is only respected by the constructor of CloudAssembly. The
property lives here for backwards compatibility reasons.
validateSchema?
Type:
boolean
(optional, default: false, unless $TESTING_CDK is set to '1')
Validate the file according to the declared JSON Schema.
Be aware that JSON Schema validation has a significant performance cost (about 10x over not validating).

.NET
Java
Python
TypeScript