interface CloudAssemblyBuilderProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CXAPI.CloudAssemblyBuilderProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/cxapi#CloudAssemblyBuilderProps |
Java | software.amazon.awscdk.cxapi.CloudAssemblyBuilderProps |
Python | aws_cdk.cx_api.CloudAssemblyBuilderProps |
TypeScript (source) | aws-cdk-lib » cx_api » CloudAssemblyBuilderProps |
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 { cx_api } from 'aws-cdk-lib';
declare const cloudAssemblyBuilder: cx_api.CloudAssemblyBuilder;
const cloudAssemblyBuilderProps: cx_api.CloudAssemblyBuilderProps = {
assetOutdir: 'assetOutdir',
parentBuilder: cloudAssemblyBuilder,
};
Properties
| Name | Type | Description |
|---|---|---|
| asset | string | Use the given asset output directory. |
| parent | Cloud | If this builder is for a nested assembly, the parent assembly builder. |
assetOutdir?
Type:
string
(optional, default: Same as the manifest outdir)
Use the given asset output directory.
parentBuilder?
Type:
Cloud
(optional, default: This is a root assembly)
If this builder is for a nested assembly, the parent assembly builder.

.NET
Go
Java
Python
TypeScript (