Class Manifest
- java.lang.Object
-
- software.amazon.jsii.JsiiObject
-
- software.amazon.awscdk.cloudassembly.schema.Manifest
-
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)", date="2025-11-06T20:25:05.793Z") @Stability(Stable) public class Manifest extends software.amazon.jsii.JsiiObject
Protocol utility class.
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static StringcliVersion()Return the CLI version that supports this Cloud Assembly Schema version.static AssemblyManifestload(String filePath)Deprecated.useloadAssemblyManifest()static AssemblyManifestloadAssemblyManifest(String filePath)Load and validates the cloud assembly manifest from file.static AssemblyManifestloadAssemblyManifest(String filePath, LoadManifestOptions options)Load and validates the cloud assembly manifest from file.static AssetManifestloadAssetManifest(String filePath)Load and validates the asset manifest from file.static IntegManifestloadIntegManifest(String filePath)Load and validates the integ manifest from file.static voidsave(AssemblyManifest manifest, String filePath)Deprecated.usesaveAssemblyManifest()static voidsaveAssemblyManifest(AssemblyManifest manifest, String filePath)Validates and saves the cloud assembly manifest to file.static voidsaveAssetManifest(AssetManifest manifest, String filePath)Validates and saves the asset manifest to file.static voidsaveIntegManifest(IntegManifest manifest, String filePath)Validates and saves the integ manifest to file.static Stringversion()Fetch the current schema version number.-
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
-
-
-
-
Method Detail
-
cliVersion
@Stability(Stable) @Nullable public static String cliVersion()
Return the CLI version that supports this Cloud Assembly Schema version.
-
load
@Stability(Deprecated) @Deprecated @NotNull public static AssemblyManifest load(@NotNull String filePath)
Deprecated.useloadAssemblyManifest()(deprecated) Deprecated.- Parameters:
filePath- This parameter is required.
-
loadAssemblyManifest
@Stability(Stable) @NotNull public static AssemblyManifest loadAssemblyManifest(@NotNull String filePath, @Nullable LoadManifestOptions options)
Load and validates the cloud assembly manifest from file.- Parameters:
filePath-- path to the manifest file.
options-
-
loadAssemblyManifest
@Stability(Stable) @NotNull public static AssemblyManifest loadAssemblyManifest(@NotNull String filePath)
Load and validates the cloud assembly manifest from file.- Parameters:
filePath-- path to the manifest file.
-
loadAssetManifest
@Stability(Stable) @NotNull public static AssetManifest loadAssetManifest(@NotNull String filePath)
Load and validates the asset manifest from file.- Parameters:
filePath-- path to the manifest file.
-
loadIntegManifest
@Stability(Stable) @NotNull public static IntegManifest loadIntegManifest(@NotNull String filePath)
Load and validates the integ manifest from file.- Parameters:
filePath-- path to the manifest file.
-
save
@Stability(Deprecated) @Deprecated public static void save(@NotNull AssemblyManifest manifest, @NotNull String filePath)
Deprecated.usesaveAssemblyManifest()(deprecated) Deprecated.- Parameters:
manifest- This parameter is required.filePath- This parameter is required.
-
saveAssemblyManifest
@Stability(Stable) public static void saveAssemblyManifest(@NotNull AssemblyManifest manifest, @NotNull String filePath)Validates and saves the cloud assembly manifest to file.- Parameters:
manifest-- manifest.
filePath-- output file path.
-
saveAssetManifest
@Stability(Stable) public static void saveAssetManifest(@NotNull AssetManifest manifest, @NotNull String filePath)Validates and saves the asset manifest to file.- Parameters:
manifest-- manifest.
filePath-- output file path.
-
saveIntegManifest
@Stability(Stable) public static void saveIntegManifest(@NotNull IntegManifest manifest, @NotNull String filePath)Validates and saves the integ manifest to file.- Parameters:
manifest-- manifest.
filePath-- output file path.
-
version
@Stability(Stable) @NotNull public static String version()
Fetch the current schema version number.
-
-