@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.862Z") @Stability(value=Stable) public interface LoadManifestOptions extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cloudassembly.schema.*;
LoadManifestOptions loadManifestOptions = LoadManifestOptions.builder()
.skipEnumCheck(false)
.skipVersionCheck(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
LoadManifestOptions.Builder
A builder for
LoadManifestOptions |
static class |
LoadManifestOptions.Jsii$Proxy
An implementation for
LoadManifestOptions |
| Modifier and Type | Method and Description |
|---|---|
static LoadManifestOptions.Builder |
builder() |
default Boolean |
getSkipEnumCheck()
Skip enum checks.
|
default Boolean |
getSkipVersionCheck()
Skip the version check.
|
@Stability(value=Stable) @Nullable default Boolean getSkipEnumCheck()
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
@Stability(value=Stable) @Nullable default Boolean getSkipVersionCheck()
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
@Stability(value=Stable) static LoadManifestOptions.Builder builder()
LoadManifestOptions.Builder of LoadManifestOptionsCopyright © 2022. All rights reserved.