Interface AssetManifestProperties

All Superinterfaces:
AssetManifestOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AssetManifestProperties.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:38.680Z") @Stability(Stable) public interface AssetManifestProperties extends software.amazon.jsii.JsiiSerializable, AssetManifestOptions
Artifact properties for the Asset Manifest.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cloudassembly.schema.*;
 AssetManifestProperties assetManifestProperties = AssetManifestProperties.builder()
         .file("file")
         // the properties below are optional
         .bootstrapStackVersionSsmParameter("bootstrapStackVersionSsmParameter")
         .requiresBootstrapStackVersion(123)
         .build();