@aws-sdk/client-budgets 3.180.0 → 3.183.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/CHANGELOG.md +20 -0
- package/dist-cjs/protocols/Aws_json1_1.js +29 -23
- package/dist-es/Budgets.js +94 -101
- package/dist-es/BudgetsClient.js +22 -28
- package/dist-es/commands/CreateBudgetActionCommand.js +21 -28
- package/dist-es/commands/CreateBudgetCommand.js +21 -28
- package/dist-es/commands/CreateNotificationCommand.js +21 -28
- package/dist-es/commands/CreateSubscriberCommand.js +21 -28
- package/dist-es/commands/DeleteBudgetActionCommand.js +21 -28
- package/dist-es/commands/DeleteBudgetCommand.js +21 -28
- package/dist-es/commands/DeleteNotificationCommand.js +21 -28
- package/dist-es/commands/DeleteSubscriberCommand.js +21 -28
- package/dist-es/commands/DescribeBudgetActionCommand.js +21 -28
- package/dist-es/commands/DescribeBudgetActionHistoriesCommand.js +21 -28
- package/dist-es/commands/DescribeBudgetActionsForAccountCommand.js +21 -28
- package/dist-es/commands/DescribeBudgetActionsForBudgetCommand.js +21 -28
- package/dist-es/commands/DescribeBudgetCommand.js +21 -28
- package/dist-es/commands/DescribeBudgetNotificationsForAccountCommand.js +21 -28
- package/dist-es/commands/DescribeBudgetPerformanceHistoryCommand.js +21 -28
- package/dist-es/commands/DescribeBudgetsCommand.js +21 -28
- package/dist-es/commands/DescribeNotificationsForBudgetCommand.js +21 -28
- package/dist-es/commands/DescribeSubscribersForNotificationCommand.js +21 -28
- package/dist-es/commands/ExecuteBudgetActionCommand.js +21 -28
- package/dist-es/commands/UpdateBudgetActionCommand.js +21 -28
- package/dist-es/commands/UpdateBudgetCommand.js +21 -28
- package/dist-es/commands/UpdateNotificationCommand.js +21 -28
- package/dist-es/commands/UpdateSubscriberCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/BudgetsServiceException.js +5 -10
- package/dist-es/models/models_0.js +340 -190
- package/dist-es/pagination/DescribeBudgetActionHistoriesPaginator.js +25 -68
- package/dist-es/pagination/DescribeBudgetActionsForAccountPaginator.js +25 -68
- package/dist-es/pagination/DescribeBudgetActionsForBudgetPaginator.js +25 -68
- package/dist-es/pagination/DescribeBudgetNotificationsForAccountPaginator.js +25 -68
- package/dist-es/pagination/DescribeBudgetPerformanceHistoryPaginator.js +25 -68
- package/dist-es/pagination/DescribeBudgetsPaginator.js +25 -68
- package/dist-es/pagination/DescribeNotificationsForBudgetPaginator.js +25 -68
- package/dist-es/pagination/DescribeSubscribersForNotificationPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +1894 -2289
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { BudgetsServiceException as __BaseException } from "./BudgetsServiceException";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
constructor(opts) {
|
|
5
|
+
super({
|
|
6
|
+
name: "AccessDeniedException",
|
|
7
|
+
$fault: "client",
|
|
8
|
+
...opts,
|
|
9
|
+
});
|
|
10
|
+
this.name = "AccessDeniedException";
|
|
11
|
+
this.$fault = "client";
|
|
12
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
+
this.Message = opts.Message;
|
|
13
14
|
}
|
|
14
|
-
|
|
15
|
-
}(__BaseException));
|
|
16
|
-
export { AccessDeniedException };
|
|
15
|
+
}
|
|
17
16
|
export var ThresholdType;
|
|
18
17
|
(function (ThresholdType) {
|
|
19
18
|
ThresholdType["ABSOLUTE_VALUE"] = "ABSOLUTE_VALUE";
|
|
@@ -98,123 +97,123 @@ export var NotificationState;
|
|
|
98
97
|
NotificationState["ALARM"] = "ALARM";
|
|
99
98
|
NotificationState["OK"] = "OK";
|
|
100
99
|
})(NotificationState || (NotificationState = {}));
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
100
|
+
export class CreationLimitExceededException extends __BaseException {
|
|
101
|
+
constructor(opts) {
|
|
102
|
+
super({
|
|
103
|
+
name: "CreationLimitExceededException",
|
|
104
|
+
$fault: "client",
|
|
105
|
+
...opts,
|
|
106
|
+
});
|
|
107
|
+
this.name = "CreationLimitExceededException";
|
|
108
|
+
this.$fault = "client";
|
|
109
|
+
Object.setPrototypeOf(this, CreationLimitExceededException.prototype);
|
|
110
|
+
this.Message = opts.Message;
|
|
110
111
|
}
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
112
|
+
}
|
|
113
|
+
export class DuplicateRecordException extends __BaseException {
|
|
114
|
+
constructor(opts) {
|
|
115
|
+
super({
|
|
116
|
+
name: "DuplicateRecordException",
|
|
117
|
+
$fault: "client",
|
|
118
|
+
...opts,
|
|
119
|
+
});
|
|
120
|
+
this.name = "DuplicateRecordException";
|
|
121
|
+
this.$fault = "client";
|
|
122
|
+
Object.setPrototypeOf(this, DuplicateRecordException.prototype);
|
|
123
|
+
this.Message = opts.Message;
|
|
123
124
|
}
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
125
|
+
}
|
|
126
|
+
export class InternalErrorException extends __BaseException {
|
|
127
|
+
constructor(opts) {
|
|
128
|
+
super({
|
|
129
|
+
name: "InternalErrorException",
|
|
130
|
+
$fault: "server",
|
|
131
|
+
...opts,
|
|
132
|
+
});
|
|
133
|
+
this.name = "InternalErrorException";
|
|
134
|
+
this.$fault = "server";
|
|
135
|
+
Object.setPrototypeOf(this, InternalErrorException.prototype);
|
|
136
|
+
this.Message = opts.Message;
|
|
136
137
|
}
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
138
|
+
}
|
|
139
|
+
export class InvalidParameterException extends __BaseException {
|
|
140
|
+
constructor(opts) {
|
|
141
|
+
super({
|
|
142
|
+
name: "InvalidParameterException",
|
|
143
|
+
$fault: "client",
|
|
144
|
+
...opts,
|
|
145
|
+
});
|
|
146
|
+
this.name = "InvalidParameterException";
|
|
147
|
+
this.$fault = "client";
|
|
148
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
149
|
+
this.Message = opts.Message;
|
|
149
150
|
}
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
151
|
+
}
|
|
152
|
+
export class ThrottlingException extends __BaseException {
|
|
153
|
+
constructor(opts) {
|
|
154
|
+
super({
|
|
155
|
+
name: "ThrottlingException",
|
|
156
|
+
$fault: "client",
|
|
157
|
+
...opts,
|
|
158
|
+
});
|
|
159
|
+
this.name = "ThrottlingException";
|
|
160
|
+
this.$fault = "client";
|
|
161
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
162
|
+
this.Message = opts.Message;
|
|
162
163
|
}
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
164
|
+
}
|
|
165
|
+
export class NotFoundException extends __BaseException {
|
|
166
|
+
constructor(opts) {
|
|
167
|
+
super({
|
|
168
|
+
name: "NotFoundException",
|
|
169
|
+
$fault: "client",
|
|
170
|
+
...opts,
|
|
171
|
+
});
|
|
172
|
+
this.name = "NotFoundException";
|
|
173
|
+
this.$fault = "client";
|
|
174
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
175
|
+
this.Message = opts.Message;
|
|
175
176
|
}
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
177
|
+
}
|
|
178
|
+
export class ResourceLockedException extends __BaseException {
|
|
179
|
+
constructor(opts) {
|
|
180
|
+
super({
|
|
181
|
+
name: "ResourceLockedException",
|
|
182
|
+
$fault: "client",
|
|
183
|
+
...opts,
|
|
184
|
+
});
|
|
185
|
+
this.name = "ResourceLockedException";
|
|
186
|
+
this.$fault = "client";
|
|
187
|
+
Object.setPrototypeOf(this, ResourceLockedException.prototype);
|
|
188
|
+
this.Message = opts.Message;
|
|
188
189
|
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
190
|
+
}
|
|
191
|
+
export class InvalidNextTokenException extends __BaseException {
|
|
192
|
+
constructor(opts) {
|
|
193
|
+
super({
|
|
194
|
+
name: "InvalidNextTokenException",
|
|
195
|
+
$fault: "client",
|
|
196
|
+
...opts,
|
|
197
|
+
});
|
|
198
|
+
this.name = "InvalidNextTokenException";
|
|
199
|
+
this.$fault = "client";
|
|
200
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
201
|
+
this.Message = opts.Message;
|
|
201
202
|
}
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
203
|
+
}
|
|
204
|
+
export class ExpiredNextTokenException extends __BaseException {
|
|
205
|
+
constructor(opts) {
|
|
206
|
+
super({
|
|
207
|
+
name: "ExpiredNextTokenException",
|
|
208
|
+
$fault: "client",
|
|
209
|
+
...opts,
|
|
210
|
+
});
|
|
211
|
+
this.name = "ExpiredNextTokenException";
|
|
212
|
+
this.$fault = "client";
|
|
213
|
+
Object.setPrototypeOf(this, ExpiredNextTokenException.prototype);
|
|
214
|
+
this.Message = opts.Message;
|
|
214
215
|
}
|
|
215
|
-
|
|
216
|
-
}(__BaseException));
|
|
217
|
-
export { ExpiredNextTokenException };
|
|
216
|
+
}
|
|
218
217
|
export var ExecutionType;
|
|
219
218
|
(function (ExecutionType) {
|
|
220
219
|
ExecutionType["ApproveBudgetAction"] = "APPROVE_BUDGET_ACTION";
|
|
@@ -222,72 +221,223 @@ export var ExecutionType;
|
|
|
222
221
|
ExecutionType["RetryBudgetAction"] = "RETRY_BUDGET_ACTION";
|
|
223
222
|
ExecutionType["ReverseBudgetAction"] = "REVERSE_BUDGET_ACTION";
|
|
224
223
|
})(ExecutionType || (ExecutionType = {}));
|
|
225
|
-
export
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
export
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
export
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
export
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
export
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
export
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
export
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
export
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
export
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
export
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
export
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
export
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
export
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
export
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
export
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
export
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
export
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
export
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
export
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
export
|
|
293
|
-
|
|
224
|
+
export const ActionThresholdFilterSensitiveLog = (obj) => ({
|
|
225
|
+
...obj,
|
|
226
|
+
});
|
|
227
|
+
export const IamActionDefinitionFilterSensitiveLog = (obj) => ({
|
|
228
|
+
...obj,
|
|
229
|
+
});
|
|
230
|
+
export const ScpActionDefinitionFilterSensitiveLog = (obj) => ({
|
|
231
|
+
...obj,
|
|
232
|
+
});
|
|
233
|
+
export const SsmActionDefinitionFilterSensitiveLog = (obj) => ({
|
|
234
|
+
...obj,
|
|
235
|
+
});
|
|
236
|
+
export const DefinitionFilterSensitiveLog = (obj) => ({
|
|
237
|
+
...obj,
|
|
238
|
+
});
|
|
239
|
+
export const SubscriberFilterSensitiveLog = (obj) => ({
|
|
240
|
+
...obj,
|
|
241
|
+
...(obj.Address && { Address: SENSITIVE_STRING }),
|
|
242
|
+
});
|
|
243
|
+
export const ActionFilterSensitiveLog = (obj) => ({
|
|
244
|
+
...obj,
|
|
245
|
+
...(obj.Subscribers && { Subscribers: obj.Subscribers.map((item) => SubscriberFilterSensitiveLog(item)) }),
|
|
246
|
+
});
|
|
247
|
+
export const ActionHistoryDetailsFilterSensitiveLog = (obj) => ({
|
|
248
|
+
...obj,
|
|
249
|
+
...(obj.Action && { Action: ActionFilterSensitiveLog(obj.Action) }),
|
|
250
|
+
});
|
|
251
|
+
export const ActionHistoryFilterSensitiveLog = (obj) => ({
|
|
252
|
+
...obj,
|
|
253
|
+
...(obj.ActionHistoryDetails && {
|
|
254
|
+
ActionHistoryDetails: ActionHistoryDetailsFilterSensitiveLog(obj.ActionHistoryDetails),
|
|
255
|
+
}),
|
|
256
|
+
});
|
|
257
|
+
export const HistoricalOptionsFilterSensitiveLog = (obj) => ({
|
|
258
|
+
...obj,
|
|
259
|
+
});
|
|
260
|
+
export const AutoAdjustDataFilterSensitiveLog = (obj) => ({
|
|
261
|
+
...obj,
|
|
262
|
+
});
|
|
263
|
+
export const SpendFilterSensitiveLog = (obj) => ({
|
|
264
|
+
...obj,
|
|
265
|
+
});
|
|
266
|
+
export const CalculatedSpendFilterSensitiveLog = (obj) => ({
|
|
267
|
+
...obj,
|
|
268
|
+
});
|
|
269
|
+
export const CostTypesFilterSensitiveLog = (obj) => ({
|
|
270
|
+
...obj,
|
|
271
|
+
});
|
|
272
|
+
export const TimePeriodFilterSensitiveLog = (obj) => ({
|
|
273
|
+
...obj,
|
|
274
|
+
});
|
|
275
|
+
export const BudgetFilterSensitiveLog = (obj) => ({
|
|
276
|
+
...obj,
|
|
277
|
+
});
|
|
278
|
+
export const NotificationFilterSensitiveLog = (obj) => ({
|
|
279
|
+
...obj,
|
|
280
|
+
});
|
|
281
|
+
export const NotificationWithSubscribersFilterSensitiveLog = (obj) => ({
|
|
282
|
+
...obj,
|
|
283
|
+
...(obj.Subscribers && { Subscribers: obj.Subscribers.map((item) => SubscriberFilterSensitiveLog(item)) }),
|
|
284
|
+
});
|
|
285
|
+
export const CreateBudgetRequestFilterSensitiveLog = (obj) => ({
|
|
286
|
+
...obj,
|
|
287
|
+
});
|
|
288
|
+
export const CreateBudgetResponseFilterSensitiveLog = (obj) => ({
|
|
289
|
+
...obj,
|
|
290
|
+
});
|
|
291
|
+
export const CreateBudgetActionRequestFilterSensitiveLog = (obj) => ({
|
|
292
|
+
...obj,
|
|
293
|
+
...(obj.Subscribers && { Subscribers: obj.Subscribers.map((item) => SubscriberFilterSensitiveLog(item)) }),
|
|
294
|
+
});
|
|
295
|
+
export const CreateBudgetActionResponseFilterSensitiveLog = (obj) => ({
|
|
296
|
+
...obj,
|
|
297
|
+
});
|
|
298
|
+
export const CreateNotificationRequestFilterSensitiveLog = (obj) => ({
|
|
299
|
+
...obj,
|
|
300
|
+
...(obj.Subscribers && { Subscribers: obj.Subscribers.map((item) => SubscriberFilterSensitiveLog(item)) }),
|
|
301
|
+
});
|
|
302
|
+
export const CreateNotificationResponseFilterSensitiveLog = (obj) => ({
|
|
303
|
+
...obj,
|
|
304
|
+
});
|
|
305
|
+
export const CreateSubscriberRequestFilterSensitiveLog = (obj) => ({
|
|
306
|
+
...obj,
|
|
307
|
+
...(obj.Subscriber && { Subscriber: SubscriberFilterSensitiveLog(obj.Subscriber) }),
|
|
308
|
+
});
|
|
309
|
+
export const CreateSubscriberResponseFilterSensitiveLog = (obj) => ({
|
|
310
|
+
...obj,
|
|
311
|
+
});
|
|
312
|
+
export const DeleteBudgetRequestFilterSensitiveLog = (obj) => ({
|
|
313
|
+
...obj,
|
|
314
|
+
});
|
|
315
|
+
export const DeleteBudgetResponseFilterSensitiveLog = (obj) => ({
|
|
316
|
+
...obj,
|
|
317
|
+
});
|
|
318
|
+
export const DeleteBudgetActionRequestFilterSensitiveLog = (obj) => ({
|
|
319
|
+
...obj,
|
|
320
|
+
});
|
|
321
|
+
export const DeleteBudgetActionResponseFilterSensitiveLog = (obj) => ({
|
|
322
|
+
...obj,
|
|
323
|
+
...(obj.Action && { Action: ActionFilterSensitiveLog(obj.Action) }),
|
|
324
|
+
});
|
|
325
|
+
export const DeleteNotificationRequestFilterSensitiveLog = (obj) => ({
|
|
326
|
+
...obj,
|
|
327
|
+
});
|
|
328
|
+
export const DeleteNotificationResponseFilterSensitiveLog = (obj) => ({
|
|
329
|
+
...obj,
|
|
330
|
+
});
|
|
331
|
+
export const DeleteSubscriberRequestFilterSensitiveLog = (obj) => ({
|
|
332
|
+
...obj,
|
|
333
|
+
...(obj.Subscriber && { Subscriber: SubscriberFilterSensitiveLog(obj.Subscriber) }),
|
|
334
|
+
});
|
|
335
|
+
export const DeleteSubscriberResponseFilterSensitiveLog = (obj) => ({
|
|
336
|
+
...obj,
|
|
337
|
+
});
|
|
338
|
+
export const DescribeBudgetRequestFilterSensitiveLog = (obj) => ({
|
|
339
|
+
...obj,
|
|
340
|
+
});
|
|
341
|
+
export const DescribeBudgetResponseFilterSensitiveLog = (obj) => ({
|
|
342
|
+
...obj,
|
|
343
|
+
});
|
|
344
|
+
export const DescribeBudgetActionRequestFilterSensitiveLog = (obj) => ({
|
|
345
|
+
...obj,
|
|
346
|
+
});
|
|
347
|
+
export const DescribeBudgetActionResponseFilterSensitiveLog = (obj) => ({
|
|
348
|
+
...obj,
|
|
349
|
+
...(obj.Action && { Action: ActionFilterSensitiveLog(obj.Action) }),
|
|
350
|
+
});
|
|
351
|
+
export const DescribeBudgetActionHistoriesRequestFilterSensitiveLog = (obj) => ({
|
|
352
|
+
...obj,
|
|
353
|
+
});
|
|
354
|
+
export const DescribeBudgetActionHistoriesResponseFilterSensitiveLog = (obj) => ({
|
|
355
|
+
...obj,
|
|
356
|
+
});
|
|
357
|
+
export const DescribeBudgetActionsForAccountRequestFilterSensitiveLog = (obj) => ({
|
|
358
|
+
...obj,
|
|
359
|
+
});
|
|
360
|
+
export const DescribeBudgetActionsForAccountResponseFilterSensitiveLog = (obj) => ({
|
|
361
|
+
...obj,
|
|
362
|
+
});
|
|
363
|
+
export const DescribeBudgetActionsForBudgetRequestFilterSensitiveLog = (obj) => ({
|
|
364
|
+
...obj,
|
|
365
|
+
});
|
|
366
|
+
export const DescribeBudgetActionsForBudgetResponseFilterSensitiveLog = (obj) => ({
|
|
367
|
+
...obj,
|
|
368
|
+
});
|
|
369
|
+
export const DescribeBudgetNotificationsForAccountRequestFilterSensitiveLog = (obj) => ({
|
|
370
|
+
...obj,
|
|
371
|
+
});
|
|
372
|
+
export const BudgetNotificationsForAccountFilterSensitiveLog = (obj) => ({
|
|
373
|
+
...obj,
|
|
374
|
+
});
|
|
375
|
+
export const DescribeBudgetNotificationsForAccountResponseFilterSensitiveLog = (obj) => ({
|
|
376
|
+
...obj,
|
|
377
|
+
});
|
|
378
|
+
export const DescribeBudgetPerformanceHistoryRequestFilterSensitiveLog = (obj) => ({
|
|
379
|
+
...obj,
|
|
380
|
+
});
|
|
381
|
+
export const BudgetedAndActualAmountsFilterSensitiveLog = (obj) => ({
|
|
382
|
+
...obj,
|
|
383
|
+
});
|
|
384
|
+
export const BudgetPerformanceHistoryFilterSensitiveLog = (obj) => ({
|
|
385
|
+
...obj,
|
|
386
|
+
});
|
|
387
|
+
export const DescribeBudgetPerformanceHistoryResponseFilterSensitiveLog = (obj) => ({
|
|
388
|
+
...obj,
|
|
389
|
+
});
|
|
390
|
+
export const DescribeBudgetsRequestFilterSensitiveLog = (obj) => ({
|
|
391
|
+
...obj,
|
|
392
|
+
});
|
|
393
|
+
export const DescribeBudgetsResponseFilterSensitiveLog = (obj) => ({
|
|
394
|
+
...obj,
|
|
395
|
+
});
|
|
396
|
+
export const DescribeNotificationsForBudgetRequestFilterSensitiveLog = (obj) => ({
|
|
397
|
+
...obj,
|
|
398
|
+
});
|
|
399
|
+
export const DescribeNotificationsForBudgetResponseFilterSensitiveLog = (obj) => ({
|
|
400
|
+
...obj,
|
|
401
|
+
});
|
|
402
|
+
export const DescribeSubscribersForNotificationRequestFilterSensitiveLog = (obj) => ({
|
|
403
|
+
...obj,
|
|
404
|
+
});
|
|
405
|
+
export const DescribeSubscribersForNotificationResponseFilterSensitiveLog = (obj) => ({
|
|
406
|
+
...obj,
|
|
407
|
+
...(obj.Subscribers && { Subscribers: obj.Subscribers.map((item) => SubscriberFilterSensitiveLog(item)) }),
|
|
408
|
+
});
|
|
409
|
+
export const ExecuteBudgetActionRequestFilterSensitiveLog = (obj) => ({
|
|
410
|
+
...obj,
|
|
411
|
+
});
|
|
412
|
+
export const ExecuteBudgetActionResponseFilterSensitiveLog = (obj) => ({
|
|
413
|
+
...obj,
|
|
414
|
+
});
|
|
415
|
+
export const UpdateBudgetRequestFilterSensitiveLog = (obj) => ({
|
|
416
|
+
...obj,
|
|
417
|
+
});
|
|
418
|
+
export const UpdateBudgetResponseFilterSensitiveLog = (obj) => ({
|
|
419
|
+
...obj,
|
|
420
|
+
});
|
|
421
|
+
export const UpdateBudgetActionRequestFilterSensitiveLog = (obj) => ({
|
|
422
|
+
...obj,
|
|
423
|
+
...(obj.Subscribers && { Subscribers: obj.Subscribers.map((item) => SubscriberFilterSensitiveLog(item)) }),
|
|
424
|
+
});
|
|
425
|
+
export const UpdateBudgetActionResponseFilterSensitiveLog = (obj) => ({
|
|
426
|
+
...obj,
|
|
427
|
+
...(obj.OldAction && { OldAction: ActionFilterSensitiveLog(obj.OldAction) }),
|
|
428
|
+
...(obj.NewAction && { NewAction: ActionFilterSensitiveLog(obj.NewAction) }),
|
|
429
|
+
});
|
|
430
|
+
export const UpdateNotificationRequestFilterSensitiveLog = (obj) => ({
|
|
431
|
+
...obj,
|
|
432
|
+
});
|
|
433
|
+
export const UpdateNotificationResponseFilterSensitiveLog = (obj) => ({
|
|
434
|
+
...obj,
|
|
435
|
+
});
|
|
436
|
+
export const UpdateSubscriberRequestFilterSensitiveLog = (obj) => ({
|
|
437
|
+
...obj,
|
|
438
|
+
...(obj.OldSubscriber && { OldSubscriber: SubscriberFilterSensitiveLog(obj.OldSubscriber) }),
|
|
439
|
+
...(obj.NewSubscriber && { NewSubscriber: SubscriberFilterSensitiveLog(obj.NewSubscriber) }),
|
|
440
|
+
});
|
|
441
|
+
export const UpdateSubscriberResponseFilterSensitiveLog = (obj) => ({
|
|
442
|
+
...obj,
|
|
443
|
+
});
|