@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.
- package/dist-cjs/models/models_0.js +77 -91
- package/dist-es/models/models_0.js +77 -91
- package/dist-types/models/models_0.d.ts +147 -77
- package/dist-types/ts3.4/models/models_0.d.ts +96 -77
- package/package.json +34 -34
|
@@ -17,90 +17,77 @@ class AccessDeniedException extends BudgetsServiceException_1.BudgetsServiceExce
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
exports.AccessDeniedException = AccessDeniedException;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
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
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
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
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
export
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
}
|
|
60
|
-
export
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
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
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
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
|
|
23
|
-
ABSOLUTE_VALUE
|
|
24
|
-
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
|
|
44
|
-
IAM
|
|
45
|
-
SCP
|
|
46
|
-
SSM
|
|
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
|
|
52
|
-
|
|
53
|
-
|
|
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
|
|
95
|
-
STOP_EC2
|
|
96
|
-
STOP_RDS
|
|
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
|
|
138
|
-
ACTUAL
|
|
139
|
-
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
|
|
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
|
|
160
|
-
|
|
161
|
-
|
|
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
|
|
255
|
-
CreateAction
|
|
256
|
-
DeleteAction
|
|
257
|
-
ExecuteAction
|
|
258
|
-
System
|
|
259
|
-
UpdateAction
|
|
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
|
|
288
|
-
FORECAST
|
|
289
|
-
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
|
|
371
|
-
Cost
|
|
372
|
-
RICoverage
|
|
373
|
-
RIUtilization
|
|
374
|
-
SPCoverage
|
|
375
|
-
SPUtilization
|
|
376
|
-
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
|
|
487
|
-
ANNUALLY
|
|
488
|
-
DAILY
|
|
489
|
-
MONTHLY
|
|
490
|
-
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
|
|
612
|
-
EQUAL_TO
|
|
613
|
-
GREATER_THAN
|
|
614
|
-
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
|
|
620
|
-
|
|
621
|
-
|
|
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
|
|
1517
|
-
ApproveBudgetAction
|
|
1518
|
-
ResetBudgetAction
|
|
1519
|
-
RetryBudgetAction
|
|
1520
|
-
ReverseBudgetAction
|
|
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
|
|
12
|
-
ABSOLUTE_VALUE
|
|
13
|
-
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
|
|
20
|
-
IAM
|
|
21
|
-
SCP
|
|
22
|
-
SSM
|
|
23
|
-
}
|
|
24
|
-
export
|
|
25
|
-
|
|
26
|
-
|
|
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
|
|
39
|
-
STOP_EC2
|
|
40
|
-
STOP_RDS
|
|
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
|
|
53
|
-
ACTUAL
|
|
54
|
-
FORECASTED
|
|
55
|
-
}
|
|
56
|
-
export
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
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
|
|
93
|
-
CreateAction
|
|
94
|
-
DeleteAction
|
|
95
|
-
ExecuteAction
|
|
96
|
-
System
|
|
97
|
-
UpdateAction
|
|
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
|
|
106
|
-
FORECAST
|
|
107
|
-
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
|
|
123
|
-
Cost
|
|
124
|
-
RICoverage
|
|
125
|
-
RIUtilization
|
|
126
|
-
SPCoverage
|
|
127
|
-
SPUtilization
|
|
128
|
-
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
|
|
152
|
-
ANNUALLY
|
|
153
|
-
DAILY
|
|
154
|
-
MONTHLY
|
|
155
|
-
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
|
|
171
|
-
EQUAL_TO
|
|
172
|
-
GREATER_THAN
|
|
173
|
-
LESS_THAN
|
|
174
|
-
}
|
|
175
|
-
export
|
|
176
|
-
|
|
177
|
-
|
|
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
|
|
440
|
-
ApproveBudgetAction
|
|
441
|
-
ResetBudgetAction
|
|
442
|
-
RetryBudgetAction
|
|
443
|
-
ReverseBudgetAction
|
|
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.
|
|
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.
|
|
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.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.
|
|
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",
|