Interface ICloudAssembly
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
ICloudAssembly.Jsii$Default
- All Known Implementing Classes:
ICloudAssembly.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)", date="2025-11-06T20:25:05.788Z") @Stability(Stable) public interface ICloudAssembly extends software.amazon.jsii.JsiiSerializable
Interoperable representation of a deployable cloud application.The external and interoperable contract for a Cloud Assembly is a directory containing a valid Cloud Assembly.
Implementations should use the directory to load the Cloud Assembly from disk. It is recommended that implementations validate loaded manifest files using the provided functionality from this package. Within an implementation, it may be prudent to keep (parts of) the Cloud Assembly in memory during execution and use an implementation-specific contract. However when an implementation is providing an external contract, this interface should be used.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceICloudAssembly.Jsii$DefaultInternal default implementation forICloudAssembly.static classICloudAssembly.Jsii$ProxyA proxy class which represents a concrete javascript instance of this type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDirectory()The directory of the cloud assembly.
-
-
-
Method Detail
-
getDirectory
@Stability(Stable) @NotNull String getDirectory()
The directory of the cloud assembly.This directory will be used to read the Cloud Assembly from. Its contents (in particular
manifest.json) must comply with the schema defined in this package.
-
-