@aws-sdk/client-elastic-beanstalk 3.301.0 → 3.303.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/dist-cjs/models/models_0.js +127 -146
- package/dist-es/models/models_0.js +127 -146
- package/dist-types/models/models_0.d.ts +222 -127
- package/dist-types/ts3.4/models/models_0.d.ts +159 -127
- package/package.json +35 -35
|
@@ -14,22 +14,26 @@ export declare class InsufficientPrivilegesException extends __BaseException {
|
|
|
14
14
|
>
|
|
15
15
|
);
|
|
16
16
|
}
|
|
17
|
-
export declare
|
|
18
|
-
Completed
|
|
19
|
-
Failed
|
|
20
|
-
Unknown
|
|
21
|
-
}
|
|
22
|
-
export
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
17
|
+
export declare const ActionHistoryStatus: {
|
|
18
|
+
readonly Completed: "Completed";
|
|
19
|
+
readonly Failed: "Failed";
|
|
20
|
+
readonly Unknown: "Unknown";
|
|
21
|
+
};
|
|
22
|
+
export type ActionHistoryStatus =
|
|
23
|
+
(typeof ActionHistoryStatus)[keyof typeof ActionHistoryStatus];
|
|
24
|
+
export declare const ActionStatus: {
|
|
25
|
+
readonly Pending: "Pending";
|
|
26
|
+
readonly Running: "Running";
|
|
27
|
+
readonly Scheduled: "Scheduled";
|
|
28
|
+
readonly Unknown: "Unknown";
|
|
29
|
+
};
|
|
30
|
+
export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
|
|
31
|
+
export declare const ActionType: {
|
|
32
|
+
readonly InstanceRefresh: "InstanceRefresh";
|
|
33
|
+
readonly PlatformUpdate: "PlatformUpdate";
|
|
34
|
+
readonly Unknown: "Unknown";
|
|
35
|
+
};
|
|
36
|
+
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
33
37
|
export interface MaxAgeRule {
|
|
34
38
|
Enabled: boolean | undefined;
|
|
35
39
|
MaxAgeInDays?: number;
|
|
@@ -90,14 +94,17 @@ export interface ApplicationResourceLifecycleDescriptionMessage {
|
|
|
90
94
|
ApplicationName?: string;
|
|
91
95
|
ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig;
|
|
92
96
|
}
|
|
93
|
-
export declare
|
|
94
|
-
CodeCommit
|
|
95
|
-
S3
|
|
96
|
-
}
|
|
97
|
-
export
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
97
|
+
export declare const SourceRepository: {
|
|
98
|
+
readonly CodeCommit: "CodeCommit";
|
|
99
|
+
readonly S3: "S3";
|
|
100
|
+
};
|
|
101
|
+
export type SourceRepository =
|
|
102
|
+
(typeof SourceRepository)[keyof typeof SourceRepository];
|
|
103
|
+
export declare const SourceType: {
|
|
104
|
+
readonly Git: "Git";
|
|
105
|
+
readonly Zip: "Zip";
|
|
106
|
+
};
|
|
107
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
101
108
|
export interface SourceBuildInformation {
|
|
102
109
|
SourceType: SourceType | string | undefined;
|
|
103
110
|
SourceRepository: SourceRepository | string | undefined;
|
|
@@ -107,13 +114,15 @@ export interface S3Location {
|
|
|
107
114
|
S3Bucket?: string;
|
|
108
115
|
S3Key?: string;
|
|
109
116
|
}
|
|
110
|
-
export declare
|
|
111
|
-
Building
|
|
112
|
-
Failed
|
|
113
|
-
Processed
|
|
114
|
-
Processing
|
|
115
|
-
Unprocessed
|
|
116
|
-
}
|
|
117
|
+
export declare const ApplicationVersionStatus: {
|
|
118
|
+
readonly Building: "Building";
|
|
119
|
+
readonly Failed: "Failed";
|
|
120
|
+
readonly Processed: "Processed";
|
|
121
|
+
readonly Processing: "Processing";
|
|
122
|
+
readonly Unprocessed: "Unprocessed";
|
|
123
|
+
};
|
|
124
|
+
export type ApplicationVersionStatus =
|
|
125
|
+
(typeof ApplicationVersionStatus)[keyof typeof ApplicationVersionStatus];
|
|
117
126
|
export interface ApplicationVersionDescription {
|
|
118
127
|
ApplicationVersionArn?: string;
|
|
119
128
|
ApplicationName?: string;
|
|
@@ -191,23 +200,27 @@ export interface EnvironmentLink {
|
|
|
191
200
|
LinkName?: string;
|
|
192
201
|
EnvironmentName?: string;
|
|
193
202
|
}
|
|
194
|
-
export declare
|
|
195
|
-
Green
|
|
196
|
-
Grey
|
|
197
|
-
Red
|
|
198
|
-
Yellow
|
|
199
|
-
}
|
|
200
|
-
export
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
203
|
+
export declare const EnvironmentHealth: {
|
|
204
|
+
readonly Green: "Green";
|
|
205
|
+
readonly Grey: "Grey";
|
|
206
|
+
readonly Red: "Red";
|
|
207
|
+
readonly Yellow: "Yellow";
|
|
208
|
+
};
|
|
209
|
+
export type EnvironmentHealth =
|
|
210
|
+
(typeof EnvironmentHealth)[keyof typeof EnvironmentHealth];
|
|
211
|
+
export declare const EnvironmentHealthStatus: {
|
|
212
|
+
readonly Degraded: "Degraded";
|
|
213
|
+
readonly Info: "Info";
|
|
214
|
+
readonly NoData: "NoData";
|
|
215
|
+
readonly Ok: "Ok";
|
|
216
|
+
readonly Pending: "Pending";
|
|
217
|
+
readonly Severe: "Severe";
|
|
218
|
+
readonly Suspended: "Suspended";
|
|
219
|
+
readonly Unknown: "Unknown";
|
|
220
|
+
readonly Warning: "Warning";
|
|
221
|
+
};
|
|
222
|
+
export type EnvironmentHealthStatus =
|
|
223
|
+
(typeof EnvironmentHealthStatus)[keyof typeof EnvironmentHealthStatus];
|
|
211
224
|
export interface Listener {
|
|
212
225
|
Protocol?: string;
|
|
213
226
|
Port?: number;
|
|
@@ -220,16 +233,18 @@ export interface LoadBalancerDescription {
|
|
|
220
233
|
export interface EnvironmentResourcesDescription {
|
|
221
234
|
LoadBalancer?: LoadBalancerDescription;
|
|
222
235
|
}
|
|
223
|
-
export declare
|
|
224
|
-
Aborting
|
|
225
|
-
Launching
|
|
226
|
-
LinkingFrom
|
|
227
|
-
LinkingTo
|
|
228
|
-
Ready
|
|
229
|
-
Terminated
|
|
230
|
-
Terminating
|
|
231
|
-
Updating
|
|
232
|
-
}
|
|
236
|
+
export declare const EnvironmentStatus: {
|
|
237
|
+
readonly Aborting: "Aborting";
|
|
238
|
+
readonly Launching: "Launching";
|
|
239
|
+
readonly LinkingFrom: "LinkingFrom";
|
|
240
|
+
readonly LinkingTo: "LinkingTo";
|
|
241
|
+
readonly Ready: "Ready";
|
|
242
|
+
readonly Terminated: "Terminated";
|
|
243
|
+
readonly Terminating: "Terminating";
|
|
244
|
+
readonly Updating: "Updating";
|
|
245
|
+
};
|
|
246
|
+
export type EnvironmentStatus =
|
|
247
|
+
(typeof EnvironmentStatus)[keyof typeof EnvironmentStatus];
|
|
233
248
|
export interface EnvironmentTier {
|
|
234
249
|
Name?: string;
|
|
235
250
|
Type?: string;
|
|
@@ -296,11 +311,12 @@ export declare class CodeBuildNotInServiceRegionException extends __BaseExceptio
|
|
|
296
311
|
>
|
|
297
312
|
);
|
|
298
313
|
}
|
|
299
|
-
export declare
|
|
300
|
-
BUILD_GENERAL1_LARGE
|
|
301
|
-
BUILD_GENERAL1_MEDIUM
|
|
302
|
-
BUILD_GENERAL1_SMALL
|
|
303
|
-
}
|
|
314
|
+
export declare const ComputeType: {
|
|
315
|
+
readonly BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE";
|
|
316
|
+
readonly BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM";
|
|
317
|
+
readonly BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL";
|
|
318
|
+
};
|
|
319
|
+
export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType];
|
|
304
320
|
export interface BuildConfiguration {
|
|
305
321
|
ArtifactName?: string;
|
|
306
322
|
CodeBuildServiceRole: string | undefined;
|
|
@@ -339,11 +355,13 @@ export declare class TooManyApplicationVersionsException extends __BaseException
|
|
|
339
355
|
>
|
|
340
356
|
);
|
|
341
357
|
}
|
|
342
|
-
export declare
|
|
343
|
-
deployed
|
|
344
|
-
failed
|
|
345
|
-
pending
|
|
346
|
-
}
|
|
358
|
+
export declare const ConfigurationDeploymentStatus: {
|
|
359
|
+
readonly deployed: "deployed";
|
|
360
|
+
readonly failed: "failed";
|
|
361
|
+
readonly pending: "pending";
|
|
362
|
+
};
|
|
363
|
+
export type ConfigurationDeploymentStatus =
|
|
364
|
+
(typeof ConfigurationDeploymentStatus)[keyof typeof ConfigurationDeploymentStatus];
|
|
347
365
|
export interface ConfigurationOptionSetting {
|
|
348
366
|
ResourceName?: string;
|
|
349
367
|
Namespace?: string;
|
|
@@ -426,13 +444,15 @@ export interface CreatePlatformVersionRequest {
|
|
|
426
444
|
export interface Builder {
|
|
427
445
|
ARN?: string;
|
|
428
446
|
}
|
|
429
|
-
export declare
|
|
430
|
-
Creating
|
|
431
|
-
Deleted
|
|
432
|
-
Deleting
|
|
433
|
-
Failed
|
|
434
|
-
Ready
|
|
435
|
-
}
|
|
447
|
+
export declare const PlatformStatus: {
|
|
448
|
+
readonly Creating: "Creating";
|
|
449
|
+
readonly Deleted: "Deleted";
|
|
450
|
+
readonly Deleting: "Deleting";
|
|
451
|
+
readonly Failed: "Failed";
|
|
452
|
+
readonly Ready: "Ready";
|
|
453
|
+
};
|
|
454
|
+
export type PlatformStatus =
|
|
455
|
+
(typeof PlatformStatus)[keyof typeof PlatformStatus];
|
|
436
456
|
export interface PlatformSummary {
|
|
437
457
|
PlatformArn?: string;
|
|
438
458
|
PlatformOwner?: string;
|
|
@@ -544,10 +564,12 @@ export interface OptionRestrictionRegex {
|
|
|
544
564
|
Pattern?: string;
|
|
545
565
|
Label?: string;
|
|
546
566
|
}
|
|
547
|
-
export declare
|
|
548
|
-
List
|
|
549
|
-
Scalar
|
|
550
|
-
}
|
|
567
|
+
export declare const ConfigurationOptionValueType: {
|
|
568
|
+
readonly List: "List";
|
|
569
|
+
readonly Scalar: "Scalar";
|
|
570
|
+
};
|
|
571
|
+
export type ConfigurationOptionValueType =
|
|
572
|
+
(typeof ConfigurationOptionValueType)[keyof typeof ConfigurationOptionValueType];
|
|
551
573
|
export interface ConfigurationOptionDescription {
|
|
552
574
|
Namespace?: string;
|
|
553
575
|
Name?: string;
|
|
@@ -582,16 +604,18 @@ export interface DescribeConfigurationSettingsMessage {
|
|
|
582
604
|
TemplateName?: string;
|
|
583
605
|
EnvironmentName?: string;
|
|
584
606
|
}
|
|
585
|
-
export declare
|
|
586
|
-
All
|
|
587
|
-
ApplicationMetrics
|
|
588
|
-
Causes
|
|
589
|
-
Color
|
|
590
|
-
HealthStatus
|
|
591
|
-
InstancesHealth
|
|
592
|
-
RefreshedAt
|
|
593
|
-
Status
|
|
594
|
-
}
|
|
607
|
+
export declare const EnvironmentHealthAttribute: {
|
|
608
|
+
readonly All: "All";
|
|
609
|
+
readonly ApplicationMetrics: "ApplicationMetrics";
|
|
610
|
+
readonly Causes: "Causes";
|
|
611
|
+
readonly Color: "Color";
|
|
612
|
+
readonly HealthStatus: "HealthStatus";
|
|
613
|
+
readonly InstancesHealth: "InstancesHealth";
|
|
614
|
+
readonly RefreshedAt: "RefreshedAt";
|
|
615
|
+
readonly Status: "Status";
|
|
616
|
+
};
|
|
617
|
+
export type EnvironmentHealthAttribute =
|
|
618
|
+
(typeof EnvironmentHealthAttribute)[keyof typeof EnvironmentHealthAttribute];
|
|
595
619
|
export interface DescribeEnvironmentHealthRequest {
|
|
596
620
|
EnvironmentName?: string;
|
|
597
621
|
EnvironmentId?: string;
|
|
@@ -630,15 +654,16 @@ export interface DescribeEnvironmentManagedActionHistoryRequest {
|
|
|
630
654
|
NextToken?: string;
|
|
631
655
|
MaxItems?: number;
|
|
632
656
|
}
|
|
633
|
-
export declare
|
|
634
|
-
CancellationFailed
|
|
635
|
-
InternalFailure
|
|
636
|
-
InvalidEnvironmentState
|
|
637
|
-
PermissionsError
|
|
638
|
-
RollbackFailed
|
|
639
|
-
RollbackSuccessful
|
|
640
|
-
UpdateCancelled
|
|
641
|
-
}
|
|
657
|
+
export declare const FailureType: {
|
|
658
|
+
readonly CancellationFailed: "CancellationFailed";
|
|
659
|
+
readonly InternalFailure: "InternalFailure";
|
|
660
|
+
readonly InvalidEnvironmentState: "InvalidEnvironmentState";
|
|
661
|
+
readonly PermissionsError: "PermissionsError";
|
|
662
|
+
readonly RollbackFailed: "RollbackFailed";
|
|
663
|
+
readonly RollbackSuccessful: "RollbackSuccessful";
|
|
664
|
+
readonly UpdateCancelled: "UpdateCancelled";
|
|
665
|
+
};
|
|
666
|
+
export type FailureType = (typeof FailureType)[keyof typeof FailureType];
|
|
642
667
|
export interface ManagedActionHistoryItem {
|
|
643
668
|
ActionId?: string;
|
|
644
669
|
ActionType?: ActionType | string;
|
|
@@ -714,14 +739,15 @@ export interface DescribeEnvironmentsMessage {
|
|
|
714
739
|
MaxRecords?: number;
|
|
715
740
|
NextToken?: string;
|
|
716
741
|
}
|
|
717
|
-
export declare
|
|
718
|
-
DEBUG
|
|
719
|
-
ERROR
|
|
720
|
-
FATAL
|
|
721
|
-
INFO
|
|
722
|
-
TRACE
|
|
723
|
-
WARN
|
|
724
|
-
}
|
|
742
|
+
export declare const EventSeverity: {
|
|
743
|
+
readonly DEBUG: "DEBUG";
|
|
744
|
+
readonly ERROR: "ERROR";
|
|
745
|
+
readonly FATAL: "FATAL";
|
|
746
|
+
readonly INFO: "INFO";
|
|
747
|
+
readonly TRACE: "TRACE";
|
|
748
|
+
readonly WARN: "WARN";
|
|
749
|
+
};
|
|
750
|
+
export type EventSeverity = (typeof EventSeverity)[keyof typeof EventSeverity];
|
|
725
751
|
export interface DescribeEventsMessage {
|
|
726
752
|
ApplicationName?: string;
|
|
727
753
|
VersionLabel?: string;
|
|
@@ -751,19 +777,21 @@ export interface EventDescriptionsMessage {
|
|
|
751
777
|
Events?: EventDescription[];
|
|
752
778
|
NextToken?: string;
|
|
753
779
|
}
|
|
754
|
-
export declare
|
|
755
|
-
All
|
|
756
|
-
ApplicationMetrics
|
|
757
|
-
AvailabilityZone
|
|
758
|
-
Causes
|
|
759
|
-
Color
|
|
760
|
-
Deployment
|
|
761
|
-
HealthStatus
|
|
762
|
-
InstanceType
|
|
763
|
-
LaunchedAt
|
|
764
|
-
RefreshedAt
|
|
765
|
-
System
|
|
766
|
-
}
|
|
780
|
+
export declare const InstancesHealthAttribute: {
|
|
781
|
+
readonly All: "All";
|
|
782
|
+
readonly ApplicationMetrics: "ApplicationMetrics";
|
|
783
|
+
readonly AvailabilityZone: "AvailabilityZone";
|
|
784
|
+
readonly Causes: "Causes";
|
|
785
|
+
readonly Color: "Color";
|
|
786
|
+
readonly Deployment: "Deployment";
|
|
787
|
+
readonly HealthStatus: "HealthStatus";
|
|
788
|
+
readonly InstanceType: "InstanceType";
|
|
789
|
+
readonly LaunchedAt: "LaunchedAt";
|
|
790
|
+
readonly RefreshedAt: "RefreshedAt";
|
|
791
|
+
readonly System: "System";
|
|
792
|
+
};
|
|
793
|
+
export type InstancesHealthAttribute =
|
|
794
|
+
(typeof InstancesHealthAttribute)[keyof typeof InstancesHealthAttribute];
|
|
767
795
|
export interface DescribeInstancesHealthRequest {
|
|
768
796
|
EnvironmentName?: string;
|
|
769
797
|
EnvironmentId?: string;
|
|
@@ -918,10 +946,12 @@ export interface RebuildEnvironmentMessage {
|
|
|
918
946
|
EnvironmentId?: string;
|
|
919
947
|
EnvironmentName?: string;
|
|
920
948
|
}
|
|
921
|
-
export declare
|
|
922
|
-
bundle
|
|
923
|
-
tail
|
|
924
|
-
}
|
|
949
|
+
export declare const EnvironmentInfoType: {
|
|
950
|
+
readonly bundle: "bundle";
|
|
951
|
+
readonly tail: "tail";
|
|
952
|
+
};
|
|
953
|
+
export type EnvironmentInfoType =
|
|
954
|
+
(typeof EnvironmentInfoType)[keyof typeof EnvironmentInfoType];
|
|
925
955
|
export interface RequestEnvironmentInfoMessage {
|
|
926
956
|
EnvironmentId?: string;
|
|
927
957
|
EnvironmentName?: string;
|
|
@@ -1003,10 +1033,12 @@ export interface UpdateTagsForResourceMessage {
|
|
|
1003
1033
|
TagsToAdd?: Tag[];
|
|
1004
1034
|
TagsToRemove?: string[];
|
|
1005
1035
|
}
|
|
1006
|
-
export declare
|
|
1007
|
-
error
|
|
1008
|
-
warning
|
|
1009
|
-
}
|
|
1036
|
+
export declare const ValidationSeverity: {
|
|
1037
|
+
readonly error: "error";
|
|
1038
|
+
readonly warning: "warning";
|
|
1039
|
+
};
|
|
1040
|
+
export type ValidationSeverity =
|
|
1041
|
+
(typeof ValidationSeverity)[keyof typeof ValidationSeverity];
|
|
1010
1042
|
export interface ValidationMessage {
|
|
1011
1043
|
Message?: string;
|
|
1012
1044
|
Severity?: ValidationSeverity | string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elastic-beanstalk",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elastic Beanstalk Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.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",
|
|
@@ -21,44 +21,44 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
56
|
-
"@aws-sdk/util-waiter": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
|
+
"@aws-sdk/util-waiter": "3.303.0",
|
|
57
57
|
"fast-xml-parser": "4.1.2",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
61
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
62
62
|
"@tsconfig/node14": "1.0.3",
|
|
63
63
|
"@types/node": "^14.14.31",
|
|
64
64
|
"concurrently": "7.0.0",
|