Interface AssetManifestProperties

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-06T23:25:18.345Z") @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.cloud_assembly_schema.*;
 AssetManifestProperties assetManifestProperties = AssetManifestProperties.builder()
         .file("file")
         // the properties below are optional
         .bootstrapStackVersionSsmParameter("bootstrapStackVersionSsmParameter")
         .requiresBootstrapStackVersion(123)
         .build();