interface NestedCloudAssemblyProperties
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.cloud_assembly_schema.NestedCloudAssemblyProperties | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/cloudassemblyschema#NestedCloudAssemblyProperties | 
|  Java | software.amazon.awscdk.cloud_assembly_schema.NestedCloudAssemblyProperties | 
|  Python | aws_cdk.cloud_assembly_schema.NestedCloudAssemblyProperties | 
|  TypeScript (source) | aws-cdk-lib»cloud_assembly_schema»NestedCloudAssemblyProperties | 
Artifact properties for nested cloud assemblies.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { cloud_assembly_schema } from 'aws-cdk-lib';
const nestedCloudAssemblyProperties: cloud_assembly_schema.NestedCloudAssemblyProperties = {
  directoryName: 'directoryName',
  // the properties below are optional
  displayName: 'displayName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| directory | string | Relative path to the nested cloud assembly. | 
| display | string | Display name for the cloud assembly. | 
directoryName
Type:
string
Relative path to the nested cloud assembly.
displayName?
Type:
string
(optional, default: The artifact ID)
Display name for the cloud assembly.
