Interface AssetManifestOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
AssetManifestProperties
- All Known Implementing Classes:
AssetManifestOptions.Jsii$Proxy,AssetManifestProperties.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T13:52:13.848Z")
@Stability(Stable)
public interface AssetManifestOptions
extends software.amazon.jsii.JsiiSerializable
Configuration options 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.*;
AssetManifestOptions assetManifestOptions = AssetManifestOptions.builder()
.bootstrapStackVersionSsmParameter("bootstrapStackVersionSsmParameter")
.requiresBootstrapStackVersion(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAssetManifestOptionsstatic final classAn implementation forAssetManifestOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic AssetManifestOptions.Builderbuilder()default StringSSM parameter where the bootstrap stack version number can be found.default NumberVersion of bootstrap stack required to deploy this stack.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBootstrapStackVersionSsmParameter
SSM parameter where the bootstrap stack version number can be found.- If this value is not set, the bootstrap stack name must be known at deployment time so the stack version can be looked up from the stack outputs.
- If this value is set, the bootstrap stack can have any name because we won't need to look it up.
Default: - Bootstrap stack version number looked up
-
getRequiresBootstrapStackVersion
Version of bootstrap stack required to deploy this stack.Default: - Version 1 (basic modern bootstrap stack)
-
builder
- Returns:
- a
AssetManifestOptions.BuilderofAssetManifestOptions
-