cdk-comprehend-s3olap 2.0.88 → 2.0.89
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/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +11 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.examples.json +5 -0
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +337 -335
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.paginators.json +1 -1
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +10 -2
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +2 -1
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +547 -538
- package/node_modules/aws-sdk/apis/sns-2010-03-31.min.json +42 -10
- package/node_modules/aws-sdk/clients/dataexchange.d.ts +13 -13
- package/node_modules/aws-sdk/clients/dataexchange.js +1 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/eks.d.ts +7 -7
- package/node_modules/aws-sdk/clients/fsx.d.ts +2 -2
- package/node_modules/aws-sdk/clients/inspector2.d.ts +16 -2
- package/node_modules/aws-sdk/clients/iotsitewise.d.ts +12 -8
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +15 -0
- package/node_modules/aws-sdk/clients/sns.d.ts +42 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +750 -743
- package/node_modules/aws-sdk/dist/aws-sdk.js +45 -13
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +19 -19
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/credentials/sso_credentials.d.ts +2 -0
- package/node_modules/aws-sdk/lib/credentials/sso_credentials.js +5 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -1,5 +1,6 @@
|
|
1
1
|
import {Credentials} from '../credentials';
|
2
2
|
import SSO = require('../../clients/sso');
|
3
|
+
import { HTTPOptions } from '../config-base';
|
3
4
|
export class SsoCredentials extends Credentials {
|
4
5
|
/**
|
5
6
|
* Creates a new SsoCredentials object.
|
@@ -8,6 +9,7 @@ export class SsoCredentials extends Credentials {
|
|
8
9
|
}
|
9
10
|
|
10
11
|
interface SsoCredentialsOptions {
|
12
|
+
httpOptions?: HTTPOptions,
|
11
13
|
profile?: string;
|
12
14
|
filename?: string;
|
13
15
|
ssoClient?: SSO;
|
@@ -60,6 +60,7 @@ AWS.SsoCredentials = AWS.util.inherit(AWS.Credentials, {
|
|
60
60
|
this.filename = options.filename;
|
61
61
|
this.profile = options.profile || process.env.AWS_PROFILE || AWS.util.defaultProfile;
|
62
62
|
this.service = options.ssoClient;
|
63
|
+
this.httpOptions = options.httpOptions || null;
|
63
64
|
this.get(options.callback || AWS.util.fn.noop);
|
64
65
|
},
|
65
66
|
|
@@ -130,7 +131,10 @@ AWS.SsoCredentials = AWS.util.inherit(AWS.Credentials, {
|
|
130
131
|
}
|
131
132
|
|
132
133
|
if (!self.service || self.service.config.region !== profile.sso_region) {
|
133
|
-
self.service = new AWS.SSO({
|
134
|
+
self.service = new AWS.SSO({
|
135
|
+
region: profile.sso_region,
|
136
|
+
httpOptions: this.httpOptions,
|
137
|
+
});
|
134
138
|
}
|
135
139
|
var request = {
|
136
140
|
accessToken: cacheContent.accessToken,
|
package/package.json
CHANGED
@@ -44,7 +44,7 @@
|
|
44
44
|
"@types/node": "^14",
|
45
45
|
"@typescript-eslint/eslint-plugin": "^5",
|
46
46
|
"@typescript-eslint/parser": "^5",
|
47
|
-
"aws-cdk-lib": "^2.
|
47
|
+
"aws-cdk-lib": "^2.41.0",
|
48
48
|
"constructs": "^10.0.5",
|
49
49
|
"esbuild": "^0.15.7",
|
50
50
|
"eslint": "^8",
|
@@ -59,7 +59,7 @@
|
|
59
59
|
"jsii-pacmak": "^1.67.0",
|
60
60
|
"json-schema": "^0.4.0",
|
61
61
|
"npm-check-updates": "^15",
|
62
|
-
"projen": "^0.61.
|
62
|
+
"projen": "^0.61.46",
|
63
63
|
"standard-version": "^9",
|
64
64
|
"ts-jest": "^27",
|
65
65
|
"typescript": "^4.8.2"
|
@@ -69,8 +69,8 @@
|
|
69
69
|
"constructs": "^10.0.5"
|
70
70
|
},
|
71
71
|
"dependencies": {
|
72
|
-
"aws-cdk-lib": "^2.
|
73
|
-
"aws-sdk": "^2.
|
72
|
+
"aws-cdk-lib": "^2.41.0",
|
73
|
+
"aws-sdk": "^2.1211.0",
|
74
74
|
"constructs": "^10.0.5",
|
75
75
|
"esbuild": "^0.15.7"
|
76
76
|
},
|
@@ -92,7 +92,7 @@
|
|
92
92
|
],
|
93
93
|
"main": "lib/index.js",
|
94
94
|
"license": "Apache-2.0",
|
95
|
-
"version": "2.0.
|
95
|
+
"version": "2.0.89",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|