Interface AssemblyManifest
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AssemblyManifest.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-18T12:13:36.880Z") @Stability(Stable) public interface AssemblyManifest extends software.amazon.jsii.JsiiSerializable
A manifest which describes the cloud assembly.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAssemblyManifest.BuilderA builder forAssemblyManifeststatic classAssemblyManifest.Jsii$ProxyAn implementation forAssemblyManifest
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static AssemblyManifest.Builderbuilder()default Map<String,ArtifactManifest>getArtifacts()The set of artifacts in this assembly.default List<MissingContext>getMissing()Missing context information.default RuntimeInfogetRuntime()Runtime information.StringgetVersion()Protocol version.
-
-
-
Method Detail
-
getVersion
@Stability(Stable) @NotNull String getVersion()
Protocol version.
-
getArtifacts
@Stability(Stable) @Nullable default Map<String,ArtifactManifest> getArtifacts()
The set of artifacts in this assembly.Default: - no artifacts.
-
getMissing
@Stability(Stable) @Nullable default List<MissingContext> getMissing()
Missing context information.If this field has values, it means that the cloud assembly is not complete and should not be deployed.
Default: - no missing context.
-
getRuntime
@Stability(Stable) @Nullable default RuntimeInfo getRuntime()
Runtime information.Default: - no info.
-
builder
@Stability(Stable) static AssemblyManifest.Builder builder()
- Returns:
- a
AssemblyManifest.BuilderofAssemblyManifest
-
-