Package software.amazon.awscdk.cxapi
Interface CloudAssemblyBuilderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CloudAssemblyBuilderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:17.633Z")
@Stability(Stable)
public interface CloudAssemblyBuilderProps
extends software.amazon.jsii.JsiiSerializable
Construction properties for CloudAssemblyBuilder.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.cxapi.*; CloudAssemblyBuilder cloudAssemblyBuilder; CloudAssemblyBuilderProps cloudAssemblyBuilderProps = CloudAssemblyBuilderProps.builder() .assetOutdir("assetOutdir") .parentBuilder(cloudAssemblyBuilder) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCloudAssemblyBuilderProps
static final class
An implementation forCloudAssemblyBuilderProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Use the given asset output directory.default CloudAssemblyBuilder
If this builder is for a nested assembly, the parent assembly builder.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAssetOutdir
Use the given asset output directory.Default: - Same as the manifest outdir
-
getParentBuilder
If this builder is for a nested assembly, the parent assembly builder.Default: - This is a root assembly
-
builder
- Returns:
- a
CloudAssemblyBuilderProps.Builder
ofCloudAssemblyBuilderProps
-