File tree 2 files changed +0
-21
lines changed
2 files changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -481,8 +481,6 @@ deployed.
481
481
## interface IValidation <a id =" constructs-ivalidation " ></a >
482
482
483
483
484
- Implement this interface in order for the construct to be able to validate itself.
485
-
486
484
Implement this interface in order for the construct to be able to validate itself.
487
485
### Methods
488
486
@@ -491,10 +489,6 @@ Implement this interface in order for the construct to be able to validate itsel
491
489
492
490
Validate the current construct.
493
491
494
- This method can be implemented by derived constructs in order to perform
495
- validation logic. It is called on all constructs before synthesis.
496
- Validate the current construct.
497
-
498
492
This method can be implemented by derived constructs in order to perform
499
493
validation logic. It is called on all constructs before synthesis.
500
494
Original file line number Diff line number Diff line change @@ -506,21 +506,6 @@ export enum ConstructOrder {
506
506
POSTORDER
507
507
}
508
508
509
- /**
510
- * Implement this interface in order for the construct to be able to validate itself.
511
- */
512
- export interface IValidation {
513
- /**
514
- * Validate the current construct.
515
- *
516
- * This method can be implemented by derived constructs in order to perform
517
- * validation logic. It is called on all constructs before synthesis.
518
- *
519
- * @returns An array of validation error messages, or an empty array if there the construct is valid.
520
- */
521
- validate ( ) : string [ ] ;
522
- }
523
-
524
509
const PATH_SEP_REGEX = new RegExp ( `${ Node . PATH_SEP } ` , 'g' ) ;
525
510
526
511
/**
You can’t perform that action at this time.
0 commit comments