@aws-sdk/client-quicksight 3.51.0 → 3.54.0
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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/QuickSightServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +206 -6
- package/dist-cjs/models/models_1.js +79 -3
- package/dist-cjs/protocols/Aws_restJson1.js +1438 -5945
- package/dist-es/index.js +1 -0
- package/dist-es/models/QuickSightServiceException.js +12 -0
- package/dist-es/models/models_0.js +188 -1
- package/dist-es/models/models_1.js +72 -1
- package/dist-es/protocols/Aws_restJson1.js +3090 -6425
- package/dist-types/QuickSightClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/QuickSightServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +93 -40
- package/dist-types/models/models_1.d.ts +37 -16
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/QuickSightClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/QuickSightServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +67 -40
- package/dist-types/ts3.4/models/models_1.d.ts +27 -16
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message?: string;
|
|
7
8
|
|
|
8
9
|
RequestId?: string;
|
|
10
|
+
|
|
11
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
12
|
}
|
|
10
13
|
|
|
11
14
|
export interface AccountCustomization {
|
|
@@ -334,20 +337,24 @@ export declare namespace CancelIngestionResponse {
|
|
|
334
337
|
const filterSensitiveLog: (obj: CancelIngestionResponse) => any;
|
|
335
338
|
}
|
|
336
339
|
|
|
337
|
-
export
|
|
338
|
-
name: "InternalFailureException";
|
|
339
|
-
$fault: "server";
|
|
340
|
+
export declare class InternalFailureException extends __BaseException {
|
|
341
|
+
readonly name: "InternalFailureException";
|
|
342
|
+
readonly $fault: "server";
|
|
340
343
|
Message?: string;
|
|
341
344
|
|
|
342
345
|
RequestId?: string;
|
|
346
|
+
|
|
347
|
+
constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
|
|
343
348
|
}
|
|
344
349
|
|
|
345
|
-
export
|
|
346
|
-
name: "InvalidParameterValueException";
|
|
347
|
-
$fault: "client";
|
|
350
|
+
export declare class InvalidParameterValueException extends __BaseException {
|
|
351
|
+
readonly name: "InvalidParameterValueException";
|
|
352
|
+
readonly $fault: "client";
|
|
348
353
|
Message?: string;
|
|
349
354
|
|
|
350
355
|
RequestId?: string;
|
|
356
|
+
|
|
357
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
|
|
351
358
|
}
|
|
352
359
|
export declare enum ExceptionResourceType {
|
|
353
360
|
ACCOUNT_SETTINGS = "ACCOUNT_SETTINGS",
|
|
@@ -361,32 +368,38 @@ export declare enum ExceptionResourceType {
|
|
|
361
368
|
VPC_CONNECTION = "VPC_CONNECTION"
|
|
362
369
|
}
|
|
363
370
|
|
|
364
|
-
export
|
|
365
|
-
name: "ResourceExistsException";
|
|
366
|
-
$fault: "client";
|
|
371
|
+
export declare class ResourceExistsException extends __BaseException {
|
|
372
|
+
readonly name: "ResourceExistsException";
|
|
373
|
+
readonly $fault: "client";
|
|
367
374
|
Message?: string;
|
|
368
375
|
|
|
369
376
|
ResourceType?: ExceptionResourceType | string;
|
|
370
377
|
|
|
371
378
|
RequestId?: string;
|
|
379
|
+
|
|
380
|
+
constructor(opts: __ExceptionOptionType<ResourceExistsException, __BaseException>);
|
|
372
381
|
}
|
|
373
382
|
|
|
374
|
-
export
|
|
375
|
-
name: "ResourceNotFoundException";
|
|
376
|
-
$fault: "client";
|
|
383
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
384
|
+
readonly name: "ResourceNotFoundException";
|
|
385
|
+
readonly $fault: "client";
|
|
377
386
|
Message?: string;
|
|
378
387
|
|
|
379
388
|
ResourceType?: ExceptionResourceType | string;
|
|
380
389
|
|
|
381
390
|
RequestId?: string;
|
|
391
|
+
|
|
392
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
382
393
|
}
|
|
383
394
|
|
|
384
|
-
export
|
|
385
|
-
name: "ThrottlingException";
|
|
386
|
-
$fault: "client";
|
|
395
|
+
export declare class ThrottlingException extends __BaseException {
|
|
396
|
+
readonly name: "ThrottlingException";
|
|
397
|
+
readonly $fault: "client";
|
|
387
398
|
Message?: string;
|
|
388
399
|
|
|
389
400
|
RequestId?: string;
|
|
401
|
+
|
|
402
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
390
403
|
}
|
|
391
404
|
export declare enum ColumnDataType {
|
|
392
405
|
DATETIME = "DATETIME",
|
|
@@ -510,19 +523,23 @@ export declare enum ColumnTagName {
|
|
|
510
523
|
COLUMN_GEOGRAPHIC_ROLE = "COLUMN_GEOGRAPHIC_ROLE"
|
|
511
524
|
}
|
|
512
525
|
|
|
513
|
-
export
|
|
514
|
-
name: "ConcurrentUpdatingException";
|
|
515
|
-
$fault: "server";
|
|
526
|
+
export declare class ConcurrentUpdatingException extends __BaseException {
|
|
527
|
+
readonly name: "ConcurrentUpdatingException";
|
|
528
|
+
readonly $fault: "server";
|
|
516
529
|
Message?: string;
|
|
517
530
|
RequestId?: string;
|
|
531
|
+
|
|
532
|
+
constructor(opts: __ExceptionOptionType<ConcurrentUpdatingException, __BaseException>);
|
|
518
533
|
}
|
|
519
534
|
|
|
520
|
-
export
|
|
521
|
-
name: "ConflictException";
|
|
522
|
-
$fault: "client";
|
|
535
|
+
export declare class ConflictException extends __BaseException {
|
|
536
|
+
readonly name: "ConflictException";
|
|
537
|
+
readonly $fault: "client";
|
|
523
538
|
Message?: string;
|
|
524
539
|
|
|
525
540
|
RequestId?: string;
|
|
541
|
+
|
|
542
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
526
543
|
}
|
|
527
544
|
|
|
528
545
|
export interface Tag {
|
|
@@ -568,14 +585,16 @@ export declare namespace CreateAccountCustomizationResponse {
|
|
|
568
585
|
const filterSensitiveLog: (obj: CreateAccountCustomizationResponse) => any;
|
|
569
586
|
}
|
|
570
587
|
|
|
571
|
-
export
|
|
572
|
-
name: "ResourceUnavailableException";
|
|
573
|
-
$fault: "server";
|
|
588
|
+
export declare class ResourceUnavailableException extends __BaseException {
|
|
589
|
+
readonly name: "ResourceUnavailableException";
|
|
590
|
+
readonly $fault: "server";
|
|
574
591
|
Message?: string;
|
|
575
592
|
|
|
576
593
|
ResourceType?: ExceptionResourceType | string;
|
|
577
594
|
|
|
578
595
|
RequestId?: string;
|
|
596
|
+
|
|
597
|
+
constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
|
|
579
598
|
}
|
|
580
599
|
|
|
581
600
|
export interface DateTimeParameter {
|
|
@@ -686,12 +705,14 @@ export declare namespace CreateAnalysisResponse {
|
|
|
686
705
|
const filterSensitiveLog: (obj: CreateAnalysisResponse) => any;
|
|
687
706
|
}
|
|
688
707
|
|
|
689
|
-
export
|
|
690
|
-
name: "UnsupportedUserEditionException";
|
|
691
|
-
$fault: "client";
|
|
708
|
+
export declare class UnsupportedUserEditionException extends __BaseException {
|
|
709
|
+
readonly name: "UnsupportedUserEditionException";
|
|
710
|
+
readonly $fault: "client";
|
|
692
711
|
Message?: string;
|
|
693
712
|
|
|
694
713
|
RequestId?: string;
|
|
714
|
+
|
|
715
|
+
constructor(opts: __ExceptionOptionType<UnsupportedUserEditionException, __BaseException>);
|
|
695
716
|
}
|
|
696
717
|
|
|
697
718
|
export interface CreateColumnsOperation {
|
|
@@ -1296,14 +1317,16 @@ export declare namespace CreateDataSetResponse {
|
|
|
1296
1317
|
const filterSensitiveLog: (obj: CreateDataSetResponse) => any;
|
|
1297
1318
|
}
|
|
1298
1319
|
|
|
1299
|
-
export
|
|
1300
|
-
name: "LimitExceededException";
|
|
1301
|
-
$fault: "client";
|
|
1320
|
+
export declare class LimitExceededException extends __BaseException {
|
|
1321
|
+
readonly name: "LimitExceededException";
|
|
1322
|
+
readonly $fault: "client";
|
|
1302
1323
|
Message?: string;
|
|
1303
1324
|
|
|
1304
1325
|
ResourceType?: ExceptionResourceType | string;
|
|
1305
1326
|
|
|
1306
1327
|
RequestId?: string;
|
|
1328
|
+
|
|
1329
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1307
1330
|
}
|
|
1308
1331
|
|
|
1309
1332
|
export interface ExasolParameters {
|
|
@@ -2372,12 +2395,14 @@ export declare namespace CreateGroupResponse {
|
|
|
2372
2395
|
const filterSensitiveLog: (obj: CreateGroupResponse) => any;
|
|
2373
2396
|
}
|
|
2374
2397
|
|
|
2375
|
-
export
|
|
2376
|
-
name: "PreconditionNotMetException";
|
|
2377
|
-
$fault: "client";
|
|
2398
|
+
export declare class PreconditionNotMetException extends __BaseException {
|
|
2399
|
+
readonly name: "PreconditionNotMetException";
|
|
2400
|
+
readonly $fault: "client";
|
|
2378
2401
|
Message?: string;
|
|
2379
2402
|
|
|
2380
2403
|
RequestId?: string;
|
|
2404
|
+
|
|
2405
|
+
constructor(opts: __ExceptionOptionType<PreconditionNotMetException, __BaseException>);
|
|
2381
2406
|
}
|
|
2382
2407
|
export interface CreateGroupMembershipRequest {
|
|
2383
2408
|
|
|
@@ -3966,12 +3991,14 @@ export declare namespace DescribeIAMPolicyAssignmentResponse {
|
|
|
3966
3991
|
const filterSensitiveLog: (obj: DescribeIAMPolicyAssignmentResponse) => any;
|
|
3967
3992
|
}
|
|
3968
3993
|
|
|
3969
|
-
export
|
|
3970
|
-
name: "InvalidNextTokenException";
|
|
3971
|
-
$fault: "client";
|
|
3994
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
3995
|
+
readonly name: "InvalidNextTokenException";
|
|
3996
|
+
readonly $fault: "client";
|
|
3972
3997
|
Message?: string;
|
|
3973
3998
|
|
|
3974
3999
|
RequestId?: string;
|
|
4000
|
+
|
|
4001
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
3975
4002
|
}
|
|
3976
4003
|
export interface DescribeIngestionRequest {
|
|
3977
4004
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { _Parameters, AccountCustomization, ActiveIAMPolicyAssignment, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionSummary, DataSetImportMode, DataSetSummary, DataSetUsageConfiguration, DataSource, DataSourceCredentials, DataSourceParameters, FieldFolder, FilterOperator, FolderType, Group, GroupMember, IdentityType, Ingestion, LinkSharingConfiguration, LogicalTable, NamespaceInfoV2, PhysicalTable, ResourcePermission, ResourceStatus, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, Tag, TemplateAlias, TemplateSourceEntity, ThemeAlias, ThemeConfiguration, ThemeType, VpcConnectionProperties } from "./models_0";
|
|
3
|
+
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
3
4
|
export declare enum UserRole {
|
|
4
5
|
ADMIN = "ADMIN",
|
|
5
6
|
AUTHOR = "AUTHOR",
|
|
@@ -49,12 +50,14 @@ export declare namespace DescribeUserResponse {
|
|
|
49
50
|
const filterSensitiveLog: (obj: DescribeUserResponse) => any;
|
|
50
51
|
}
|
|
51
52
|
|
|
52
|
-
export
|
|
53
|
-
name: "DomainNotWhitelistedException";
|
|
54
|
-
$fault: "client";
|
|
53
|
+
export declare class DomainNotWhitelistedException extends __BaseException {
|
|
54
|
+
readonly name: "DomainNotWhitelistedException";
|
|
55
|
+
readonly $fault: "client";
|
|
55
56
|
Message?: string;
|
|
56
57
|
|
|
57
58
|
RequestId?: string;
|
|
59
|
+
|
|
60
|
+
constructor(opts: __ExceptionOptionType<DomainNotWhitelistedException, __BaseException>);
|
|
58
61
|
}
|
|
59
62
|
export declare enum EmbeddingIdentityType {
|
|
60
63
|
ANONYMOUS = "ANONYMOUS",
|
|
@@ -149,20 +152,24 @@ export declare namespace GenerateEmbedUrlForAnonymousUserResponse {
|
|
|
149
152
|
const filterSensitiveLog: (obj: GenerateEmbedUrlForAnonymousUserResponse) => any;
|
|
150
153
|
}
|
|
151
154
|
|
|
152
|
-
export
|
|
153
|
-
name: "SessionLifetimeInMinutesInvalidException";
|
|
154
|
-
$fault: "client";
|
|
155
|
+
export declare class SessionLifetimeInMinutesInvalidException extends __BaseException {
|
|
156
|
+
readonly name: "SessionLifetimeInMinutesInvalidException";
|
|
157
|
+
readonly $fault: "client";
|
|
155
158
|
Message?: string;
|
|
156
159
|
|
|
157
160
|
RequestId?: string;
|
|
161
|
+
|
|
162
|
+
constructor(opts: __ExceptionOptionType<SessionLifetimeInMinutesInvalidException, __BaseException>);
|
|
158
163
|
}
|
|
159
164
|
|
|
160
|
-
export
|
|
161
|
-
name: "UnsupportedPricingPlanException";
|
|
162
|
-
$fault: "client";
|
|
165
|
+
export declare class UnsupportedPricingPlanException extends __BaseException {
|
|
166
|
+
readonly name: "UnsupportedPricingPlanException";
|
|
167
|
+
readonly $fault: "client";
|
|
163
168
|
Message?: string;
|
|
164
169
|
|
|
165
170
|
RequestId?: string;
|
|
171
|
+
|
|
172
|
+
constructor(opts: __ExceptionOptionType<UnsupportedPricingPlanException, __BaseException>);
|
|
166
173
|
}
|
|
167
174
|
|
|
168
175
|
export interface RegisteredUserDashboardEmbeddingConfiguration {
|
|
@@ -231,12 +238,14 @@ export declare namespace GenerateEmbedUrlForRegisteredUserResponse {
|
|
|
231
238
|
const filterSensitiveLog: (obj: GenerateEmbedUrlForRegisteredUserResponse) => any;
|
|
232
239
|
}
|
|
233
240
|
|
|
234
|
-
export
|
|
235
|
-
name: "QuickSightUserNotFoundException";
|
|
236
|
-
$fault: "client";
|
|
241
|
+
export declare class QuickSightUserNotFoundException extends __BaseException {
|
|
242
|
+
readonly name: "QuickSightUserNotFoundException";
|
|
243
|
+
readonly $fault: "client";
|
|
237
244
|
Message?: string;
|
|
238
245
|
|
|
239
246
|
RequestId?: string;
|
|
247
|
+
|
|
248
|
+
constructor(opts: __ExceptionOptionType<QuickSightUserNotFoundException, __BaseException>);
|
|
240
249
|
}
|
|
241
250
|
export interface GetDashboardEmbedUrlRequest {
|
|
242
251
|
|
|
@@ -278,12 +287,14 @@ export declare namespace GetDashboardEmbedUrlResponse {
|
|
|
278
287
|
const filterSensitiveLog: (obj: GetDashboardEmbedUrlResponse) => any;
|
|
279
288
|
}
|
|
280
289
|
|
|
281
|
-
export
|
|
282
|
-
name: "IdentityTypeNotSupportedException";
|
|
283
|
-
$fault: "client";
|
|
290
|
+
export declare class IdentityTypeNotSupportedException extends __BaseException {
|
|
291
|
+
readonly name: "IdentityTypeNotSupportedException";
|
|
292
|
+
readonly $fault: "client";
|
|
284
293
|
Message?: string;
|
|
285
294
|
|
|
286
295
|
RequestId?: string;
|
|
296
|
+
|
|
297
|
+
constructor(opts: __ExceptionOptionType<IdentityTypeNotSupportedException, __BaseException>);
|
|
287
298
|
}
|
|
288
299
|
export interface GetSessionEmbedUrlRequest {
|
|
289
300
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-quicksight",
|
|
3
3
|
"description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,40 +18,40 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
39
|
+
"@aws-sdk/types": "3.54.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
55
55
|
"@tsconfig/recommended": "1.0.1",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"concurrently": "7.0.0",
|