@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.
@@ -7,18 +7,22 @@ export declare class AccessDeniedException extends __BaseException {
7
7
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
8
  );
9
9
  }
10
- export declare enum ResourceMappingType {
11
- APP_REGISTRY_APP = "AppRegistryApp",
12
- CFN_STACK = "CfnStack",
13
- EKS = "EKS",
14
- RESOURCE = "Resource",
15
- RESOURCE_GROUP = "ResourceGroup",
16
- TERRAFORM = "Terraform",
17
- }
18
- export declare enum PhysicalIdentifierType {
19
- ARN = "Arn",
20
- NATIVE = "Native",
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 enum AlarmType {
92
- CANARY = "Canary",
93
- COMPOSITE = "Composite",
94
- EVENT = "Event",
95
- LOGS = "Logs",
96
- METRIC = "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 enum AppAssessmentScheduleType {
109
- DAILY = "Daily",
110
- DISABLED = "Disabled",
111
- }
112
- export declare enum AppComplianceStatusType {
113
- CHANGES_DETECTED = "ChangesDetected",
114
- NOT_ASSESSED = "NotAssessed",
115
- POLICY_BREACHED = "PolicyBreached",
116
- POLICY_MET = "PolicyMet",
117
- }
118
- export declare enum AppStatusType {
119
- ACTIVE = "Active",
120
- DELETING = "Deleting",
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 enum AssessmentStatus {
137
- FAILED = "Failed",
138
- INPROGRESS = "InProgress",
139
- PENDING = "Pending",
140
- SUCCESS = "Success",
141
- }
142
- export declare enum DisruptionType {
143
- AZ = "AZ",
144
- HARDWARE = "Hardware",
145
- REGION = "Region",
146
- SOFTWARE = "Software",
147
- }
148
- export declare enum ComplianceStatus {
149
- POLICY_BREACHED = "PolicyBreached",
150
- POLICY_MET = "PolicyMet",
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 enum CostFrequency {
165
- DAILY = "Daily",
166
- HOURLY = "Hourly",
167
- MONTHLY = "Monthly",
168
- YEARLY = "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 enum AssessmentInvoker {
176
- SYSTEM = "System",
177
- USER = "User",
178
- }
179
- export declare enum DataLocationConstraint {
180
- ANY_LOCATION = "AnyLocation",
181
- SAME_CONTINENT = "SameContinent",
182
- SAME_COUNTRY = "SameCountry",
183
- }
184
- export declare enum EstimatedCostTier {
185
- L1 = "L1",
186
- L2 = "L2",
187
- L3 = "L3",
188
- L4 = "L4",
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 enum ResiliencyPolicyTier {
195
- CORE_SERVICES = "CoreServices",
196
- CRITICAL = "Critical",
197
- IMPORTANT = "Important",
198
- MISSION_CRITICAL = "MissionCritical",
199
- NON_CRITICAL = "NonCritical",
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 enum TemplateFormat {
364
- CFN_JSON = "CfnJson",
365
- CFN_YAML = "CfnYaml",
366
- }
367
- export declare enum RenderRecommendationType {
368
- ALARM = "Alarm",
369
- SOP = "Sop",
370
- TEST = "Test",
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 enum RecommendationTemplateStatus {
383
- FAILED = "Failed",
384
- IN_PROGRESS = "InProgress",
385
- PENDING = "Pending",
386
- SUCCESS = "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 enum ResourceResolutionStatusType {
540
- FAILED = "Failed",
541
- IN_PROGRESS = "InProgress",
542
- PENDING = "Pending",
543
- SUCCESS = "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 enum ResourceImportStatusType {
565
- FAILED = "Failed",
566
- IN_PROGRESS = "InProgress",
567
- PENDING = "Pending",
568
- SUCCESS = "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 enum ResourceImportStrategyType {
588
- ADD_ONLY = "AddOnly",
589
- REPLACE_ALL = "ReplaceAll",
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 enum HaArchitecture {
644
- BACKUP_AND_RESTORE = "BackupAndRestore",
645
- MULTI_SITE = "MultiSite",
646
- NO_RECOVERY_PLAN = "NoRecoveryPlan",
647
- PILOT_LIGHT = "PilotLight",
648
- WARM_STANDBY = "WarmStandby",
649
- }
650
- export declare enum ConfigRecommendationOptimizationType {
651
- BEST_ATTAINABLE = "BestAttainable",
652
- BEST_AZ_RECOVERY = "BestAZRecovery",
653
- BEST_REGION_RECOVERY = "BestRegionRecovery",
654
- LEAST_CHANGE = "LeastChange",
655
- LEAST_COST = "LeastCost",
656
- LEAST_ERRORS = "LeastErrors",
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 enum RecommendationComplianceStatus {
678
- BREACHED_CAN_MEET = "BreachedCanMeet",
679
- BREACHED_UNATTAINABLE = "BreachedUnattainable",
680
- MET_CAN_IMPROVE = "MetCanImprove",
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 enum SopServiceType {
782
- SSM = "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 enum TestRisk {
818
- HIGH = "High",
819
- MEDIUM = "Medium",
820
- SMALL = "Small",
821
- }
822
- export declare enum TestType {
823
- AZ = "AZ",
824
- HARDWARE = "Hardware",
825
- REGION = "Region",
826
- SOFTWARE = "Software",
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.301.0",
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.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
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.295.0",
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",