@aws-sdk/client-resiliencehub 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 +142 -168
- package/dist-es/models/models_0.js +142 -168
- package/dist-types/models/models_0.d.ts +272 -142
- package/dist-types/ts3.4/models/models_0.d.ts +189 -142
- package/package.json +34 -34
|
@@ -7,18 +7,22 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
7
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
8
|
);
|
|
9
9
|
}
|
|
10
|
-
export declare
|
|
11
|
-
APP_REGISTRY_APP
|
|
12
|
-
CFN_STACK
|
|
13
|
-
EKS
|
|
14
|
-
RESOURCE
|
|
15
|
-
RESOURCE_GROUP
|
|
16
|
-
TERRAFORM
|
|
17
|
-
}
|
|
18
|
-
export
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
10
|
+
export declare const ResourceMappingType: {
|
|
11
|
+
readonly APP_REGISTRY_APP: "AppRegistryApp";
|
|
12
|
+
readonly CFN_STACK: "CfnStack";
|
|
13
|
+
readonly EKS: "EKS";
|
|
14
|
+
readonly RESOURCE: "Resource";
|
|
15
|
+
readonly RESOURCE_GROUP: "ResourceGroup";
|
|
16
|
+
readonly TERRAFORM: "Terraform";
|
|
17
|
+
};
|
|
18
|
+
export type ResourceMappingType =
|
|
19
|
+
(typeof ResourceMappingType)[keyof typeof ResourceMappingType];
|
|
20
|
+
export declare const PhysicalIdentifierType: {
|
|
21
|
+
readonly ARN: "Arn";
|
|
22
|
+
readonly NATIVE: "Native";
|
|
23
|
+
};
|
|
24
|
+
export type PhysicalIdentifierType =
|
|
25
|
+
(typeof PhysicalIdentifierType)[keyof typeof PhysicalIdentifierType];
|
|
22
26
|
export interface PhysicalResourceId {
|
|
23
27
|
identifier: string | undefined;
|
|
24
28
|
type: PhysicalIdentifierType | string | undefined;
|
|
@@ -88,13 +92,14 @@ export interface RecommendationItem {
|
|
|
88
92
|
targetRegion?: string;
|
|
89
93
|
alreadyImplemented?: boolean;
|
|
90
94
|
}
|
|
91
|
-
export declare
|
|
92
|
-
CANARY
|
|
93
|
-
COMPOSITE
|
|
94
|
-
EVENT
|
|
95
|
-
LOGS
|
|
96
|
-
METRIC
|
|
97
|
-
}
|
|
95
|
+
export declare const AlarmType: {
|
|
96
|
+
readonly CANARY: "Canary";
|
|
97
|
+
readonly COMPOSITE: "Composite";
|
|
98
|
+
readonly EVENT: "Event";
|
|
99
|
+
readonly LOGS: "Logs";
|
|
100
|
+
readonly METRIC: "Metric";
|
|
101
|
+
};
|
|
102
|
+
export type AlarmType = (typeof AlarmType)[keyof typeof AlarmType];
|
|
98
103
|
export interface AlarmRecommendation {
|
|
99
104
|
recommendationId: string | undefined;
|
|
100
105
|
referenceId: string | undefined;
|
|
@@ -105,20 +110,25 @@ export interface AlarmRecommendation {
|
|
|
105
110
|
items?: RecommendationItem[];
|
|
106
111
|
prerequisite?: string;
|
|
107
112
|
}
|
|
108
|
-
export declare
|
|
109
|
-
DAILY
|
|
110
|
-
DISABLED
|
|
111
|
-
}
|
|
112
|
-
export
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
113
|
+
export declare const AppAssessmentScheduleType: {
|
|
114
|
+
readonly DAILY: "Daily";
|
|
115
|
+
readonly DISABLED: "Disabled";
|
|
116
|
+
};
|
|
117
|
+
export type AppAssessmentScheduleType =
|
|
118
|
+
(typeof AppAssessmentScheduleType)[keyof typeof AppAssessmentScheduleType];
|
|
119
|
+
export declare const AppComplianceStatusType: {
|
|
120
|
+
readonly CHANGES_DETECTED: "ChangesDetected";
|
|
121
|
+
readonly NOT_ASSESSED: "NotAssessed";
|
|
122
|
+
readonly POLICY_BREACHED: "PolicyBreached";
|
|
123
|
+
readonly POLICY_MET: "PolicyMet";
|
|
124
|
+
};
|
|
125
|
+
export type AppComplianceStatusType =
|
|
126
|
+
(typeof AppComplianceStatusType)[keyof typeof AppComplianceStatusType];
|
|
127
|
+
export declare const AppStatusType: {
|
|
128
|
+
readonly ACTIVE: "Active";
|
|
129
|
+
readonly DELETING: "Deleting";
|
|
130
|
+
};
|
|
131
|
+
export type AppStatusType = (typeof AppStatusType)[keyof typeof AppStatusType];
|
|
122
132
|
export interface App {
|
|
123
133
|
appArn: string | undefined;
|
|
124
134
|
name: string | undefined;
|
|
@@ -133,22 +143,28 @@ export interface App {
|
|
|
133
143
|
tags?: Record<string, string>;
|
|
134
144
|
assessmentSchedule?: AppAssessmentScheduleType | string;
|
|
135
145
|
}
|
|
136
|
-
export declare
|
|
137
|
-
FAILED
|
|
138
|
-
INPROGRESS
|
|
139
|
-
PENDING
|
|
140
|
-
SUCCESS
|
|
141
|
-
}
|
|
142
|
-
export
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
146
|
+
export declare const AssessmentStatus: {
|
|
147
|
+
readonly FAILED: "Failed";
|
|
148
|
+
readonly INPROGRESS: "InProgress";
|
|
149
|
+
readonly PENDING: "Pending";
|
|
150
|
+
readonly SUCCESS: "Success";
|
|
151
|
+
};
|
|
152
|
+
export type AssessmentStatus =
|
|
153
|
+
(typeof AssessmentStatus)[keyof typeof AssessmentStatus];
|
|
154
|
+
export declare const DisruptionType: {
|
|
155
|
+
readonly AZ: "AZ";
|
|
156
|
+
readonly HARDWARE: "Hardware";
|
|
157
|
+
readonly REGION: "Region";
|
|
158
|
+
readonly SOFTWARE: "Software";
|
|
159
|
+
};
|
|
160
|
+
export type DisruptionType =
|
|
161
|
+
(typeof DisruptionType)[keyof typeof DisruptionType];
|
|
162
|
+
export declare const ComplianceStatus: {
|
|
163
|
+
readonly POLICY_BREACHED: "PolicyBreached";
|
|
164
|
+
readonly POLICY_MET: "PolicyMet";
|
|
165
|
+
};
|
|
166
|
+
export type ComplianceStatus =
|
|
167
|
+
(typeof ComplianceStatus)[keyof typeof ComplianceStatus];
|
|
152
168
|
export interface DisruptionCompliance {
|
|
153
169
|
achievableRtoInSecs?: number;
|
|
154
170
|
currentRtoInSecs?: number;
|
|
@@ -161,43 +177,52 @@ export interface DisruptionCompliance {
|
|
|
161
177
|
achievableRpoInSecs?: number;
|
|
162
178
|
message?: string;
|
|
163
179
|
}
|
|
164
|
-
export declare
|
|
165
|
-
DAILY
|
|
166
|
-
HOURLY
|
|
167
|
-
MONTHLY
|
|
168
|
-
YEARLY
|
|
169
|
-
}
|
|
180
|
+
export declare const CostFrequency: {
|
|
181
|
+
readonly DAILY: "Daily";
|
|
182
|
+
readonly HOURLY: "Hourly";
|
|
183
|
+
readonly MONTHLY: "Monthly";
|
|
184
|
+
readonly YEARLY: "Yearly";
|
|
185
|
+
};
|
|
186
|
+
export type CostFrequency = (typeof CostFrequency)[keyof typeof CostFrequency];
|
|
170
187
|
export interface Cost {
|
|
171
188
|
amount: number | undefined;
|
|
172
189
|
currency: string | undefined;
|
|
173
190
|
frequency: CostFrequency | string | undefined;
|
|
174
191
|
}
|
|
175
|
-
export declare
|
|
176
|
-
SYSTEM
|
|
177
|
-
USER
|
|
178
|
-
}
|
|
179
|
-
export
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
192
|
+
export declare const AssessmentInvoker: {
|
|
193
|
+
readonly SYSTEM: "System";
|
|
194
|
+
readonly USER: "User";
|
|
195
|
+
};
|
|
196
|
+
export type AssessmentInvoker =
|
|
197
|
+
(typeof AssessmentInvoker)[keyof typeof AssessmentInvoker];
|
|
198
|
+
export declare const DataLocationConstraint: {
|
|
199
|
+
readonly ANY_LOCATION: "AnyLocation";
|
|
200
|
+
readonly SAME_CONTINENT: "SameContinent";
|
|
201
|
+
readonly SAME_COUNTRY: "SameCountry";
|
|
202
|
+
};
|
|
203
|
+
export type DataLocationConstraint =
|
|
204
|
+
(typeof DataLocationConstraint)[keyof typeof DataLocationConstraint];
|
|
205
|
+
export declare const EstimatedCostTier: {
|
|
206
|
+
readonly L1: "L1";
|
|
207
|
+
readonly L2: "L2";
|
|
208
|
+
readonly L3: "L3";
|
|
209
|
+
readonly L4: "L4";
|
|
210
|
+
};
|
|
211
|
+
export type EstimatedCostTier =
|
|
212
|
+
(typeof EstimatedCostTier)[keyof typeof EstimatedCostTier];
|
|
190
213
|
export interface FailurePolicy {
|
|
191
214
|
rtoInSecs: number | undefined;
|
|
192
215
|
rpoInSecs: number | undefined;
|
|
193
216
|
}
|
|
194
|
-
export declare
|
|
195
|
-
CORE_SERVICES
|
|
196
|
-
CRITICAL
|
|
197
|
-
IMPORTANT
|
|
198
|
-
MISSION_CRITICAL
|
|
199
|
-
NON_CRITICAL
|
|
200
|
-
}
|
|
217
|
+
export declare const ResiliencyPolicyTier: {
|
|
218
|
+
readonly CORE_SERVICES: "CoreServices";
|
|
219
|
+
readonly CRITICAL: "Critical";
|
|
220
|
+
readonly IMPORTANT: "Important";
|
|
221
|
+
readonly MISSION_CRITICAL: "MissionCritical";
|
|
222
|
+
readonly NON_CRITICAL: "NonCritical";
|
|
223
|
+
};
|
|
224
|
+
export type ResiliencyPolicyTier =
|
|
225
|
+
(typeof ResiliencyPolicyTier)[keyof typeof ResiliencyPolicyTier];
|
|
201
226
|
export interface ResiliencyPolicy {
|
|
202
227
|
policyArn?: string;
|
|
203
228
|
policyName?: string;
|
|
@@ -360,15 +385,19 @@ export interface CreateAppVersionResourceResponse {
|
|
|
360
385
|
appVersion: string | undefined;
|
|
361
386
|
physicalResource?: PhysicalResource;
|
|
362
387
|
}
|
|
363
|
-
export declare
|
|
364
|
-
CFN_JSON
|
|
365
|
-
CFN_YAML
|
|
366
|
-
}
|
|
367
|
-
export
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
388
|
+
export declare const TemplateFormat: {
|
|
389
|
+
readonly CFN_JSON: "CfnJson";
|
|
390
|
+
readonly CFN_YAML: "CfnYaml";
|
|
391
|
+
};
|
|
392
|
+
export type TemplateFormat =
|
|
393
|
+
(typeof TemplateFormat)[keyof typeof TemplateFormat];
|
|
394
|
+
export declare const RenderRecommendationType: {
|
|
395
|
+
readonly ALARM: "Alarm";
|
|
396
|
+
readonly SOP: "Sop";
|
|
397
|
+
readonly TEST: "Test";
|
|
398
|
+
};
|
|
399
|
+
export type RenderRecommendationType =
|
|
400
|
+
(typeof RenderRecommendationType)[keyof typeof RenderRecommendationType];
|
|
372
401
|
export interface CreateRecommendationTemplateRequest {
|
|
373
402
|
recommendationIds?: string[];
|
|
374
403
|
format?: TemplateFormat | string;
|
|
@@ -379,12 +408,14 @@ export interface CreateRecommendationTemplateRequest {
|
|
|
379
408
|
tags?: Record<string, string>;
|
|
380
409
|
bucketName?: string;
|
|
381
410
|
}
|
|
382
|
-
export declare
|
|
383
|
-
FAILED
|
|
384
|
-
IN_PROGRESS
|
|
385
|
-
PENDING
|
|
386
|
-
SUCCESS
|
|
387
|
-
}
|
|
411
|
+
export declare const RecommendationTemplateStatus: {
|
|
412
|
+
readonly FAILED: "Failed";
|
|
413
|
+
readonly IN_PROGRESS: "InProgress";
|
|
414
|
+
readonly PENDING: "Pending";
|
|
415
|
+
readonly SUCCESS: "Success";
|
|
416
|
+
};
|
|
417
|
+
export type RecommendationTemplateStatus =
|
|
418
|
+
(typeof RecommendationTemplateStatus)[keyof typeof RecommendationTemplateStatus];
|
|
388
419
|
export interface S3Location {
|
|
389
420
|
bucket?: string;
|
|
390
421
|
prefix?: string;
|
|
@@ -536,12 +567,14 @@ export interface DescribeAppVersionResourcesResolutionStatusRequest {
|
|
|
536
567
|
appVersion: string | undefined;
|
|
537
568
|
resolutionId?: string;
|
|
538
569
|
}
|
|
539
|
-
export declare
|
|
540
|
-
FAILED
|
|
541
|
-
IN_PROGRESS
|
|
542
|
-
PENDING
|
|
543
|
-
SUCCESS
|
|
544
|
-
}
|
|
570
|
+
export declare const ResourceResolutionStatusType: {
|
|
571
|
+
readonly FAILED: "Failed";
|
|
572
|
+
readonly IN_PROGRESS: "InProgress";
|
|
573
|
+
readonly PENDING: "Pending";
|
|
574
|
+
readonly SUCCESS: "Success";
|
|
575
|
+
};
|
|
576
|
+
export type ResourceResolutionStatusType =
|
|
577
|
+
(typeof ResourceResolutionStatusType)[keyof typeof ResourceResolutionStatusType];
|
|
545
578
|
export interface DescribeAppVersionResourcesResolutionStatusResponse {
|
|
546
579
|
appArn: string | undefined;
|
|
547
580
|
appVersion: string | undefined;
|
|
@@ -561,12 +594,14 @@ export interface DescribeAppVersionTemplateResponse {
|
|
|
561
594
|
export interface DescribeDraftAppVersionResourcesImportStatusRequest {
|
|
562
595
|
appArn: string | undefined;
|
|
563
596
|
}
|
|
564
|
-
export declare
|
|
565
|
-
FAILED
|
|
566
|
-
IN_PROGRESS
|
|
567
|
-
PENDING
|
|
568
|
-
SUCCESS
|
|
569
|
-
}
|
|
597
|
+
export declare const ResourceImportStatusType: {
|
|
598
|
+
readonly FAILED: "Failed";
|
|
599
|
+
readonly IN_PROGRESS: "InProgress";
|
|
600
|
+
readonly PENDING: "Pending";
|
|
601
|
+
readonly SUCCESS: "Success";
|
|
602
|
+
};
|
|
603
|
+
export type ResourceImportStatusType =
|
|
604
|
+
(typeof ResourceImportStatusType)[keyof typeof ResourceImportStatusType];
|
|
570
605
|
export interface DescribeDraftAppVersionResourcesImportStatusResponse {
|
|
571
606
|
appArn: string | undefined;
|
|
572
607
|
appVersion: string | undefined;
|
|
@@ -584,10 +619,12 @@ export interface EksSource {
|
|
|
584
619
|
eksClusterArn: string | undefined;
|
|
585
620
|
namespaces: string[] | undefined;
|
|
586
621
|
}
|
|
587
|
-
export declare
|
|
588
|
-
ADD_ONLY
|
|
589
|
-
REPLACE_ALL
|
|
590
|
-
}
|
|
622
|
+
export declare const ResourceImportStrategyType: {
|
|
623
|
+
readonly ADD_ONLY: "AddOnly";
|
|
624
|
+
readonly REPLACE_ALL: "ReplaceAll";
|
|
625
|
+
};
|
|
626
|
+
export type ResourceImportStrategyType =
|
|
627
|
+
(typeof ResourceImportStrategyType)[keyof typeof ResourceImportStrategyType];
|
|
591
628
|
export interface ImportResourcesToDraftAppVersionRequest {
|
|
592
629
|
appArn: string | undefined;
|
|
593
630
|
sourceArns?: string[];
|
|
@@ -640,21 +677,25 @@ export interface ListAppComponentRecommendationsRequest {
|
|
|
640
677
|
nextToken?: string;
|
|
641
678
|
maxResults?: number;
|
|
642
679
|
}
|
|
643
|
-
export declare
|
|
644
|
-
BACKUP_AND_RESTORE
|
|
645
|
-
MULTI_SITE
|
|
646
|
-
NO_RECOVERY_PLAN
|
|
647
|
-
PILOT_LIGHT
|
|
648
|
-
WARM_STANDBY
|
|
649
|
-
}
|
|
650
|
-
export
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
680
|
+
export declare const HaArchitecture: {
|
|
681
|
+
readonly BACKUP_AND_RESTORE: "BackupAndRestore";
|
|
682
|
+
readonly MULTI_SITE: "MultiSite";
|
|
683
|
+
readonly NO_RECOVERY_PLAN: "NoRecoveryPlan";
|
|
684
|
+
readonly PILOT_LIGHT: "PilotLight";
|
|
685
|
+
readonly WARM_STANDBY: "WarmStandby";
|
|
686
|
+
};
|
|
687
|
+
export type HaArchitecture =
|
|
688
|
+
(typeof HaArchitecture)[keyof typeof HaArchitecture];
|
|
689
|
+
export declare const ConfigRecommendationOptimizationType: {
|
|
690
|
+
readonly BEST_ATTAINABLE: "BestAttainable";
|
|
691
|
+
readonly BEST_AZ_RECOVERY: "BestAZRecovery";
|
|
692
|
+
readonly BEST_REGION_RECOVERY: "BestRegionRecovery";
|
|
693
|
+
readonly LEAST_CHANGE: "LeastChange";
|
|
694
|
+
readonly LEAST_COST: "LeastCost";
|
|
695
|
+
readonly LEAST_ERRORS: "LeastErrors";
|
|
696
|
+
};
|
|
697
|
+
export type ConfigRecommendationOptimizationType =
|
|
698
|
+
(typeof ConfigRecommendationOptimizationType)[keyof typeof ConfigRecommendationOptimizationType];
|
|
658
699
|
export interface RecommendationDisruptionCompliance {
|
|
659
700
|
expectedComplianceStatus: ComplianceStatus | string | undefined;
|
|
660
701
|
expectedRtoInSecs?: number;
|
|
@@ -674,11 +715,13 @@ export interface ConfigRecommendation {
|
|
|
674
715
|
haArchitecture?: HaArchitecture | string;
|
|
675
716
|
referenceId: string | undefined;
|
|
676
717
|
}
|
|
677
|
-
export declare
|
|
678
|
-
BREACHED_CAN_MEET
|
|
679
|
-
BREACHED_UNATTAINABLE
|
|
680
|
-
MET_CAN_IMPROVE
|
|
681
|
-
}
|
|
718
|
+
export declare const RecommendationComplianceStatus: {
|
|
719
|
+
readonly BREACHED_CAN_MEET: "BreachedCanMeet";
|
|
720
|
+
readonly BREACHED_UNATTAINABLE: "BreachedUnattainable";
|
|
721
|
+
readonly MET_CAN_IMPROVE: "MetCanImprove";
|
|
722
|
+
};
|
|
723
|
+
export type RecommendationComplianceStatus =
|
|
724
|
+
(typeof RecommendationComplianceStatus)[keyof typeof RecommendationComplianceStatus];
|
|
682
725
|
export interface ComponentRecommendation {
|
|
683
726
|
appComponentName: string | undefined;
|
|
684
727
|
recommendationStatus: RecommendationComplianceStatus | string | undefined;
|
|
@@ -778,9 +821,11 @@ export interface ListSopRecommendationsRequest {
|
|
|
778
821
|
maxResults?: number;
|
|
779
822
|
assessmentArn: string | undefined;
|
|
780
823
|
}
|
|
781
|
-
export declare
|
|
782
|
-
SSM
|
|
783
|
-
}
|
|
824
|
+
export declare const SopServiceType: {
|
|
825
|
+
readonly SSM: "SSM";
|
|
826
|
+
};
|
|
827
|
+
export type SopServiceType =
|
|
828
|
+
(typeof SopServiceType)[keyof typeof SopServiceType];
|
|
784
829
|
export interface SopRecommendation {
|
|
785
830
|
serviceType: SopServiceType | string | undefined;
|
|
786
831
|
appComponentName?: string;
|
|
@@ -814,17 +859,19 @@ export interface ListTestRecommendationsRequest {
|
|
|
814
859
|
maxResults?: number;
|
|
815
860
|
assessmentArn: string | undefined;
|
|
816
861
|
}
|
|
817
|
-
export declare
|
|
818
|
-
HIGH
|
|
819
|
-
MEDIUM
|
|
820
|
-
SMALL
|
|
821
|
-
}
|
|
822
|
-
export
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
862
|
+
export declare const TestRisk: {
|
|
863
|
+
readonly HIGH: "High";
|
|
864
|
+
readonly MEDIUM: "Medium";
|
|
865
|
+
readonly SMALL: "Small";
|
|
866
|
+
};
|
|
867
|
+
export type TestRisk = (typeof TestRisk)[keyof typeof TestRisk];
|
|
868
|
+
export declare const TestType: {
|
|
869
|
+
readonly AZ: "AZ";
|
|
870
|
+
readonly HARDWARE: "Hardware";
|
|
871
|
+
readonly REGION: "Region";
|
|
872
|
+
readonly SOFTWARE: "Software";
|
|
873
|
+
};
|
|
874
|
+
export type TestType = (typeof TestType)[keyof typeof TestType];
|
|
828
875
|
export interface TestRecommendation {
|
|
829
876
|
recommendationId?: string;
|
|
830
877
|
referenceId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-resiliencehub",
|
|
3
3
|
"description": "AWS SDK for JavaScript Resiliencehub 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,43 +21,43 @@
|
|
|
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.
|
|
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
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|