interface SynthesisMessage
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CXAPI.SynthesisMessage |
Go | github.com/aws/aws-cdk-go/awscdk/v2/cxapi#SynthesisMessage |
Java | software.amazon.awscdk.cxapi.SynthesisMessage |
Python | aws_cdk.cx_api.SynthesisMessage |
TypeScript (source) | aws-cdk-lib » cx_api » SynthesisMessage |
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';
const synthesisMessage: cx_api.SynthesisMessage = {
entry: {
type: 'type',
// the properties below are optional
data: 'data',
trace: ['trace'],
},
id: 'id',
level: cx_api.SynthesisMessageLevel.INFO,
};
Properties
| Name | Type | Description |
|---|---|---|
| entry | Metadata | |
| id | string | |
| level | Synthesis |
entry
Type:
Metadata
id
Type:
string
level
Type:
Synthesis

.NET
Go
Java
Python
TypeScript (