cdk-comprehend-s3olap 2.0.88 → 2.0.91
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 +26 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +81 -8
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.paginators.json +5 -0
- 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/ec2-2016-11-15.min.json +4 -0
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.min.json +34 -19
- 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/lookoutmetrics-2017-07-25.min.json +39 -11
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +249 -213
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +217 -122
- package/node_modules/aws-sdk/apis/runtime.lex.v2-2020-08-07.min.json +64 -40
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +705 -695
- package/node_modules/aws-sdk/apis/sns-2010-03-31.min.json +42 -10
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +3 -0
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +108 -6
- 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 +48 -40
- package/node_modules/aws-sdk/clients/eks.d.ts +7 -7
- package/node_modules/aws-sdk/clients/emrcontainers.d.ts +16 -1
- 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/lexmodelsv2.d.ts +90 -2
- package/node_modules/aws-sdk/clients/lexruntimev2.d.ts +25 -3
- package/node_modules/aws-sdk/clients/lookoutmetrics.d.ts +35 -0
- package/node_modules/aws-sdk/clients/medialive.d.ts +38 -0
- package/node_modules/aws-sdk/clients/redshift.d.ts +15 -15
- package/node_modules/aws-sdk/clients/route53.d.ts +2 -2
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +23 -3
- package/node_modules/aws-sdk/clients/sns.d.ts +42 -0
- package/node_modules/aws-sdk/clients/ssm.d.ts +10 -6
- 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 +759 -752
- package/node_modules/aws-sdk/dist/aws-sdk.js +202 -61
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +82 -82
- 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 +6 -6
@@ -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,18 +59,18 @@
|
|
59
59
|
"jsii-pacmak": "^1.67.0",
|
60
60
|
"json-schema": "^0.4.0",
|
61
61
|
"npm-check-updates": "^15",
|
62
|
-
"projen": "^0.
|
62
|
+
"projen": "^0.62.1",
|
63
63
|
"standard-version": "^9",
|
64
64
|
"ts-jest": "^27",
|
65
|
-
"typescript": "^4.8.
|
65
|
+
"typescript": "^4.8.3"
|
66
66
|
},
|
67
67
|
"peerDependencies": {
|
68
68
|
"aws-cdk-lib": "^2.27.0",
|
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.1213.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.91",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|