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.84.0 (build 5404dcf)",
date="2023-06-19T16:29:54.697Z")
@Stability(Stable)
public class Manifest
extends software.amazon.jsii.JsiiObject
Protocol utility class.
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic AssemblyManifest
Deprecated.static AssemblyManifest
loadAssemblyManifest
(String filePath) Load and validates the cloud assembly manifest from file.static AssemblyManifest
loadAssemblyManifest
(String filePath, LoadManifestOptions options) Load and validates the cloud assembly manifest from file.static AssetManifest
loadAssetManifest
(String filePath) Load and validates the asset manifest from file.static IntegManifest
loadIntegManifest
(String filePath) Load and validates the integ manifest from file.static void
save
(AssemblyManifest manifest, String filePath) Deprecated.usesaveAssemblyManifest()
static void
saveAssemblyManifest
(AssemblyManifest manifest, String filePath) Validates and saves the cloud assembly manifest to file.static void
saveAssetManifest
(AssetManifest manifest, String filePath) Validates and saves the asset manifest to file.static void
saveIntegManifest
(IntegManifest manifest, String filePath) Validates and saves the integ manifest to file.static String
version()
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
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
Manifest
protected Manifest(software.amazon.jsii.JsiiObjectRef objRef) -
Manifest
protected Manifest(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
-
-
Method Details
-
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
Load and validates the asset manifest from file.- Parameters:
filePath
-- path to the manifest file.
-
loadIntegManifest
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
Fetch the current schema version number.
-
loadAssemblyManifest()