ValidationError
An error returned during the validation phase.
Initializer
import { ValidationError } from '@alicloud/ros-cdk-core'
const validationError: ValidationError = { ... }
Properties
Name | Type | Description |
---|---|---|
message |
string |
The error message. |
source |
Construct |
The construct which emitted the error. |
message
Required
public readonly message: string;
- Type: string
The error message.
source
Required
public readonly source: Construct;
- Type: Construct
The construct which emitted the error.