@jaypie/constructs 1.1.52 → 1.1.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +1 -2
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.js +1 -2
- package/dist/esm/index.js.map +1 -1
- package/package.json +2 -3
package/dist/cjs/index.cjs
CHANGED
|
@@ -19,7 +19,6 @@ var awsIam = require('aws-cdk-lib/aws-iam');
|
|
|
19
19
|
var awsLogs = require('aws-cdk-lib/aws-logs');
|
|
20
20
|
var awsSso = require('aws-cdk-lib/aws-sso');
|
|
21
21
|
var awsSam = require('aws-cdk-lib/aws-sam');
|
|
22
|
-
var errors = require('@jaypie/errors');
|
|
23
22
|
var cloudfront = require('aws-cdk-lib/aws-cloudfront');
|
|
24
23
|
var origins = require('aws-cdk-lib/aws-cloudfront-origins');
|
|
25
24
|
|
|
@@ -1910,7 +1909,7 @@ class JaypieSsoSyncApplication extends constructs.Construct {
|
|
|
1910
1909
|
missingParams.push(`scimEndpointUrl or ${scimEndpointUrlEnvKey} environment variable`);
|
|
1911
1910
|
}
|
|
1912
1911
|
if (missingParams.length > 0) {
|
|
1913
|
-
throw new
|
|
1912
|
+
throw new cdk.ConfigurationError(`JaypieSsoSyncApplication missing required configuration: ${missingParams.join(", ")}`);
|
|
1914
1913
|
}
|
|
1915
1914
|
// Create the SSO Sync Application
|
|
1916
1915
|
// Type assertion is safe because we validated all required values above
|