Interface AssetManifest
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AssetManifest.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)", date="2025-11-06T20:25:05.757Z") @Stability(Stable) public interface AssetManifest extends software.amazon.jsii.JsiiSerializable
Definitions for the asset manifest.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAssetManifest.BuilderA builder forAssetManifeststatic classAssetManifest.Jsii$ProxyAn implementation forAssetManifest
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static AssetManifest.Builderbuilder()default Map<String,DockerImageAsset>getDockerImages()The Docker image assets in this manifest.default Map<String,FileAsset>getFiles()The file assets in this manifest.StringgetVersion()Version of the manifest.
-
-
-
Method Detail
-
getVersion
@Stability(Stable) @NotNull String getVersion()
Version of the manifest.
-
getDockerImages
@Stability(Stable) @Nullable default Map<String,DockerImageAsset> getDockerImages()
The Docker image assets in this manifest.Default: - No Docker images
-
getFiles
@Stability(Stable) @Nullable default Map<String,FileAsset> getFiles()
The file assets in this manifest.Default: - No files
-
builder
@Stability(Stable) static AssetManifest.Builder builder()
- Returns:
- a
AssetManifest.BuilderofAssetManifest
-
-