Skip to content

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.

messageRequired

public readonly message: string;
  • Type: string

The error message.


sourceRequired

public readonly source: Construct;

The construct which emitted the error.


Classes