@aws-sdk/client-budgets 3.301.0 → 3.306.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.
@@ -17,90 +17,77 @@ class AccessDeniedException extends BudgetsServiceException_1.BudgetsServiceExce
17
17
  }
18
18
  }
19
19
  exports.AccessDeniedException = AccessDeniedException;
20
- var ThresholdType;
21
- (function (ThresholdType) {
22
- ThresholdType["ABSOLUTE_VALUE"] = "ABSOLUTE_VALUE";
23
- ThresholdType["PERCENTAGE"] = "PERCENTAGE";
24
- })(ThresholdType = exports.ThresholdType || (exports.ThresholdType = {}));
25
- var ActionType;
26
- (function (ActionType) {
27
- ActionType["IAM"] = "APPLY_IAM_POLICY";
28
- ActionType["SCP"] = "APPLY_SCP_POLICY";
29
- ActionType["SSM"] = "RUN_SSM_DOCUMENTS";
30
- })(ActionType = exports.ActionType || (exports.ActionType = {}));
31
- var ApprovalModel;
32
- (function (ApprovalModel) {
33
- ApprovalModel["AUTO"] = "AUTOMATIC";
34
- ApprovalModel["MANUAL"] = "MANUAL";
35
- })(ApprovalModel = exports.ApprovalModel || (exports.ApprovalModel = {}));
36
- var ActionSubType;
37
- (function (ActionSubType) {
38
- ActionSubType["STOP_EC2"] = "STOP_EC2_INSTANCES";
39
- ActionSubType["STOP_RDS"] = "STOP_RDS_INSTANCES";
40
- })(ActionSubType = exports.ActionSubType || (exports.ActionSubType = {}));
41
- var NotificationType;
42
- (function (NotificationType) {
43
- NotificationType["ACTUAL"] = "ACTUAL";
44
- NotificationType["FORECASTED"] = "FORECASTED";
45
- })(NotificationType = exports.NotificationType || (exports.NotificationType = {}));
46
- var ActionStatus;
47
- (function (ActionStatus) {
48
- ActionStatus["Execution_Failure"] = "EXECUTION_FAILURE";
49
- ActionStatus["Execution_In_Progress"] = "EXECUTION_IN_PROGRESS";
50
- ActionStatus["Execution_Success"] = "EXECUTION_SUCCESS";
51
- ActionStatus["Pending"] = "PENDING";
52
- ActionStatus["Reset_Failure"] = "RESET_FAILURE";
53
- ActionStatus["Reset_In_Progress"] = "RESET_IN_PROGRESS";
54
- ActionStatus["Reverse_Failure"] = "REVERSE_FAILURE";
55
- ActionStatus["Reverse_In_Progress"] = "REVERSE_IN_PROGRESS";
56
- ActionStatus["Reverse_Success"] = "REVERSE_SUCCESS";
57
- ActionStatus["Standby"] = "STANDBY";
58
- })(ActionStatus = exports.ActionStatus || (exports.ActionStatus = {}));
59
- var SubscriptionType;
60
- (function (SubscriptionType) {
61
- SubscriptionType["EMAIL"] = "EMAIL";
62
- SubscriptionType["SNS"] = "SNS";
63
- })(SubscriptionType = exports.SubscriptionType || (exports.SubscriptionType = {}));
64
- var EventType;
65
- (function (EventType) {
66
- EventType["CreateAction"] = "CREATE_ACTION";
67
- EventType["DeleteAction"] = "DELETE_ACTION";
68
- EventType["ExecuteAction"] = "EXECUTE_ACTION";
69
- EventType["System"] = "SYSTEM";
70
- EventType["UpdateAction"] = "UPDATE_ACTION";
71
- })(EventType = exports.EventType || (exports.EventType = {}));
72
- var AutoAdjustType;
73
- (function (AutoAdjustType) {
74
- AutoAdjustType["FORECAST"] = "FORECAST";
75
- AutoAdjustType["HISTORICAL"] = "HISTORICAL";
76
- })(AutoAdjustType = exports.AutoAdjustType || (exports.AutoAdjustType = {}));
77
- var BudgetType;
78
- (function (BudgetType) {
79
- BudgetType["Cost"] = "COST";
80
- BudgetType["RICoverage"] = "RI_COVERAGE";
81
- BudgetType["RIUtilization"] = "RI_UTILIZATION";
82
- BudgetType["SPCoverage"] = "SAVINGS_PLANS_COVERAGE";
83
- BudgetType["SPUtilization"] = "SAVINGS_PLANS_UTILIZATION";
84
- BudgetType["Usage"] = "USAGE";
85
- })(BudgetType = exports.BudgetType || (exports.BudgetType = {}));
86
- var TimeUnit;
87
- (function (TimeUnit) {
88
- TimeUnit["ANNUALLY"] = "ANNUALLY";
89
- TimeUnit["DAILY"] = "DAILY";
90
- TimeUnit["MONTHLY"] = "MONTHLY";
91
- TimeUnit["QUARTERLY"] = "QUARTERLY";
92
- })(TimeUnit = exports.TimeUnit || (exports.TimeUnit = {}));
93
- var ComparisonOperator;
94
- (function (ComparisonOperator) {
95
- ComparisonOperator["EQUAL_TO"] = "EQUAL_TO";
96
- ComparisonOperator["GREATER_THAN"] = "GREATER_THAN";
97
- ComparisonOperator["LESS_THAN"] = "LESS_THAN";
98
- })(ComparisonOperator = exports.ComparisonOperator || (exports.ComparisonOperator = {}));
99
- var NotificationState;
100
- (function (NotificationState) {
101
- NotificationState["ALARM"] = "ALARM";
102
- NotificationState["OK"] = "OK";
103
- })(NotificationState = exports.NotificationState || (exports.NotificationState = {}));
20
+ exports.ThresholdType = {
21
+ ABSOLUTE_VALUE: "ABSOLUTE_VALUE",
22
+ PERCENTAGE: "PERCENTAGE",
23
+ };
24
+ exports.ActionType = {
25
+ IAM: "APPLY_IAM_POLICY",
26
+ SCP: "APPLY_SCP_POLICY",
27
+ SSM: "RUN_SSM_DOCUMENTS",
28
+ };
29
+ exports.ApprovalModel = {
30
+ AUTO: "AUTOMATIC",
31
+ MANUAL: "MANUAL",
32
+ };
33
+ exports.ActionSubType = {
34
+ STOP_EC2: "STOP_EC2_INSTANCES",
35
+ STOP_RDS: "STOP_RDS_INSTANCES",
36
+ };
37
+ exports.NotificationType = {
38
+ ACTUAL: "ACTUAL",
39
+ FORECASTED: "FORECASTED",
40
+ };
41
+ exports.ActionStatus = {
42
+ Execution_Failure: "EXECUTION_FAILURE",
43
+ Execution_In_Progress: "EXECUTION_IN_PROGRESS",
44
+ Execution_Success: "EXECUTION_SUCCESS",
45
+ Pending: "PENDING",
46
+ Reset_Failure: "RESET_FAILURE",
47
+ Reset_In_Progress: "RESET_IN_PROGRESS",
48
+ Reverse_Failure: "REVERSE_FAILURE",
49
+ Reverse_In_Progress: "REVERSE_IN_PROGRESS",
50
+ Reverse_Success: "REVERSE_SUCCESS",
51
+ Standby: "STANDBY",
52
+ };
53
+ exports.SubscriptionType = {
54
+ EMAIL: "EMAIL",
55
+ SNS: "SNS",
56
+ };
57
+ exports.EventType = {
58
+ CreateAction: "CREATE_ACTION",
59
+ DeleteAction: "DELETE_ACTION",
60
+ ExecuteAction: "EXECUTE_ACTION",
61
+ System: "SYSTEM",
62
+ UpdateAction: "UPDATE_ACTION",
63
+ };
64
+ exports.AutoAdjustType = {
65
+ FORECAST: "FORECAST",
66
+ HISTORICAL: "HISTORICAL",
67
+ };
68
+ exports.BudgetType = {
69
+ Cost: "COST",
70
+ RICoverage: "RI_COVERAGE",
71
+ RIUtilization: "RI_UTILIZATION",
72
+ SPCoverage: "SAVINGS_PLANS_COVERAGE",
73
+ SPUtilization: "SAVINGS_PLANS_UTILIZATION",
74
+ Usage: "USAGE",
75
+ };
76
+ exports.TimeUnit = {
77
+ ANNUALLY: "ANNUALLY",
78
+ DAILY: "DAILY",
79
+ MONTHLY: "MONTHLY",
80
+ QUARTERLY: "QUARTERLY",
81
+ };
82
+ exports.ComparisonOperator = {
83
+ EQUAL_TO: "EQUAL_TO",
84
+ GREATER_THAN: "GREATER_THAN",
85
+ LESS_THAN: "LESS_THAN",
86
+ };
87
+ exports.NotificationState = {
88
+ ALARM: "ALARM",
89
+ OK: "OK",
90
+ };
104
91
  class CreationLimitExceededException extends BudgetsServiceException_1.BudgetsServiceException {
105
92
  constructor(opts) {
106
93
  super({
@@ -227,13 +214,12 @@ class ExpiredNextTokenException extends BudgetsServiceException_1.BudgetsService
227
214
  }
228
215
  }
229
216
  exports.ExpiredNextTokenException = ExpiredNextTokenException;
230
- var ExecutionType;
231
- (function (ExecutionType) {
232
- ExecutionType["ApproveBudgetAction"] = "APPROVE_BUDGET_ACTION";
233
- ExecutionType["ResetBudgetAction"] = "RESET_BUDGET_ACTION";
234
- ExecutionType["RetryBudgetAction"] = "RETRY_BUDGET_ACTION";
235
- ExecutionType["ReverseBudgetAction"] = "REVERSE_BUDGET_ACTION";
236
- })(ExecutionType = exports.ExecutionType || (exports.ExecutionType = {}));
217
+ exports.ExecutionType = {
218
+ ApproveBudgetAction: "APPROVE_BUDGET_ACTION",
219
+ ResetBudgetAction: "RESET_BUDGET_ACTION",
220
+ RetryBudgetAction: "RETRY_BUDGET_ACTION",
221
+ ReverseBudgetAction: "REVERSE_BUDGET_ACTION",
222
+ };
237
223
  const SubscriberFilterSensitiveLog = (obj) => ({
238
224
  ...obj,
239
225
  ...(obj.Address && { Address: smithy_client_1.SENSITIVE_STRING }),
@@ -13,90 +13,77 @@ export class AccessDeniedException extends __BaseException {
13
13
  this.Message = opts.Message;
14
14
  }
15
15
  }
16
- export var ThresholdType;
17
- (function (ThresholdType) {
18
- ThresholdType["ABSOLUTE_VALUE"] = "ABSOLUTE_VALUE";
19
- ThresholdType["PERCENTAGE"] = "PERCENTAGE";
20
- })(ThresholdType || (ThresholdType = {}));
21
- export var ActionType;
22
- (function (ActionType) {
23
- ActionType["IAM"] = "APPLY_IAM_POLICY";
24
- ActionType["SCP"] = "APPLY_SCP_POLICY";
25
- ActionType["SSM"] = "RUN_SSM_DOCUMENTS";
26
- })(ActionType || (ActionType = {}));
27
- export var ApprovalModel;
28
- (function (ApprovalModel) {
29
- ApprovalModel["AUTO"] = "AUTOMATIC";
30
- ApprovalModel["MANUAL"] = "MANUAL";
31
- })(ApprovalModel || (ApprovalModel = {}));
32
- export var ActionSubType;
33
- (function (ActionSubType) {
34
- ActionSubType["STOP_EC2"] = "STOP_EC2_INSTANCES";
35
- ActionSubType["STOP_RDS"] = "STOP_RDS_INSTANCES";
36
- })(ActionSubType || (ActionSubType = {}));
37
- export var NotificationType;
38
- (function (NotificationType) {
39
- NotificationType["ACTUAL"] = "ACTUAL";
40
- NotificationType["FORECASTED"] = "FORECASTED";
41
- })(NotificationType || (NotificationType = {}));
42
- export var ActionStatus;
43
- (function (ActionStatus) {
44
- ActionStatus["Execution_Failure"] = "EXECUTION_FAILURE";
45
- ActionStatus["Execution_In_Progress"] = "EXECUTION_IN_PROGRESS";
46
- ActionStatus["Execution_Success"] = "EXECUTION_SUCCESS";
47
- ActionStatus["Pending"] = "PENDING";
48
- ActionStatus["Reset_Failure"] = "RESET_FAILURE";
49
- ActionStatus["Reset_In_Progress"] = "RESET_IN_PROGRESS";
50
- ActionStatus["Reverse_Failure"] = "REVERSE_FAILURE";
51
- ActionStatus["Reverse_In_Progress"] = "REVERSE_IN_PROGRESS";
52
- ActionStatus["Reverse_Success"] = "REVERSE_SUCCESS";
53
- ActionStatus["Standby"] = "STANDBY";
54
- })(ActionStatus || (ActionStatus = {}));
55
- export var SubscriptionType;
56
- (function (SubscriptionType) {
57
- SubscriptionType["EMAIL"] = "EMAIL";
58
- SubscriptionType["SNS"] = "SNS";
59
- })(SubscriptionType || (SubscriptionType = {}));
60
- export var EventType;
61
- (function (EventType) {
62
- EventType["CreateAction"] = "CREATE_ACTION";
63
- EventType["DeleteAction"] = "DELETE_ACTION";
64
- EventType["ExecuteAction"] = "EXECUTE_ACTION";
65
- EventType["System"] = "SYSTEM";
66
- EventType["UpdateAction"] = "UPDATE_ACTION";
67
- })(EventType || (EventType = {}));
68
- export var AutoAdjustType;
69
- (function (AutoAdjustType) {
70
- AutoAdjustType["FORECAST"] = "FORECAST";
71
- AutoAdjustType["HISTORICAL"] = "HISTORICAL";
72
- })(AutoAdjustType || (AutoAdjustType = {}));
73
- export var BudgetType;
74
- (function (BudgetType) {
75
- BudgetType["Cost"] = "COST";
76
- BudgetType["RICoverage"] = "RI_COVERAGE";
77
- BudgetType["RIUtilization"] = "RI_UTILIZATION";
78
- BudgetType["SPCoverage"] = "SAVINGS_PLANS_COVERAGE";
79
- BudgetType["SPUtilization"] = "SAVINGS_PLANS_UTILIZATION";
80
- BudgetType["Usage"] = "USAGE";
81
- })(BudgetType || (BudgetType = {}));
82
- export var TimeUnit;
83
- (function (TimeUnit) {
84
- TimeUnit["ANNUALLY"] = "ANNUALLY";
85
- TimeUnit["DAILY"] = "DAILY";
86
- TimeUnit["MONTHLY"] = "MONTHLY";
87
- TimeUnit["QUARTERLY"] = "QUARTERLY";
88
- })(TimeUnit || (TimeUnit = {}));
89
- export var ComparisonOperator;
90
- (function (ComparisonOperator) {
91
- ComparisonOperator["EQUAL_TO"] = "EQUAL_TO";
92
- ComparisonOperator["GREATER_THAN"] = "GREATER_THAN";
93
- ComparisonOperator["LESS_THAN"] = "LESS_THAN";
94
- })(ComparisonOperator || (ComparisonOperator = {}));
95
- export var NotificationState;
96
- (function (NotificationState) {
97
- NotificationState["ALARM"] = "ALARM";
98
- NotificationState["OK"] = "OK";
99
- })(NotificationState || (NotificationState = {}));
16
+ export const ThresholdType = {
17
+ ABSOLUTE_VALUE: "ABSOLUTE_VALUE",
18
+ PERCENTAGE: "PERCENTAGE",
19
+ };
20
+ export const ActionType = {
21
+ IAM: "APPLY_IAM_POLICY",
22
+ SCP: "APPLY_SCP_POLICY",
23
+ SSM: "RUN_SSM_DOCUMENTS",
24
+ };
25
+ export const ApprovalModel = {
26
+ AUTO: "AUTOMATIC",
27
+ MANUAL: "MANUAL",
28
+ };
29
+ export const ActionSubType = {
30
+ STOP_EC2: "STOP_EC2_INSTANCES",
31
+ STOP_RDS: "STOP_RDS_INSTANCES",
32
+ };
33
+ export const NotificationType = {
34
+ ACTUAL: "ACTUAL",
35
+ FORECASTED: "FORECASTED",
36
+ };
37
+ export const ActionStatus = {
38
+ Execution_Failure: "EXECUTION_FAILURE",
39
+ Execution_In_Progress: "EXECUTION_IN_PROGRESS",
40
+ Execution_Success: "EXECUTION_SUCCESS",
41
+ Pending: "PENDING",
42
+ Reset_Failure: "RESET_FAILURE",
43
+ Reset_In_Progress: "RESET_IN_PROGRESS",
44
+ Reverse_Failure: "REVERSE_FAILURE",
45
+ Reverse_In_Progress: "REVERSE_IN_PROGRESS",
46
+ Reverse_Success: "REVERSE_SUCCESS",
47
+ Standby: "STANDBY",
48
+ };
49
+ export const SubscriptionType = {
50
+ EMAIL: "EMAIL",
51
+ SNS: "SNS",
52
+ };
53
+ export const EventType = {
54
+ CreateAction: "CREATE_ACTION",
55
+ DeleteAction: "DELETE_ACTION",
56
+ ExecuteAction: "EXECUTE_ACTION",
57
+ System: "SYSTEM",
58
+ UpdateAction: "UPDATE_ACTION",
59
+ };
60
+ export const AutoAdjustType = {
61
+ FORECAST: "FORECAST",
62
+ HISTORICAL: "HISTORICAL",
63
+ };
64
+ export const BudgetType = {
65
+ Cost: "COST",
66
+ RICoverage: "RI_COVERAGE",
67
+ RIUtilization: "RI_UTILIZATION",
68
+ SPCoverage: "SAVINGS_PLANS_COVERAGE",
69
+ SPUtilization: "SAVINGS_PLANS_UTILIZATION",
70
+ Usage: "USAGE",
71
+ };
72
+ export const TimeUnit = {
73
+ ANNUALLY: "ANNUALLY",
74
+ DAILY: "DAILY",
75
+ MONTHLY: "MONTHLY",
76
+ QUARTERLY: "QUARTERLY",
77
+ };
78
+ export const ComparisonOperator = {
79
+ EQUAL_TO: "EQUAL_TO",
80
+ GREATER_THAN: "GREATER_THAN",
81
+ LESS_THAN: "LESS_THAN",
82
+ };
83
+ export const NotificationState = {
84
+ ALARM: "ALARM",
85
+ OK: "OK",
86
+ };
100
87
  export class CreationLimitExceededException extends __BaseException {
101
88
  constructor(opts) {
102
89
  super({
@@ -214,13 +201,12 @@ export class ExpiredNextTokenException extends __BaseException {
214
201
  this.Message = opts.Message;
215
202
  }
216
203
  }
217
- export var ExecutionType;
218
- (function (ExecutionType) {
219
- ExecutionType["ApproveBudgetAction"] = "APPROVE_BUDGET_ACTION";
220
- ExecutionType["ResetBudgetAction"] = "RESET_BUDGET_ACTION";
221
- ExecutionType["RetryBudgetAction"] = "RETRY_BUDGET_ACTION";
222
- ExecutionType["ReverseBudgetAction"] = "REVERSE_BUDGET_ACTION";
223
- })(ExecutionType || (ExecutionType = {}));
204
+ export const ExecutionType = {
205
+ ApproveBudgetAction: "APPROVE_BUDGET_ACTION",
206
+ ResetBudgetAction: "RESET_BUDGET_ACTION",
207
+ RetryBudgetAction: "RETRY_BUDGET_ACTION",
208
+ ReverseBudgetAction: "REVERSE_BUDGET_ACTION",
209
+ };
224
210
  export const SubscriberFilterSensitiveLog = (obj) => ({
225
211
  ...obj,
226
212
  ...(obj.Address && { Address: SENSITIVE_STRING }),
@@ -18,11 +18,16 @@ export declare class AccessDeniedException extends __BaseException {
18
18
  }
19
19
  /**
20
20
  * @public
21
+ * @enum
21
22
  */
22
- export declare enum ThresholdType {
23
- ABSOLUTE_VALUE = "ABSOLUTE_VALUE",
24
- PERCENTAGE = "PERCENTAGE"
25
- }
23
+ export declare const ThresholdType: {
24
+ readonly ABSOLUTE_VALUE: "ABSOLUTE_VALUE";
25
+ readonly PERCENTAGE: "PERCENTAGE";
26
+ };
27
+ /**
28
+ * @public
29
+ */
30
+ export type ThresholdType = (typeof ThresholdType)[keyof typeof ThresholdType];
26
31
  /**
27
32
  * @public
28
33
  * <p>The trigger threshold of the action. </p>
@@ -39,19 +44,29 @@ export interface ActionThreshold {
39
44
  }
40
45
  /**
41
46
  * @public
47
+ * @enum
42
48
  */
43
- export declare enum ActionType {
44
- IAM = "APPLY_IAM_POLICY",
45
- SCP = "APPLY_SCP_POLICY",
46
- SSM = "RUN_SSM_DOCUMENTS"
47
- }
49
+ export declare const ActionType: {
50
+ readonly IAM: "APPLY_IAM_POLICY";
51
+ readonly SCP: "APPLY_SCP_POLICY";
52
+ readonly SSM: "RUN_SSM_DOCUMENTS";
53
+ };
48
54
  /**
49
55
  * @public
50
56
  */
51
- export declare enum ApprovalModel {
52
- AUTO = "AUTOMATIC",
53
- MANUAL = "MANUAL"
54
- }
57
+ export type ActionType = (typeof ActionType)[keyof typeof ActionType];
58
+ /**
59
+ * @public
60
+ * @enum
61
+ */
62
+ export declare const ApprovalModel: {
63
+ readonly AUTO: "AUTOMATIC";
64
+ readonly MANUAL: "MANUAL";
65
+ };
66
+ /**
67
+ * @public
68
+ */
69
+ export type ApprovalModel = (typeof ApprovalModel)[keyof typeof ApprovalModel];
55
70
  /**
56
71
  * @public
57
72
  * <p>The Identity and Access Management (IAM) action definition details. </p>
@@ -90,11 +105,16 @@ export interface ScpActionDefinition {
90
105
  }
91
106
  /**
92
107
  * @public
108
+ * @enum
93
109
  */
94
- export declare enum ActionSubType {
95
- STOP_EC2 = "STOP_EC2_INSTANCES",
96
- STOP_RDS = "STOP_RDS_INSTANCES"
97
- }
110
+ export declare const ActionSubType: {
111
+ readonly STOP_EC2: "STOP_EC2_INSTANCES";
112
+ readonly STOP_RDS: "STOP_RDS_INSTANCES";
113
+ };
114
+ /**
115
+ * @public
116
+ */
117
+ export type ActionSubType = (typeof ActionSubType)[keyof typeof ActionSubType];
98
118
  /**
99
119
  * @public
100
120
  * <p>The Amazon Web Services Systems Manager (SSM) action definition details. </p>
@@ -133,33 +153,48 @@ export interface Definition {
133
153
  }
134
154
  /**
135
155
  * @public
156
+ * @enum
136
157
  */
137
- export declare enum NotificationType {
138
- ACTUAL = "ACTUAL",
139
- FORECASTED = "FORECASTED"
140
- }
158
+ export declare const NotificationType: {
159
+ readonly ACTUAL: "ACTUAL";
160
+ readonly FORECASTED: "FORECASTED";
161
+ };
141
162
  /**
142
163
  * @public
143
164
  */
144
- export declare enum ActionStatus {
145
- Execution_Failure = "EXECUTION_FAILURE",
146
- Execution_In_Progress = "EXECUTION_IN_PROGRESS",
147
- Execution_Success = "EXECUTION_SUCCESS",
148
- Pending = "PENDING",
149
- Reset_Failure = "RESET_FAILURE",
150
- Reset_In_Progress = "RESET_IN_PROGRESS",
151
- Reverse_Failure = "REVERSE_FAILURE",
152
- Reverse_In_Progress = "REVERSE_IN_PROGRESS",
153
- Reverse_Success = "REVERSE_SUCCESS",
154
- Standby = "STANDBY"
155
- }
165
+ export type NotificationType = (typeof NotificationType)[keyof typeof NotificationType];
156
166
  /**
157
167
  * @public
168
+ * @enum
158
169
  */
159
- export declare enum SubscriptionType {
160
- EMAIL = "EMAIL",
161
- SNS = "SNS"
162
- }
170
+ export declare const ActionStatus: {
171
+ readonly Execution_Failure: "EXECUTION_FAILURE";
172
+ readonly Execution_In_Progress: "EXECUTION_IN_PROGRESS";
173
+ readonly Execution_Success: "EXECUTION_SUCCESS";
174
+ readonly Pending: "PENDING";
175
+ readonly Reset_Failure: "RESET_FAILURE";
176
+ readonly Reset_In_Progress: "RESET_IN_PROGRESS";
177
+ readonly Reverse_Failure: "REVERSE_FAILURE";
178
+ readonly Reverse_In_Progress: "REVERSE_IN_PROGRESS";
179
+ readonly Reverse_Success: "REVERSE_SUCCESS";
180
+ readonly Standby: "STANDBY";
181
+ };
182
+ /**
183
+ * @public
184
+ */
185
+ export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
186
+ /**
187
+ * @public
188
+ * @enum
189
+ */
190
+ export declare const SubscriptionType: {
191
+ readonly EMAIL: "EMAIL";
192
+ readonly SNS: "SNS";
193
+ };
194
+ /**
195
+ * @public
196
+ */
197
+ export type SubscriptionType = (typeof SubscriptionType)[keyof typeof SubscriptionType];
163
198
  /**
164
199
  * @public
165
200
  * <p>The subscriber to a budget notification. The subscriber consists of a subscription type and either an Amazon SNS topic or an email address.</p>
@@ -250,14 +285,19 @@ export interface ActionHistoryDetails {
250
285
  }
251
286
  /**
252
287
  * @public
288
+ * @enum
253
289
  */
254
- export declare enum EventType {
255
- CreateAction = "CREATE_ACTION",
256
- DeleteAction = "DELETE_ACTION",
257
- ExecuteAction = "EXECUTE_ACTION",
258
- System = "SYSTEM",
259
- UpdateAction = "UPDATE_ACTION"
260
- }
290
+ export declare const EventType: {
291
+ readonly CreateAction: "CREATE_ACTION";
292
+ readonly DeleteAction: "DELETE_ACTION";
293
+ readonly ExecuteAction: "EXECUTE_ACTION";
294
+ readonly System: "SYSTEM";
295
+ readonly UpdateAction: "UPDATE_ACTION";
296
+ };
297
+ /**
298
+ * @public
299
+ */
300
+ export type EventType = (typeof EventType)[keyof typeof EventType];
261
301
  /**
262
302
  * @public
263
303
  * <p>The historical records for a budget action. </p>
@@ -283,11 +323,16 @@ export interface ActionHistory {
283
323
  }
284
324
  /**
285
325
  * @public
326
+ * @enum
286
327
  */
287
- export declare enum AutoAdjustType {
288
- FORECAST = "FORECAST",
289
- HISTORICAL = "HISTORICAL"
290
- }
328
+ export declare const AutoAdjustType: {
329
+ readonly FORECAST: "FORECAST";
330
+ readonly HISTORICAL: "HISTORICAL";
331
+ };
332
+ /**
333
+ * @public
334
+ */
335
+ export type AutoAdjustType = (typeof AutoAdjustType)[keyof typeof AutoAdjustType];
291
336
  /**
292
337
  * @public
293
338
  * <p>The parameters that define or describe the historical data that your auto-adjusting budget is based on.</p>
@@ -366,15 +411,20 @@ export interface Spend {
366
411
  }
367
412
  /**
368
413
  * @public
414
+ * @enum
369
415
  */
370
- export declare enum BudgetType {
371
- Cost = "COST",
372
- RICoverage = "RI_COVERAGE",
373
- RIUtilization = "RI_UTILIZATION",
374
- SPCoverage = "SAVINGS_PLANS_COVERAGE",
375
- SPUtilization = "SAVINGS_PLANS_UTILIZATION",
376
- Usage = "USAGE"
377
- }
416
+ export declare const BudgetType: {
417
+ readonly Cost: "COST";
418
+ readonly RICoverage: "RI_COVERAGE";
419
+ readonly RIUtilization: "RI_UTILIZATION";
420
+ readonly SPCoverage: "SAVINGS_PLANS_COVERAGE";
421
+ readonly SPUtilization: "SAVINGS_PLANS_UTILIZATION";
422
+ readonly Usage: "USAGE";
423
+ };
424
+ /**
425
+ * @public
426
+ */
427
+ export type BudgetType = (typeof BudgetType)[keyof typeof BudgetType];
378
428
  /**
379
429
  * @public
380
430
  * <p>The spend objects that are associated with this budget. The <code>actualSpend</code> tracks
@@ -482,13 +532,18 @@ export interface TimePeriod {
482
532
  }
483
533
  /**
484
534
  * @public
535
+ * @enum
485
536
  */
486
- export declare enum TimeUnit {
487
- ANNUALLY = "ANNUALLY",
488
- DAILY = "DAILY",
489
- MONTHLY = "MONTHLY",
490
- QUARTERLY = "QUARTERLY"
491
- }
537
+ export declare const TimeUnit: {
538
+ readonly ANNUALLY: "ANNUALLY";
539
+ readonly DAILY: "DAILY";
540
+ readonly MONTHLY: "MONTHLY";
541
+ readonly QUARTERLY: "QUARTERLY";
542
+ };
543
+ /**
544
+ * @public
545
+ */
546
+ export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
492
547
  /**
493
548
  * @public
494
549
  * <p>Represents the output of the <code>CreateBudget</code> operation. The content consists of the detailed metadata and data file information, and the current status of the <code>budget</code> object.</p>
@@ -607,19 +662,29 @@ export interface Budget {
607
662
  }
608
663
  /**
609
664
  * @public
665
+ * @enum
610
666
  */
611
- export declare enum ComparisonOperator {
612
- EQUAL_TO = "EQUAL_TO",
613
- GREATER_THAN = "GREATER_THAN",
614
- LESS_THAN = "LESS_THAN"
615
- }
667
+ export declare const ComparisonOperator: {
668
+ readonly EQUAL_TO: "EQUAL_TO";
669
+ readonly GREATER_THAN: "GREATER_THAN";
670
+ readonly LESS_THAN: "LESS_THAN";
671
+ };
616
672
  /**
617
673
  * @public
618
674
  */
619
- export declare enum NotificationState {
620
- ALARM = "ALARM",
621
- OK = "OK"
622
- }
675
+ export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
676
+ /**
677
+ * @public
678
+ * @enum
679
+ */
680
+ export declare const NotificationState: {
681
+ readonly ALARM: "ALARM";
682
+ readonly OK: "OK";
683
+ };
684
+ /**
685
+ * @public
686
+ */
687
+ export type NotificationState = (typeof NotificationState)[keyof typeof NotificationState];
623
688
  /**
624
689
  * @public
625
690
  * <p>A notification that's associated with a budget. A budget can have up to ten notifications. </p>
@@ -1512,13 +1577,18 @@ export interface DescribeSubscribersForNotificationResponse {
1512
1577
  }
1513
1578
  /**
1514
1579
  * @public
1580
+ * @enum
1515
1581
  */
1516
- export declare enum ExecutionType {
1517
- ApproveBudgetAction = "APPROVE_BUDGET_ACTION",
1518
- ResetBudgetAction = "RESET_BUDGET_ACTION",
1519
- RetryBudgetAction = "RETRY_BUDGET_ACTION",
1520
- ReverseBudgetAction = "REVERSE_BUDGET_ACTION"
1521
- }
1582
+ export declare const ExecutionType: {
1583
+ readonly ApproveBudgetAction: "APPROVE_BUDGET_ACTION";
1584
+ readonly ResetBudgetAction: "RESET_BUDGET_ACTION";
1585
+ readonly RetryBudgetAction: "RETRY_BUDGET_ACTION";
1586
+ readonly ReverseBudgetAction: "REVERSE_BUDGET_ACTION";
1587
+ };
1588
+ /**
1589
+ * @public
1590
+ */
1591
+ export type ExecutionType = (typeof ExecutionType)[keyof typeof ExecutionType];
1522
1592
  /**
1523
1593
  * @public
1524
1594
  */
@@ -8,23 +8,26 @@ export declare class AccessDeniedException extends __BaseException {
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
10
10
  }
11
- export declare enum ThresholdType {
12
- ABSOLUTE_VALUE = "ABSOLUTE_VALUE",
13
- PERCENTAGE = "PERCENTAGE",
14
- }
11
+ export declare const ThresholdType: {
12
+ readonly ABSOLUTE_VALUE: "ABSOLUTE_VALUE";
13
+ readonly PERCENTAGE: "PERCENTAGE";
14
+ };
15
+ export type ThresholdType = (typeof ThresholdType)[keyof typeof ThresholdType];
15
16
  export interface ActionThreshold {
16
17
  ActionThresholdValue: number | undefined;
17
18
  ActionThresholdType: ThresholdType | string | undefined;
18
19
  }
19
- export declare enum ActionType {
20
- IAM = "APPLY_IAM_POLICY",
21
- SCP = "APPLY_SCP_POLICY",
22
- SSM = "RUN_SSM_DOCUMENTS",
23
- }
24
- export declare enum ApprovalModel {
25
- AUTO = "AUTOMATIC",
26
- MANUAL = "MANUAL",
27
- }
20
+ export declare const ActionType: {
21
+ readonly IAM: "APPLY_IAM_POLICY";
22
+ readonly SCP: "APPLY_SCP_POLICY";
23
+ readonly SSM: "RUN_SSM_DOCUMENTS";
24
+ };
25
+ export type ActionType = (typeof ActionType)[keyof typeof ActionType];
26
+ export declare const ApprovalModel: {
27
+ readonly AUTO: "AUTOMATIC";
28
+ readonly MANUAL: "MANUAL";
29
+ };
30
+ export type ApprovalModel = (typeof ApprovalModel)[keyof typeof ApprovalModel];
28
31
  export interface IamActionDefinition {
29
32
  PolicyArn: string | undefined;
30
33
  Roles?: string[];
@@ -35,10 +38,11 @@ export interface ScpActionDefinition {
35
38
  PolicyId: string | undefined;
36
39
  TargetIds: string[] | undefined;
37
40
  }
38
- export declare enum ActionSubType {
39
- STOP_EC2 = "STOP_EC2_INSTANCES",
40
- STOP_RDS = "STOP_RDS_INSTANCES",
41
- }
41
+ export declare const ActionSubType: {
42
+ readonly STOP_EC2: "STOP_EC2_INSTANCES";
43
+ readonly STOP_RDS: "STOP_RDS_INSTANCES";
44
+ };
45
+ export type ActionSubType = (typeof ActionSubType)[keyof typeof ActionSubType];
42
46
  export interface SsmActionDefinition {
43
47
  ActionSubType: ActionSubType | string | undefined;
44
48
  Region: string | undefined;
@@ -49,26 +53,31 @@ export interface Definition {
49
53
  ScpActionDefinition?: ScpActionDefinition;
50
54
  SsmActionDefinition?: SsmActionDefinition;
51
55
  }
52
- export declare enum NotificationType {
53
- ACTUAL = "ACTUAL",
54
- FORECASTED = "FORECASTED",
55
- }
56
- export declare enum ActionStatus {
57
- Execution_Failure = "EXECUTION_FAILURE",
58
- Execution_In_Progress = "EXECUTION_IN_PROGRESS",
59
- Execution_Success = "EXECUTION_SUCCESS",
60
- Pending = "PENDING",
61
- Reset_Failure = "RESET_FAILURE",
62
- Reset_In_Progress = "RESET_IN_PROGRESS",
63
- Reverse_Failure = "REVERSE_FAILURE",
64
- Reverse_In_Progress = "REVERSE_IN_PROGRESS",
65
- Reverse_Success = "REVERSE_SUCCESS",
66
- Standby = "STANDBY",
67
- }
68
- export declare enum SubscriptionType {
69
- EMAIL = "EMAIL",
70
- SNS = "SNS",
71
- }
56
+ export declare const NotificationType: {
57
+ readonly ACTUAL: "ACTUAL";
58
+ readonly FORECASTED: "FORECASTED";
59
+ };
60
+ export type NotificationType =
61
+ (typeof NotificationType)[keyof typeof NotificationType];
62
+ export declare const ActionStatus: {
63
+ readonly Execution_Failure: "EXECUTION_FAILURE";
64
+ readonly Execution_In_Progress: "EXECUTION_IN_PROGRESS";
65
+ readonly Execution_Success: "EXECUTION_SUCCESS";
66
+ readonly Pending: "PENDING";
67
+ readonly Reset_Failure: "RESET_FAILURE";
68
+ readonly Reset_In_Progress: "RESET_IN_PROGRESS";
69
+ readonly Reverse_Failure: "REVERSE_FAILURE";
70
+ readonly Reverse_In_Progress: "REVERSE_IN_PROGRESS";
71
+ readonly Reverse_Success: "REVERSE_SUCCESS";
72
+ readonly Standby: "STANDBY";
73
+ };
74
+ export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
75
+ export declare const SubscriptionType: {
76
+ readonly EMAIL: "EMAIL";
77
+ readonly SNS: "SNS";
78
+ };
79
+ export type SubscriptionType =
80
+ (typeof SubscriptionType)[keyof typeof SubscriptionType];
72
81
  export interface Subscriber {
73
82
  SubscriptionType: SubscriptionType | string | undefined;
74
83
  Address: string | undefined;
@@ -89,23 +98,26 @@ export interface ActionHistoryDetails {
89
98
  Message: string | undefined;
90
99
  Action: Action | undefined;
91
100
  }
92
- export declare enum EventType {
93
- CreateAction = "CREATE_ACTION",
94
- DeleteAction = "DELETE_ACTION",
95
- ExecuteAction = "EXECUTE_ACTION",
96
- System = "SYSTEM",
97
- UpdateAction = "UPDATE_ACTION",
98
- }
101
+ export declare const EventType: {
102
+ readonly CreateAction: "CREATE_ACTION";
103
+ readonly DeleteAction: "DELETE_ACTION";
104
+ readonly ExecuteAction: "EXECUTE_ACTION";
105
+ readonly System: "SYSTEM";
106
+ readonly UpdateAction: "UPDATE_ACTION";
107
+ };
108
+ export type EventType = (typeof EventType)[keyof typeof EventType];
99
109
  export interface ActionHistory {
100
110
  Timestamp: Date | undefined;
101
111
  Status: ActionStatus | string | undefined;
102
112
  EventType: EventType | string | undefined;
103
113
  ActionHistoryDetails: ActionHistoryDetails | undefined;
104
114
  }
105
- export declare enum AutoAdjustType {
106
- FORECAST = "FORECAST",
107
- HISTORICAL = "HISTORICAL",
108
- }
115
+ export declare const AutoAdjustType: {
116
+ readonly FORECAST: "FORECAST";
117
+ readonly HISTORICAL: "HISTORICAL";
118
+ };
119
+ export type AutoAdjustType =
120
+ (typeof AutoAdjustType)[keyof typeof AutoAdjustType];
109
121
  export interface HistoricalOptions {
110
122
  BudgetAdjustmentPeriod: number | undefined;
111
123
  LookBackAvailablePeriods?: number;
@@ -119,14 +131,15 @@ export interface Spend {
119
131
  Amount: string | undefined;
120
132
  Unit: string | undefined;
121
133
  }
122
- export declare enum BudgetType {
123
- Cost = "COST",
124
- RICoverage = "RI_COVERAGE",
125
- RIUtilization = "RI_UTILIZATION",
126
- SPCoverage = "SAVINGS_PLANS_COVERAGE",
127
- SPUtilization = "SAVINGS_PLANS_UTILIZATION",
128
- Usage = "USAGE",
129
- }
134
+ export declare const BudgetType: {
135
+ readonly Cost: "COST";
136
+ readonly RICoverage: "RI_COVERAGE";
137
+ readonly RIUtilization: "RI_UTILIZATION";
138
+ readonly SPCoverage: "SAVINGS_PLANS_COVERAGE";
139
+ readonly SPUtilization: "SAVINGS_PLANS_UTILIZATION";
140
+ readonly Usage: "USAGE";
141
+ };
142
+ export type BudgetType = (typeof BudgetType)[keyof typeof BudgetType];
130
143
  export interface CalculatedSpend {
131
144
  ActualSpend: Spend | undefined;
132
145
  ForecastedSpend?: Spend;
@@ -148,12 +161,13 @@ export interface TimePeriod {
148
161
  Start?: Date;
149
162
  End?: Date;
150
163
  }
151
- export declare enum TimeUnit {
152
- ANNUALLY = "ANNUALLY",
153
- DAILY = "DAILY",
154
- MONTHLY = "MONTHLY",
155
- QUARTERLY = "QUARTERLY",
156
- }
164
+ export declare const TimeUnit: {
165
+ readonly ANNUALLY: "ANNUALLY";
166
+ readonly DAILY: "DAILY";
167
+ readonly MONTHLY: "MONTHLY";
168
+ readonly QUARTERLY: "QUARTERLY";
169
+ };
170
+ export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
157
171
  export interface Budget {
158
172
  BudgetName: string | undefined;
159
173
  BudgetLimit?: Spend;
@@ -167,15 +181,19 @@ export interface Budget {
167
181
  LastUpdatedTime?: Date;
168
182
  AutoAdjustData?: AutoAdjustData;
169
183
  }
170
- export declare enum ComparisonOperator {
171
- EQUAL_TO = "EQUAL_TO",
172
- GREATER_THAN = "GREATER_THAN",
173
- LESS_THAN = "LESS_THAN",
174
- }
175
- export declare enum NotificationState {
176
- ALARM = "ALARM",
177
- OK = "OK",
178
- }
184
+ export declare const ComparisonOperator: {
185
+ readonly EQUAL_TO: "EQUAL_TO";
186
+ readonly GREATER_THAN: "GREATER_THAN";
187
+ readonly LESS_THAN: "LESS_THAN";
188
+ };
189
+ export type ComparisonOperator =
190
+ (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
191
+ export declare const NotificationState: {
192
+ readonly ALARM: "ALARM";
193
+ readonly OK: "OK";
194
+ };
195
+ export type NotificationState =
196
+ (typeof NotificationState)[keyof typeof NotificationState];
179
197
  export interface Notification {
180
198
  NotificationType: NotificationType | string | undefined;
181
199
  ComparisonOperator: ComparisonOperator | string | undefined;
@@ -436,12 +454,13 @@ export interface DescribeSubscribersForNotificationResponse {
436
454
  Subscribers?: Subscriber[];
437
455
  NextToken?: string;
438
456
  }
439
- export declare enum ExecutionType {
440
- ApproveBudgetAction = "APPROVE_BUDGET_ACTION",
441
- ResetBudgetAction = "RESET_BUDGET_ACTION",
442
- RetryBudgetAction = "RETRY_BUDGET_ACTION",
443
- ReverseBudgetAction = "REVERSE_BUDGET_ACTION",
444
- }
457
+ export declare const ExecutionType: {
458
+ readonly ApproveBudgetAction: "APPROVE_BUDGET_ACTION";
459
+ readonly ResetBudgetAction: "RESET_BUDGET_ACTION";
460
+ readonly RetryBudgetAction: "RETRY_BUDGET_ACTION";
461
+ readonly ReverseBudgetAction: "REVERSE_BUDGET_ACTION";
462
+ };
463
+ export type ExecutionType = (typeof ExecutionType)[keyof typeof ExecutionType];
445
464
  export interface ExecuteBudgetActionRequest {
446
465
  AccountId: string | undefined;
447
466
  BudgetName: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-budgets",
3
3
  "description": "AWS SDK for JavaScript Budgets Client for Node.js, Browser and React Native",
4
- "version": "3.301.0",
4
+ "version": "3.306.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,42 +21,42 @@
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.306.0",
25
+ "@aws-sdk/config-resolver": "3.306.0",
26
+ "@aws-sdk/credential-provider-node": "3.306.0",
27
+ "@aws-sdk/fetch-http-handler": "3.306.0",
28
+ "@aws-sdk/hash-node": "3.306.0",
29
+ "@aws-sdk/invalid-dependency": "3.306.0",
30
+ "@aws-sdk/middleware-content-length": "3.306.0",
31
+ "@aws-sdk/middleware-endpoint": "3.306.0",
32
+ "@aws-sdk/middleware-host-header": "3.306.0",
33
+ "@aws-sdk/middleware-logger": "3.306.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.306.0",
35
+ "@aws-sdk/middleware-retry": "3.306.0",
36
+ "@aws-sdk/middleware-serde": "3.306.0",
37
+ "@aws-sdk/middleware-signing": "3.306.0",
38
+ "@aws-sdk/middleware-stack": "3.306.0",
39
+ "@aws-sdk/middleware-user-agent": "3.306.0",
40
+ "@aws-sdk/node-config-provider": "3.306.0",
41
+ "@aws-sdk/node-http-handler": "3.306.0",
42
+ "@aws-sdk/protocol-http": "3.306.0",
43
+ "@aws-sdk/smithy-client": "3.306.0",
44
+ "@aws-sdk/types": "3.306.0",
45
+ "@aws-sdk/url-parser": "3.306.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.306.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.306.0",
51
+ "@aws-sdk/util-endpoints": "3.306.0",
52
+ "@aws-sdk/util-retry": "3.306.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.306.0",
54
+ "@aws-sdk/util-user-agent-node": "3.306.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
56
  "tslib": "^2.5.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
59
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
60
60
  "@tsconfig/node14": "1.0.3",
61
61
  "@types/node": "^14.14.31",
62
62
  "concurrently": "7.0.0",