Interface LoadManifestOptions
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LoadManifestOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)", date="2025-11-06T20:25:05.793Z") @Stability(Stable) public interface LoadManifestOptions extends software.amazon.jsii.JsiiSerializable
Options for the loadManifest operation.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classLoadManifestOptions.BuilderA builder forLoadManifestOptionsstatic classLoadManifestOptions.Jsii$ProxyAn implementation forLoadManifestOptions
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static LoadManifestOptions.Builderbuilder()default BooleangetSkipEnumCheck()Skip enum checks.default BooleangetSkipVersionCheck()Skip the version check.default BooleangetTopoSort()Topologically sort all artifacts.
-
-
-
Method Detail
-
getSkipEnumCheck
@Stability(Stable) @Nullable default Boolean getSkipEnumCheck()
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.
Default: false
-
getSkipVersionCheck
@Stability(Stable) @Nullable default Boolean getSkipVersionCheck()
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.
Default: false
-
getTopoSort
@Stability(Stable) @Nullable default Boolean getTopoSort()
Topologically sort all artifacts.This parameter is only respected by the constructor of
CloudAssembly. The property lives here for backwards compatibility reasons.Default: true
-
builder
@Stability(Stable) static LoadManifestOptions.Builder builder()
- Returns:
- a
LoadManifestOptions.BuilderofLoadManifestOptions
-
-