Skip to content

Commit a7cd9eb

Browse files
authoredJan 24, 2025··
feat(amplify-alpha): throw ValidationError instead of untyped errors (#33141)
### Issue `aws-amplify-alpha` for #32569 ### Description of changes ValidationErrors everywhere ### Describe any new or updated permissions being added n/a ### Description of how you validated changes Existing tests. Exemptions granted as this is basically a refactor of existing code. ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 8b472fc commit a7cd9eb

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed
 

‎packages/@aws-cdk/aws-amplify-alpha/.eslintrc.js

+7
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,12 @@ baseConfig.parserOptions.project = __dirname + '/tsconfig.json';
44
baseConfig.rules['import/no-extraneous-dependencies'] = ['error', { devDependencies: true, peerDependencies: true } ];
55
baseConfig.rules['import/order'] = 'off';
66
baseConfig.rules['@aws-cdk/invalid-cfn-imports'] = 'off';
7+
baseConfig.rules['@cdklabs/no-throw-default-error'] = ['error'];
8+
baseConfig.overrides.push({
9+
files: ["./test/**"],
10+
rules: {
11+
"@cdklabs/no-throw-default-error": "off",
12+
},
13+
});
714

815
module.exports = baseConfig;

‎packages/@aws-cdk/aws-amplify-alpha/lib/domain.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as acm from 'aws-cdk-lib/aws-certificatemanager';
22
import * as iam from 'aws-cdk-lib/aws-iam';
3-
import { Lazy, Resource, IResolvable, Token } from 'aws-cdk-lib/core';
3+
import { Lazy, Resource, IResolvable, Token, ValidationError } from 'aws-cdk-lib/core';
44
import { Construct } from 'constructs';
55
import { CfnDomain } from 'aws-cdk-lib/aws-amplify';
66
import { IApp } from './app';
@@ -131,10 +131,10 @@ export class Domain extends Resource {
131131

132132
const domainName = props.domainName || id;
133133
if (!Token.isUnresolved(domainName) && domainName.length > 255) {
134-
throw new Error(`Domain name must be 255 characters or less, got: ${domainName.length} characters.`);
134+
throw new ValidationError(`Domain name must be 255 characters or less, got: ${domainName.length} characters.`, this);
135135
}
136136
if (!Token.isUnresolved(domainName) && !/^(((?!-)[A-Za-z0-9-]{0,62}[A-Za-z0-9])\.)+((?!-)[A-Za-z0-9-]{1,62}[A-Za-z0-9])(\.)?$/.test(domainName)) {
137-
throw new Error(`Domain name must be a valid hostname, got: ${domainName}.`);
137+
throw new ValidationError(`Domain name must be a valid hostname, got: ${domainName}.`, this);
138138
}
139139

140140
const domain = new CfnDomain(this, 'Resource', {

‎packages/aws-cdk-lib/.eslintrc.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@ baseConfig.rules['import/no-extraneous-dependencies'] = [
1616

1717
// no-throw-default-error
1818
const enableNoThrowDefaultErrorIn = [
19+
'aws-amplify',
20+
'aws-amplifyuibuilder',
1921
'aws-apigatewayv2-authorizers',
2022
'aws-apigatewayv2-integrations',
2123
'aws-elasticloadbalancing',
2224
'aws-elasticloadbalancingv2',
2325
'aws-elasticloadbalancingv2-actions',
24-
'aws-elasticloadbalancingv2-targets',
26+
'aws-elasticloadbalancingv2-targets',
2527
'aws-lambda',
2628
'aws-rds',
2729
'aws-s3',

‎packages/aws-cdk-lib/core/lib/errors.ts

+4
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ abstract class ConstructError extends Error {
142142
*
143143
* A ValidationError is always attached to a Construct scope. To a user, the error will present with additional
144144
* information on the construct that caused the validation to fail.
145+
*
146+
* @internal
145147
*/
146148
export class ValidationError extends ConstructError {
147149
public get type(): 'validation' {
@@ -162,6 +164,8 @@ export class ValidationError extends ConstructError {
162164
*
163165
* To a User, these errors still present themselves as a "ValidationError".
164166
* However they do not contain any information about the location in the construct tree.
167+
*
168+
* @internal
165169
*/
166170
export class UnscopedValidationError extends ConstructError {
167171
public get type(): 'validation' {

‎packages/aws-cdk-lib/core/lib/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export * from './expiration';
3535
export * from './size';
3636
export * from './stack-trace';
3737
export { Element } from './deps';
38-
export { Errors } from './errors';
38+
export * from './errors';
3939

4040
export * from './app';
4141
export * from './context-provider';

0 commit comments

Comments
 (0)
Please sign in to comment.