aws-cdk-lib.cloud_assembly_schema.LoadManifestOptions

interface LoadManifestOptions

LanguageType name
.NETAmazon.CDK.CloudAssembly.Schema.LoadManifestOptions
Gogithub.com/aws/aws-cdk-go/awscdk/v2/cloudassemblyschema#LoadManifestOptions
Javasoftware.amazon.awscdk.cloudassembly.schema.LoadManifestOptions
Pythonaws_cdk.cloud_assembly_schema.LoadManifestOptions
TypeScript (source)aws-cdk-lib » cloud_assembly_schema » LoadManifestOptions

Options for the loadManifest operation.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { cloud_assembly_schema } from 'aws-cdk-lib';
const loadManifestOptions: cloud_assembly_schema.LoadManifestOptions = {
  skipEnumCheck: false,
  skipVersionCheck: false,
  topoSort: false,
};

Properties

NameTypeDescription
skipEnumCheck?booleanSkip enum checks.
skipVersionCheck?booleanSkip the version check.
topoSort?booleanTopologically sort all artifacts.

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.