@aws-sdk/client-budgets 3.131.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateBudgetActionCommand.js +2 -2
- package/dist-cjs/commands/CreateBudgetCommand.js +2 -2
- package/dist-cjs/commands/CreateNotificationCommand.js +2 -2
- package/dist-cjs/commands/CreateSubscriberCommand.js +2 -2
- package/dist-cjs/commands/DeleteBudgetActionCommand.js +2 -2
- package/dist-cjs/commands/DeleteBudgetCommand.js +2 -2
- package/dist-cjs/commands/DeleteNotificationCommand.js +2 -2
- package/dist-cjs/commands/DeleteSubscriberCommand.js +2 -2
- package/dist-cjs/commands/DescribeBudgetActionCommand.js +2 -2
- package/dist-cjs/commands/DescribeBudgetActionHistoriesCommand.js +2 -2
- package/dist-cjs/commands/DescribeBudgetActionsForAccountCommand.js +2 -2
- package/dist-cjs/commands/DescribeBudgetActionsForBudgetCommand.js +2 -2
- package/dist-cjs/commands/DescribeBudgetCommand.js +2 -2
- package/dist-cjs/commands/DescribeBudgetNotificationsForAccountCommand.js +2 -2
- package/dist-cjs/commands/DescribeBudgetPerformanceHistoryCommand.js +2 -2
- package/dist-cjs/commands/DescribeBudgetsCommand.js +2 -2
- package/dist-cjs/commands/DescribeNotificationsForBudgetCommand.js +2 -2
- package/dist-cjs/commands/DescribeSubscribersForNotificationCommand.js +2 -2
- package/dist-cjs/commands/ExecuteBudgetActionCommand.js +2 -2
- package/dist-cjs/commands/UpdateBudgetActionCommand.js +2 -2
- package/dist-cjs/commands/UpdateBudgetCommand.js +2 -2
- package/dist-cjs/commands/UpdateNotificationCommand.js +2 -2
- package/dist-cjs/commands/UpdateSubscriberCommand.js +2 -2
- package/dist-cjs/models/models_0.js +289 -423
- package/dist-cjs/protocols/Aws_json1_1.js +115 -208
- package/dist-es/commands/CreateBudgetActionCommand.js +3 -3
- package/dist-es/commands/CreateBudgetCommand.js +3 -3
- package/dist-es/commands/CreateNotificationCommand.js +3 -3
- package/dist-es/commands/CreateSubscriberCommand.js +3 -3
- package/dist-es/commands/DeleteBudgetActionCommand.js +3 -3
- package/dist-es/commands/DeleteBudgetCommand.js +3 -3
- package/dist-es/commands/DeleteNotificationCommand.js +3 -3
- package/dist-es/commands/DeleteSubscriberCommand.js +3 -3
- package/dist-es/commands/DescribeBudgetActionCommand.js +3 -3
- package/dist-es/commands/DescribeBudgetActionHistoriesCommand.js +3 -3
- package/dist-es/commands/DescribeBudgetActionsForAccountCommand.js +3 -3
- package/dist-es/commands/DescribeBudgetActionsForBudgetCommand.js +3 -3
- package/dist-es/commands/DescribeBudgetCommand.js +3 -3
- package/dist-es/commands/DescribeBudgetNotificationsForAccountCommand.js +3 -3
- package/dist-es/commands/DescribeBudgetPerformanceHistoryCommand.js +3 -3
- package/dist-es/commands/DescribeBudgetsCommand.js +3 -3
- package/dist-es/commands/DescribeNotificationsForBudgetCommand.js +3 -3
- package/dist-es/commands/DescribeSubscribersForNotificationCommand.js +3 -3
- package/dist-es/commands/ExecuteBudgetActionCommand.js +3 -3
- package/dist-es/commands/UpdateBudgetActionCommand.js +3 -3
- package/dist-es/commands/UpdateBudgetCommand.js +3 -3
- package/dist-es/commands/UpdateNotificationCommand.js +3 -3
- package/dist-es/commands/UpdateSubscriberCommand.js +3 -3
- package/dist-es/models/models_0.js +69 -270
- package/dist-es/protocols/Aws_json1_1.js +185 -209
- package/dist-types/models/models_0.d.ts +268 -402
- package/dist-types/ts3.4/models/models_0.d.ts +134 -268
- package/package.json +6 -6
|
@@ -32,12 +32,6 @@ export interface ActionThreshold {
|
|
|
32
32
|
*/
|
|
33
33
|
ActionThresholdType: ThresholdType | string | undefined;
|
|
34
34
|
}
|
|
35
|
-
export declare namespace ActionThreshold {
|
|
36
|
-
/**
|
|
37
|
-
* @internal
|
|
38
|
-
*/
|
|
39
|
-
const filterSensitiveLog: (obj: ActionThreshold) => any;
|
|
40
|
-
}
|
|
41
35
|
export declare enum ActionType {
|
|
42
36
|
IAM = "APPLY_IAM_POLICY",
|
|
43
37
|
SCP = "APPLY_SCP_POLICY",
|
|
@@ -68,12 +62,6 @@ export interface IamActionDefinition {
|
|
|
68
62
|
*/
|
|
69
63
|
Users?: string[];
|
|
70
64
|
}
|
|
71
|
-
export declare namespace IamActionDefinition {
|
|
72
|
-
/**
|
|
73
|
-
* @internal
|
|
74
|
-
*/
|
|
75
|
-
const filterSensitiveLog: (obj: IamActionDefinition) => any;
|
|
76
|
-
}
|
|
77
65
|
/**
|
|
78
66
|
* <p>The service control policies (SCP) action definition details. </p>
|
|
79
67
|
*/
|
|
@@ -87,12 +75,6 @@ export interface ScpActionDefinition {
|
|
|
87
75
|
*/
|
|
88
76
|
TargetIds: string[] | undefined;
|
|
89
77
|
}
|
|
90
|
-
export declare namespace ScpActionDefinition {
|
|
91
|
-
/**
|
|
92
|
-
* @internal
|
|
93
|
-
*/
|
|
94
|
-
const filterSensitiveLog: (obj: ScpActionDefinition) => any;
|
|
95
|
-
}
|
|
96
78
|
export declare enum ActionSubType {
|
|
97
79
|
STOP_EC2 = "STOP_EC2_INSTANCES",
|
|
98
80
|
STOP_RDS = "STOP_RDS_INSTANCES"
|
|
@@ -114,12 +96,6 @@ export interface SsmActionDefinition {
|
|
|
114
96
|
*/
|
|
115
97
|
InstanceIds: string[] | undefined;
|
|
116
98
|
}
|
|
117
|
-
export declare namespace SsmActionDefinition {
|
|
118
|
-
/**
|
|
119
|
-
* @internal
|
|
120
|
-
*/
|
|
121
|
-
const filterSensitiveLog: (obj: SsmActionDefinition) => any;
|
|
122
|
-
}
|
|
123
99
|
/**
|
|
124
100
|
* <p>Specifies all of the type-specific parameters. </p>
|
|
125
101
|
*/
|
|
@@ -137,12 +113,6 @@ export interface Definition {
|
|
|
137
113
|
*/
|
|
138
114
|
SsmActionDefinition?: SsmActionDefinition;
|
|
139
115
|
}
|
|
140
|
-
export declare namespace Definition {
|
|
141
|
-
/**
|
|
142
|
-
* @internal
|
|
143
|
-
*/
|
|
144
|
-
const filterSensitiveLog: (obj: Definition) => any;
|
|
145
|
-
}
|
|
146
116
|
export declare enum NotificationType {
|
|
147
117
|
ACTUAL = "ACTUAL",
|
|
148
118
|
FORECASTED = "FORECASTED"
|
|
@@ -188,12 +158,6 @@ export interface Subscriber {
|
|
|
188
158
|
*/
|
|
189
159
|
Address: string | undefined;
|
|
190
160
|
}
|
|
191
|
-
export declare namespace Subscriber {
|
|
192
|
-
/**
|
|
193
|
-
* @internal
|
|
194
|
-
*/
|
|
195
|
-
const filterSensitiveLog: (obj: Subscriber) => any;
|
|
196
|
-
}
|
|
197
161
|
/**
|
|
198
162
|
* <p>A budget action resource. </p>
|
|
199
163
|
*/
|
|
@@ -241,12 +205,6 @@ export interface Action {
|
|
|
241
205
|
*/
|
|
242
206
|
Subscribers: Subscriber[] | undefined;
|
|
243
207
|
}
|
|
244
|
-
export declare namespace Action {
|
|
245
|
-
/**
|
|
246
|
-
* @internal
|
|
247
|
-
*/
|
|
248
|
-
const filterSensitiveLog: (obj: Action) => any;
|
|
249
|
-
}
|
|
250
208
|
/**
|
|
251
209
|
* <p>The description of the details for the event. </p>
|
|
252
210
|
*/
|
|
@@ -260,12 +218,6 @@ export interface ActionHistoryDetails {
|
|
|
260
218
|
*/
|
|
261
219
|
Action: Action | undefined;
|
|
262
220
|
}
|
|
263
|
-
export declare namespace ActionHistoryDetails {
|
|
264
|
-
/**
|
|
265
|
-
* @internal
|
|
266
|
-
*/
|
|
267
|
-
const filterSensitiveLog: (obj: ActionHistoryDetails) => any;
|
|
268
|
-
}
|
|
269
221
|
export declare enum EventType {
|
|
270
222
|
CreateAction = "CREATE_ACTION",
|
|
271
223
|
DeleteAction = "DELETE_ACTION",
|
|
@@ -295,12 +247,6 @@ export interface ActionHistory {
|
|
|
295
247
|
*/
|
|
296
248
|
ActionHistoryDetails: ActionHistoryDetails | undefined;
|
|
297
249
|
}
|
|
298
|
-
export declare namespace ActionHistory {
|
|
299
|
-
/**
|
|
300
|
-
* @internal
|
|
301
|
-
*/
|
|
302
|
-
const filterSensitiveLog: (obj: ActionHistory) => any;
|
|
303
|
-
}
|
|
304
250
|
export declare enum AutoAdjustType {
|
|
305
251
|
FORECAST = "FORECAST",
|
|
306
252
|
HISTORICAL = "HISTORICAL"
|
|
@@ -334,12 +280,6 @@ export interface HistoricalOptions {
|
|
|
334
280
|
*/
|
|
335
281
|
LookBackAvailablePeriods?: number;
|
|
336
282
|
}
|
|
337
|
-
export declare namespace HistoricalOptions {
|
|
338
|
-
/**
|
|
339
|
-
* @internal
|
|
340
|
-
*/
|
|
341
|
-
const filterSensitiveLog: (obj: HistoricalOptions) => any;
|
|
342
|
-
}
|
|
343
283
|
/**
|
|
344
284
|
* <p>The parameters that determine the budget amount for an auto-adjusting budget.</p>
|
|
345
285
|
*/
|
|
@@ -357,12 +297,6 @@ export interface AutoAdjustData {
|
|
|
357
297
|
*/
|
|
358
298
|
LastAutoAdjustTime?: Date;
|
|
359
299
|
}
|
|
360
|
-
export declare namespace AutoAdjustData {
|
|
361
|
-
/**
|
|
362
|
-
* @internal
|
|
363
|
-
*/
|
|
364
|
-
const filterSensitiveLog: (obj: AutoAdjustData) => any;
|
|
365
|
-
}
|
|
366
300
|
/**
|
|
367
301
|
* <p>The amount of cost or usage that's measured for a budget.</p>
|
|
368
302
|
* <p>For example, a <code>Spend</code> for <code>3 GB</code> of S3 usage has the following
|
|
@@ -390,12 +324,6 @@ export interface Spend {
|
|
|
390
324
|
*/
|
|
391
325
|
Unit: string | undefined;
|
|
392
326
|
}
|
|
393
|
-
export declare namespace Spend {
|
|
394
|
-
/**
|
|
395
|
-
* @internal
|
|
396
|
-
*/
|
|
397
|
-
const filterSensitiveLog: (obj: Spend) => any;
|
|
398
|
-
}
|
|
399
327
|
export declare enum BudgetType {
|
|
400
328
|
Cost = "COST",
|
|
401
329
|
RICoverage = "RI_COVERAGE",
|
|
@@ -424,12 +352,6 @@ export interface CalculatedSpend {
|
|
|
424
352
|
*/
|
|
425
353
|
ForecastedSpend?: Spend;
|
|
426
354
|
}
|
|
427
|
-
export declare namespace CalculatedSpend {
|
|
428
|
-
/**
|
|
429
|
-
* @internal
|
|
430
|
-
*/
|
|
431
|
-
const filterSensitiveLog: (obj: CalculatedSpend) => any;
|
|
432
|
-
}
|
|
433
355
|
/**
|
|
434
356
|
* <p>The types of cost that are included in a <code>COST</code> budget, such as tax and subscriptions.</p>
|
|
435
357
|
* <p>
|
|
@@ -494,12 +416,6 @@ export interface CostTypes {
|
|
|
494
416
|
*/
|
|
495
417
|
UseAmortized?: boolean;
|
|
496
418
|
}
|
|
497
|
-
export declare namespace CostTypes {
|
|
498
|
-
/**
|
|
499
|
-
* @internal
|
|
500
|
-
*/
|
|
501
|
-
const filterSensitiveLog: (obj: CostTypes) => any;
|
|
502
|
-
}
|
|
503
419
|
/**
|
|
504
420
|
* <p>The period of time that's covered by a budget. The period has a start date and an end date.
|
|
505
421
|
* The start date must come before the end date. There are no restrictions on the end date. </p>
|
|
@@ -518,12 +434,6 @@ export interface TimePeriod {
|
|
|
518
434
|
*/
|
|
519
435
|
End?: Date;
|
|
520
436
|
}
|
|
521
|
-
export declare namespace TimePeriod {
|
|
522
|
-
/**
|
|
523
|
-
* @internal
|
|
524
|
-
*/
|
|
525
|
-
const filterSensitiveLog: (obj: TimePeriod) => any;
|
|
526
|
-
}
|
|
527
437
|
export declare enum TimeUnit {
|
|
528
438
|
ANNUALLY = "ANNUALLY",
|
|
529
439
|
DAILY = "DAILY",
|
|
@@ -645,12 +555,6 @@ export interface Budget {
|
|
|
645
555
|
*/
|
|
646
556
|
AutoAdjustData?: AutoAdjustData;
|
|
647
557
|
}
|
|
648
|
-
export declare namespace Budget {
|
|
649
|
-
/**
|
|
650
|
-
* @internal
|
|
651
|
-
*/
|
|
652
|
-
const filterSensitiveLog: (obj: Budget) => any;
|
|
653
|
-
}
|
|
654
558
|
export declare enum ComparisonOperator {
|
|
655
559
|
EQUAL_TO = "EQUAL_TO",
|
|
656
560
|
GREATER_THAN = "GREATER_THAN",
|
|
@@ -709,12 +613,6 @@ export interface Notification {
|
|
|
709
613
|
*/
|
|
710
614
|
NotificationState?: NotificationState | string;
|
|
711
615
|
}
|
|
712
|
-
export declare namespace Notification {
|
|
713
|
-
/**
|
|
714
|
-
* @internal
|
|
715
|
-
*/
|
|
716
|
-
const filterSensitiveLog: (obj: Notification) => any;
|
|
717
|
-
}
|
|
718
616
|
/**
|
|
719
617
|
* <p>A notification with subscribers. A notification can have one SNS subscriber and up to 10 email subscribers, for a total of 11 subscribers.</p>
|
|
720
618
|
*/
|
|
@@ -728,12 +626,6 @@ export interface NotificationWithSubscribers {
|
|
|
728
626
|
*/
|
|
729
627
|
Subscribers: Subscriber[] | undefined;
|
|
730
628
|
}
|
|
731
|
-
export declare namespace NotificationWithSubscribers {
|
|
732
|
-
/**
|
|
733
|
-
* @internal
|
|
734
|
-
*/
|
|
735
|
-
const filterSensitiveLog: (obj: NotificationWithSubscribers) => any;
|
|
736
|
-
}
|
|
737
629
|
/**
|
|
738
630
|
* <p> Request of CreateBudget </p>
|
|
739
631
|
*/
|
|
@@ -751,23 +643,11 @@ export interface CreateBudgetRequest {
|
|
|
751
643
|
*/
|
|
752
644
|
NotificationsWithSubscribers?: NotificationWithSubscribers[];
|
|
753
645
|
}
|
|
754
|
-
export declare namespace CreateBudgetRequest {
|
|
755
|
-
/**
|
|
756
|
-
* @internal
|
|
757
|
-
*/
|
|
758
|
-
const filterSensitiveLog: (obj: CreateBudgetRequest) => any;
|
|
759
|
-
}
|
|
760
646
|
/**
|
|
761
647
|
* <p> Response of CreateBudget </p>
|
|
762
648
|
*/
|
|
763
649
|
export interface CreateBudgetResponse {
|
|
764
650
|
}
|
|
765
|
-
export declare namespace CreateBudgetResponse {
|
|
766
|
-
/**
|
|
767
|
-
* @internal
|
|
768
|
-
*/
|
|
769
|
-
const filterSensitiveLog: (obj: CreateBudgetResponse) => any;
|
|
770
|
-
}
|
|
771
651
|
/**
|
|
772
652
|
* <p>You've exceeded the notification or subscriber limit.</p>
|
|
773
653
|
*/
|
|
@@ -889,12 +769,6 @@ export interface CreateBudgetActionRequest {
|
|
|
889
769
|
*/
|
|
890
770
|
Subscribers: Subscriber[] | undefined;
|
|
891
771
|
}
|
|
892
|
-
export declare namespace CreateBudgetActionRequest {
|
|
893
|
-
/**
|
|
894
|
-
* @internal
|
|
895
|
-
*/
|
|
896
|
-
const filterSensitiveLog: (obj: CreateBudgetActionRequest) => any;
|
|
897
|
-
}
|
|
898
772
|
export interface CreateBudgetActionResponse {
|
|
899
773
|
/**
|
|
900
774
|
* <p>The account ID of the user. It's a 12-digit number.</p>
|
|
@@ -911,12 +785,6 @@ export interface CreateBudgetActionResponse {
|
|
|
911
785
|
*/
|
|
912
786
|
ActionId: string | undefined;
|
|
913
787
|
}
|
|
914
|
-
export declare namespace CreateBudgetActionResponse {
|
|
915
|
-
/**
|
|
916
|
-
* @internal
|
|
917
|
-
*/
|
|
918
|
-
const filterSensitiveLog: (obj: CreateBudgetActionResponse) => any;
|
|
919
|
-
}
|
|
920
788
|
/**
|
|
921
789
|
* <p>We can’t locate the resource that you specified.</p>
|
|
922
790
|
*/
|
|
@@ -953,23 +821,11 @@ export interface CreateNotificationRequest {
|
|
|
953
821
|
*/
|
|
954
822
|
Subscribers: Subscriber[] | undefined;
|
|
955
823
|
}
|
|
956
|
-
export declare namespace CreateNotificationRequest {
|
|
957
|
-
/**
|
|
958
|
-
* @internal
|
|
959
|
-
*/
|
|
960
|
-
const filterSensitiveLog: (obj: CreateNotificationRequest) => any;
|
|
961
|
-
}
|
|
962
824
|
/**
|
|
963
825
|
* <p> Response of CreateNotification </p>
|
|
964
826
|
*/
|
|
965
827
|
export interface CreateNotificationResponse {
|
|
966
828
|
}
|
|
967
|
-
export declare namespace CreateNotificationResponse {
|
|
968
|
-
/**
|
|
969
|
-
* @internal
|
|
970
|
-
*/
|
|
971
|
-
const filterSensitiveLog: (obj: CreateNotificationResponse) => any;
|
|
972
|
-
}
|
|
973
829
|
/**
|
|
974
830
|
* <p> Request of CreateSubscriber </p>
|
|
975
831
|
*/
|
|
@@ -991,23 +847,11 @@ export interface CreateSubscriberRequest {
|
|
|
991
847
|
*/
|
|
992
848
|
Subscriber: Subscriber | undefined;
|
|
993
849
|
}
|
|
994
|
-
export declare namespace CreateSubscriberRequest {
|
|
995
|
-
/**
|
|
996
|
-
* @internal
|
|
997
|
-
*/
|
|
998
|
-
const filterSensitiveLog: (obj: CreateSubscriberRequest) => any;
|
|
999
|
-
}
|
|
1000
850
|
/**
|
|
1001
851
|
* <p> Response of CreateSubscriber </p>
|
|
1002
852
|
*/
|
|
1003
853
|
export interface CreateSubscriberResponse {
|
|
1004
854
|
}
|
|
1005
|
-
export declare namespace CreateSubscriberResponse {
|
|
1006
|
-
/**
|
|
1007
|
-
* @internal
|
|
1008
|
-
*/
|
|
1009
|
-
const filterSensitiveLog: (obj: CreateSubscriberResponse) => any;
|
|
1010
|
-
}
|
|
1011
855
|
/**
|
|
1012
856
|
* <p> Request of DeleteBudget </p>
|
|
1013
857
|
*/
|
|
@@ -1021,23 +865,11 @@ export interface DeleteBudgetRequest {
|
|
|
1021
865
|
*/
|
|
1022
866
|
BudgetName: string | undefined;
|
|
1023
867
|
}
|
|
1024
|
-
export declare namespace DeleteBudgetRequest {
|
|
1025
|
-
/**
|
|
1026
|
-
* @internal
|
|
1027
|
-
*/
|
|
1028
|
-
const filterSensitiveLog: (obj: DeleteBudgetRequest) => any;
|
|
1029
|
-
}
|
|
1030
868
|
/**
|
|
1031
869
|
* <p> Response of DeleteBudget </p>
|
|
1032
870
|
*/
|
|
1033
871
|
export interface DeleteBudgetResponse {
|
|
1034
872
|
}
|
|
1035
|
-
export declare namespace DeleteBudgetResponse {
|
|
1036
|
-
/**
|
|
1037
|
-
* @internal
|
|
1038
|
-
*/
|
|
1039
|
-
const filterSensitiveLog: (obj: DeleteBudgetResponse) => any;
|
|
1040
|
-
}
|
|
1041
873
|
export interface DeleteBudgetActionRequest {
|
|
1042
874
|
/**
|
|
1043
875
|
* <p>The account ID of the user. It's a 12-digit number.</p>
|
|
@@ -1054,12 +886,6 @@ export interface DeleteBudgetActionRequest {
|
|
|
1054
886
|
*/
|
|
1055
887
|
ActionId: string | undefined;
|
|
1056
888
|
}
|
|
1057
|
-
export declare namespace DeleteBudgetActionRequest {
|
|
1058
|
-
/**
|
|
1059
|
-
* @internal
|
|
1060
|
-
*/
|
|
1061
|
-
const filterSensitiveLog: (obj: DeleteBudgetActionRequest) => any;
|
|
1062
|
-
}
|
|
1063
889
|
export interface DeleteBudgetActionResponse {
|
|
1064
890
|
/**
|
|
1065
891
|
* <p>The account ID of the user. It's a 12-digit number.</p>
|
|
@@ -1074,12 +900,6 @@ export interface DeleteBudgetActionResponse {
|
|
|
1074
900
|
*/
|
|
1075
901
|
Action: Action | undefined;
|
|
1076
902
|
}
|
|
1077
|
-
export declare namespace DeleteBudgetActionResponse {
|
|
1078
|
-
/**
|
|
1079
|
-
* @internal
|
|
1080
|
-
*/
|
|
1081
|
-
const filterSensitiveLog: (obj: DeleteBudgetActionResponse) => any;
|
|
1082
|
-
}
|
|
1083
903
|
/**
|
|
1084
904
|
* <p> The request was received and recognized by the server, but the server rejected that
|
|
1085
905
|
* particular method for the requested resource. </p>
|
|
@@ -1113,23 +933,11 @@ export interface DeleteNotificationRequest {
|
|
|
1113
933
|
*/
|
|
1114
934
|
Notification: Notification | undefined;
|
|
1115
935
|
}
|
|
1116
|
-
export declare namespace DeleteNotificationRequest {
|
|
1117
|
-
/**
|
|
1118
|
-
* @internal
|
|
1119
|
-
*/
|
|
1120
|
-
const filterSensitiveLog: (obj: DeleteNotificationRequest) => any;
|
|
1121
|
-
}
|
|
1122
936
|
/**
|
|
1123
937
|
* <p> Response of DeleteNotification </p>
|
|
1124
938
|
*/
|
|
1125
939
|
export interface DeleteNotificationResponse {
|
|
1126
940
|
}
|
|
1127
|
-
export declare namespace DeleteNotificationResponse {
|
|
1128
|
-
/**
|
|
1129
|
-
* @internal
|
|
1130
|
-
*/
|
|
1131
|
-
const filterSensitiveLog: (obj: DeleteNotificationResponse) => any;
|
|
1132
|
-
}
|
|
1133
941
|
/**
|
|
1134
942
|
* <p> Request of DeleteSubscriber </p>
|
|
1135
943
|
*/
|
|
@@ -1151,23 +959,11 @@ export interface DeleteSubscriberRequest {
|
|
|
1151
959
|
*/
|
|
1152
960
|
Subscriber: Subscriber | undefined;
|
|
1153
961
|
}
|
|
1154
|
-
export declare namespace DeleteSubscriberRequest {
|
|
1155
|
-
/**
|
|
1156
|
-
* @internal
|
|
1157
|
-
*/
|
|
1158
|
-
const filterSensitiveLog: (obj: DeleteSubscriberRequest) => any;
|
|
1159
|
-
}
|
|
1160
962
|
/**
|
|
1161
963
|
* <p> Response of DeleteSubscriber </p>
|
|
1162
964
|
*/
|
|
1163
965
|
export interface DeleteSubscriberResponse {
|
|
1164
966
|
}
|
|
1165
|
-
export declare namespace DeleteSubscriberResponse {
|
|
1166
|
-
/**
|
|
1167
|
-
* @internal
|
|
1168
|
-
*/
|
|
1169
|
-
const filterSensitiveLog: (obj: DeleteSubscriberResponse) => any;
|
|
1170
|
-
}
|
|
1171
967
|
/**
|
|
1172
968
|
* <p> Request of DescribeBudget </p>
|
|
1173
969
|
*/
|
|
@@ -1181,12 +977,6 @@ export interface DescribeBudgetRequest {
|
|
|
1181
977
|
*/
|
|
1182
978
|
BudgetName: string | undefined;
|
|
1183
979
|
}
|
|
1184
|
-
export declare namespace DescribeBudgetRequest {
|
|
1185
|
-
/**
|
|
1186
|
-
* @internal
|
|
1187
|
-
*/
|
|
1188
|
-
const filterSensitiveLog: (obj: DescribeBudgetRequest) => any;
|
|
1189
|
-
}
|
|
1190
980
|
/**
|
|
1191
981
|
* <p> Response of DescribeBudget </p>
|
|
1192
982
|
*/
|
|
@@ -1196,12 +986,6 @@ export interface DescribeBudgetResponse {
|
|
|
1196
986
|
*/
|
|
1197
987
|
Budget?: Budget;
|
|
1198
988
|
}
|
|
1199
|
-
export declare namespace DescribeBudgetResponse {
|
|
1200
|
-
/**
|
|
1201
|
-
* @internal
|
|
1202
|
-
*/
|
|
1203
|
-
const filterSensitiveLog: (obj: DescribeBudgetResponse) => any;
|
|
1204
|
-
}
|
|
1205
989
|
export interface DescribeBudgetActionRequest {
|
|
1206
990
|
/**
|
|
1207
991
|
* <p>The account ID of the user. It's a 12-digit number.</p>
|
|
@@ -1218,12 +1002,6 @@ export interface DescribeBudgetActionRequest {
|
|
|
1218
1002
|
*/
|
|
1219
1003
|
ActionId: string | undefined;
|
|
1220
1004
|
}
|
|
1221
|
-
export declare namespace DescribeBudgetActionRequest {
|
|
1222
|
-
/**
|
|
1223
|
-
* @internal
|
|
1224
|
-
*/
|
|
1225
|
-
const filterSensitiveLog: (obj: DescribeBudgetActionRequest) => any;
|
|
1226
|
-
}
|
|
1227
1005
|
export interface DescribeBudgetActionResponse {
|
|
1228
1006
|
/**
|
|
1229
1007
|
* <p>The account ID of the user. It's a 12-digit number.</p>
|
|
@@ -1240,12 +1018,6 @@ export interface DescribeBudgetActionResponse {
|
|
|
1240
1018
|
*/
|
|
1241
1019
|
Action: Action | undefined;
|
|
1242
1020
|
}
|
|
1243
|
-
export declare namespace DescribeBudgetActionResponse {
|
|
1244
|
-
/**
|
|
1245
|
-
* @internal
|
|
1246
|
-
*/
|
|
1247
|
-
const filterSensitiveLog: (obj: DescribeBudgetActionResponse) => any;
|
|
1248
|
-
}
|
|
1249
1021
|
export interface DescribeBudgetActionHistoriesRequest {
|
|
1250
1022
|
/**
|
|
1251
1023
|
* <p>The account ID of the user. It's a 12-digit number.</p>
|
|
@@ -1275,12 +1047,6 @@ export interface DescribeBudgetActionHistoriesRequest {
|
|
|
1275
1047
|
*/
|
|
1276
1048
|
NextToken?: string;
|
|
1277
1049
|
}
|
|
1278
|
-
export declare namespace DescribeBudgetActionHistoriesRequest {
|
|
1279
|
-
/**
|
|
1280
|
-
* @internal
|
|
1281
|
-
*/
|
|
1282
|
-
const filterSensitiveLog: (obj: DescribeBudgetActionHistoriesRequest) => any;
|
|
1283
|
-
}
|
|
1284
1050
|
export interface DescribeBudgetActionHistoriesResponse {
|
|
1285
1051
|
/**
|
|
1286
1052
|
* <p>
|
|
@@ -1293,12 +1059,6 @@ export interface DescribeBudgetActionHistoriesResponse {
|
|
|
1293
1059
|
*/
|
|
1294
1060
|
NextToken?: string;
|
|
1295
1061
|
}
|
|
1296
|
-
export declare namespace DescribeBudgetActionHistoriesResponse {
|
|
1297
|
-
/**
|
|
1298
|
-
* @internal
|
|
1299
|
-
*/
|
|
1300
|
-
const filterSensitiveLog: (obj: DescribeBudgetActionHistoriesResponse) => any;
|
|
1301
|
-
}
|
|
1302
1062
|
/**
|
|
1303
1063
|
* <p>The pagination token is invalid.</p>
|
|
1304
1064
|
*/
|
|
@@ -1328,12 +1088,6 @@ export interface DescribeBudgetActionsForAccountRequest {
|
|
|
1328
1088
|
*/
|
|
1329
1089
|
NextToken?: string;
|
|
1330
1090
|
}
|
|
1331
|
-
export declare namespace DescribeBudgetActionsForAccountRequest {
|
|
1332
|
-
/**
|
|
1333
|
-
* @internal
|
|
1334
|
-
*/
|
|
1335
|
-
const filterSensitiveLog: (obj: DescribeBudgetActionsForAccountRequest) => any;
|
|
1336
|
-
}
|
|
1337
1091
|
export interface DescribeBudgetActionsForAccountResponse {
|
|
1338
1092
|
/**
|
|
1339
1093
|
* <p>
|
|
@@ -1346,12 +1100,6 @@ export interface DescribeBudgetActionsForAccountResponse {
|
|
|
1346
1100
|
*/
|
|
1347
1101
|
NextToken?: string;
|
|
1348
1102
|
}
|
|
1349
|
-
export declare namespace DescribeBudgetActionsForAccountResponse {
|
|
1350
|
-
/**
|
|
1351
|
-
* @internal
|
|
1352
|
-
*/
|
|
1353
|
-
const filterSensitiveLog: (obj: DescribeBudgetActionsForAccountResponse) => any;
|
|
1354
|
-
}
|
|
1355
1103
|
export interface DescribeBudgetActionsForBudgetRequest {
|
|
1356
1104
|
/**
|
|
1357
1105
|
* <p>The account ID of the user. It's a 12-digit number.</p>
|
|
@@ -1370,12 +1118,6 @@ export interface DescribeBudgetActionsForBudgetRequest {
|
|
|
1370
1118
|
*/
|
|
1371
1119
|
NextToken?: string;
|
|
1372
1120
|
}
|
|
1373
|
-
export declare namespace DescribeBudgetActionsForBudgetRequest {
|
|
1374
|
-
/**
|
|
1375
|
-
* @internal
|
|
1376
|
-
*/
|
|
1377
|
-
const filterSensitiveLog: (obj: DescribeBudgetActionsForBudgetRequest) => any;
|
|
1378
|
-
}
|
|
1379
1121
|
export interface DescribeBudgetActionsForBudgetResponse {
|
|
1380
1122
|
/**
|
|
1381
1123
|
* <p>
|
|
@@ -1388,12 +1130,6 @@ export interface DescribeBudgetActionsForBudgetResponse {
|
|
|
1388
1130
|
*/
|
|
1389
1131
|
NextToken?: string;
|
|
1390
1132
|
}
|
|
1391
|
-
export declare namespace DescribeBudgetActionsForBudgetResponse {
|
|
1392
|
-
/**
|
|
1393
|
-
* @internal
|
|
1394
|
-
*/
|
|
1395
|
-
const filterSensitiveLog: (obj: DescribeBudgetActionsForBudgetResponse) => any;
|
|
1396
|
-
}
|
|
1397
1133
|
export interface DescribeBudgetNotificationsForAccountRequest {
|
|
1398
1134
|
/**
|
|
1399
1135
|
* <p>The account ID of the user. It's a 12-digit number.</p>
|
|
@@ -1410,12 +1146,6 @@ export interface DescribeBudgetNotificationsForAccountRequest {
|
|
|
1410
1146
|
*/
|
|
1411
1147
|
NextToken?: string;
|
|
1412
1148
|
}
|
|
1413
|
-
export declare namespace DescribeBudgetNotificationsForAccountRequest {
|
|
1414
|
-
/**
|
|
1415
|
-
* @internal
|
|
1416
|
-
*/
|
|
1417
|
-
const filterSensitiveLog: (obj: DescribeBudgetNotificationsForAccountRequest) => any;
|
|
1418
|
-
}
|
|
1419
1149
|
/**
|
|
1420
1150
|
* <p>
|
|
1421
1151
|
* The budget name and associated notifications for an account.
|
|
@@ -1431,12 +1161,6 @@ export interface BudgetNotificationsForAccount {
|
|
|
1431
1161
|
*/
|
|
1432
1162
|
BudgetName?: string;
|
|
1433
1163
|
}
|
|
1434
|
-
export declare namespace BudgetNotificationsForAccount {
|
|
1435
|
-
/**
|
|
1436
|
-
* @internal
|
|
1437
|
-
*/
|
|
1438
|
-
const filterSensitiveLog: (obj: BudgetNotificationsForAccount) => any;
|
|
1439
|
-
}
|
|
1440
1164
|
export interface DescribeBudgetNotificationsForAccountResponse {
|
|
1441
1165
|
/**
|
|
1442
1166
|
* <p>
|
|
@@ -1449,12 +1173,6 @@ export interface DescribeBudgetNotificationsForAccountResponse {
|
|
|
1449
1173
|
*/
|
|
1450
1174
|
NextToken?: string;
|
|
1451
1175
|
}
|
|
1452
|
-
export declare namespace DescribeBudgetNotificationsForAccountResponse {
|
|
1453
|
-
/**
|
|
1454
|
-
* @internal
|
|
1455
|
-
*/
|
|
1456
|
-
const filterSensitiveLog: (obj: DescribeBudgetNotificationsForAccountResponse) => any;
|
|
1457
|
-
}
|
|
1458
1176
|
/**
|
|
1459
1177
|
* <p>The pagination token expired.</p>
|
|
1460
1178
|
*/
|
|
@@ -1492,12 +1210,6 @@ export interface DescribeBudgetPerformanceHistoryRequest {
|
|
|
1492
1210
|
*/
|
|
1493
1211
|
NextToken?: string;
|
|
1494
1212
|
}
|
|
1495
|
-
export declare namespace DescribeBudgetPerformanceHistoryRequest {
|
|
1496
|
-
/**
|
|
1497
|
-
* @internal
|
|
1498
|
-
*/
|
|
1499
|
-
const filterSensitiveLog: (obj: DescribeBudgetPerformanceHistoryRequest) => any;
|
|
1500
|
-
}
|
|
1501
1213
|
/**
|
|
1502
1214
|
* <p>The amount of cost or usage that you created the budget for, compared to your actual costs or usage.</p>
|
|
1503
1215
|
*/
|
|
@@ -1515,12 +1227,6 @@ export interface BudgetedAndActualAmounts {
|
|
|
1515
1227
|
*/
|
|
1516
1228
|
TimePeriod?: TimePeriod;
|
|
1517
1229
|
}
|
|
1518
|
-
export declare namespace BudgetedAndActualAmounts {
|
|
1519
|
-
/**
|
|
1520
|
-
* @internal
|
|
1521
|
-
*/
|
|
1522
|
-
const filterSensitiveLog: (obj: BudgetedAndActualAmounts) => any;
|
|
1523
|
-
}
|
|
1524
1230
|
/**
|
|
1525
1231
|
* <p>A history of the state of a budget at the end of the budget's specified time period.</p>
|
|
1526
1232
|
*/
|
|
@@ -1553,12 +1259,6 @@ export interface BudgetPerformanceHistory {
|
|
|
1553
1259
|
*/
|
|
1554
1260
|
BudgetedAndActualAmountsList?: BudgetedAndActualAmounts[];
|
|
1555
1261
|
}
|
|
1556
|
-
export declare namespace BudgetPerformanceHistory {
|
|
1557
|
-
/**
|
|
1558
|
-
* @internal
|
|
1559
|
-
*/
|
|
1560
|
-
const filterSensitiveLog: (obj: BudgetPerformanceHistory) => any;
|
|
1561
|
-
}
|
|
1562
1262
|
export interface DescribeBudgetPerformanceHistoryResponse {
|
|
1563
1263
|
/**
|
|
1564
1264
|
* <p>The history of how often the budget has gone into an <code>ALARM</code> state.</p>
|
|
@@ -1570,12 +1270,6 @@ export interface DescribeBudgetPerformanceHistoryResponse {
|
|
|
1570
1270
|
*/
|
|
1571
1271
|
NextToken?: string;
|
|
1572
1272
|
}
|
|
1573
|
-
export declare namespace DescribeBudgetPerformanceHistoryResponse {
|
|
1574
|
-
/**
|
|
1575
|
-
* @internal
|
|
1576
|
-
*/
|
|
1577
|
-
const filterSensitiveLog: (obj: DescribeBudgetPerformanceHistoryResponse) => any;
|
|
1578
|
-
}
|
|
1579
1273
|
/**
|
|
1580
1274
|
* <p> Request of DescribeBudgets </p>
|
|
1581
1275
|
*/
|
|
@@ -1593,12 +1287,6 @@ export interface DescribeBudgetsRequest {
|
|
|
1593
1287
|
*/
|
|
1594
1288
|
NextToken?: string;
|
|
1595
1289
|
}
|
|
1596
|
-
export declare namespace DescribeBudgetsRequest {
|
|
1597
|
-
/**
|
|
1598
|
-
* @internal
|
|
1599
|
-
*/
|
|
1600
|
-
const filterSensitiveLog: (obj: DescribeBudgetsRequest) => any;
|
|
1601
|
-
}
|
|
1602
1290
|
/**
|
|
1603
1291
|
* <p> Response of DescribeBudgets </p>
|
|
1604
1292
|
*/
|
|
@@ -1612,12 +1300,6 @@ export interface DescribeBudgetsResponse {
|
|
|
1612
1300
|
*/
|
|
1613
1301
|
NextToken?: string;
|
|
1614
1302
|
}
|
|
1615
|
-
export declare namespace DescribeBudgetsResponse {
|
|
1616
|
-
/**
|
|
1617
|
-
* @internal
|
|
1618
|
-
*/
|
|
1619
|
-
const filterSensitiveLog: (obj: DescribeBudgetsResponse) => any;
|
|
1620
|
-
}
|
|
1621
1303
|
/**
|
|
1622
1304
|
* <p> Request of DescribeNotificationsForBudget </p>
|
|
1623
1305
|
*/
|
|
@@ -1639,12 +1321,6 @@ export interface DescribeNotificationsForBudgetRequest {
|
|
|
1639
1321
|
*/
|
|
1640
1322
|
NextToken?: string;
|
|
1641
1323
|
}
|
|
1642
|
-
export declare namespace DescribeNotificationsForBudgetRequest {
|
|
1643
|
-
/**
|
|
1644
|
-
* @internal
|
|
1645
|
-
*/
|
|
1646
|
-
const filterSensitiveLog: (obj: DescribeNotificationsForBudgetRequest) => any;
|
|
1647
|
-
}
|
|
1648
1324
|
/**
|
|
1649
1325
|
* <p> Response of GetNotificationsForBudget </p>
|
|
1650
1326
|
*/
|
|
@@ -1658,12 +1334,6 @@ export interface DescribeNotificationsForBudgetResponse {
|
|
|
1658
1334
|
*/
|
|
1659
1335
|
NextToken?: string;
|
|
1660
1336
|
}
|
|
1661
|
-
export declare namespace DescribeNotificationsForBudgetResponse {
|
|
1662
|
-
/**
|
|
1663
|
-
* @internal
|
|
1664
|
-
*/
|
|
1665
|
-
const filterSensitiveLog: (obj: DescribeNotificationsForBudgetResponse) => any;
|
|
1666
|
-
}
|
|
1667
1337
|
/**
|
|
1668
1338
|
* <p> Request of DescribeSubscribersForNotification </p>
|
|
1669
1339
|
*/
|
|
@@ -1689,12 +1359,6 @@ export interface DescribeSubscribersForNotificationRequest {
|
|
|
1689
1359
|
*/
|
|
1690
1360
|
NextToken?: string;
|
|
1691
1361
|
}
|
|
1692
|
-
export declare namespace DescribeSubscribersForNotificationRequest {
|
|
1693
|
-
/**
|
|
1694
|
-
* @internal
|
|
1695
|
-
*/
|
|
1696
|
-
const filterSensitiveLog: (obj: DescribeSubscribersForNotificationRequest) => any;
|
|
1697
|
-
}
|
|
1698
1362
|
/**
|
|
1699
1363
|
* <p> Response of DescribeSubscribersForNotification </p>
|
|
1700
1364
|
*/
|
|
@@ -1708,12 +1372,6 @@ export interface DescribeSubscribersForNotificationResponse {
|
|
|
1708
1372
|
*/
|
|
1709
1373
|
NextToken?: string;
|
|
1710
1374
|
}
|
|
1711
|
-
export declare namespace DescribeSubscribersForNotificationResponse {
|
|
1712
|
-
/**
|
|
1713
|
-
* @internal
|
|
1714
|
-
*/
|
|
1715
|
-
const filterSensitiveLog: (obj: DescribeSubscribersForNotificationResponse) => any;
|
|
1716
|
-
}
|
|
1717
1375
|
export declare enum ExecutionType {
|
|
1718
1376
|
ApproveBudgetAction = "APPROVE_BUDGET_ACTION",
|
|
1719
1377
|
ResetBudgetAction = "RESET_BUDGET_ACTION",
|
|
@@ -1742,12 +1400,6 @@ export interface ExecuteBudgetActionRequest {
|
|
|
1742
1400
|
*/
|
|
1743
1401
|
ExecutionType: ExecutionType | string | undefined;
|
|
1744
1402
|
}
|
|
1745
|
-
export declare namespace ExecuteBudgetActionRequest {
|
|
1746
|
-
/**
|
|
1747
|
-
* @internal
|
|
1748
|
-
*/
|
|
1749
|
-
const filterSensitiveLog: (obj: ExecuteBudgetActionRequest) => any;
|
|
1750
|
-
}
|
|
1751
1403
|
export interface ExecuteBudgetActionResponse {
|
|
1752
1404
|
/**
|
|
1753
1405
|
* <p>The account ID of the user. It's a 12-digit number.</p>
|
|
@@ -1770,12 +1422,6 @@ export interface ExecuteBudgetActionResponse {
|
|
|
1770
1422
|
*/
|
|
1771
1423
|
ExecutionType: ExecutionType | string | undefined;
|
|
1772
1424
|
}
|
|
1773
|
-
export declare namespace ExecuteBudgetActionResponse {
|
|
1774
|
-
/**
|
|
1775
|
-
* @internal
|
|
1776
|
-
*/
|
|
1777
|
-
const filterSensitiveLog: (obj: ExecuteBudgetActionResponse) => any;
|
|
1778
|
-
}
|
|
1779
1425
|
/**
|
|
1780
1426
|
* <p> Request of UpdateBudget </p>
|
|
1781
1427
|
*/
|
|
@@ -1789,23 +1435,11 @@ export interface UpdateBudgetRequest {
|
|
|
1789
1435
|
*/
|
|
1790
1436
|
NewBudget: Budget | undefined;
|
|
1791
1437
|
}
|
|
1792
|
-
export declare namespace UpdateBudgetRequest {
|
|
1793
|
-
/**
|
|
1794
|
-
* @internal
|
|
1795
|
-
*/
|
|
1796
|
-
const filterSensitiveLog: (obj: UpdateBudgetRequest) => any;
|
|
1797
|
-
}
|
|
1798
1438
|
/**
|
|
1799
1439
|
* <p> Response of UpdateBudget </p>
|
|
1800
1440
|
*/
|
|
1801
1441
|
export interface UpdateBudgetResponse {
|
|
1802
1442
|
}
|
|
1803
|
-
export declare namespace UpdateBudgetResponse {
|
|
1804
|
-
/**
|
|
1805
|
-
* @internal
|
|
1806
|
-
*/
|
|
1807
|
-
const filterSensitiveLog: (obj: UpdateBudgetResponse) => any;
|
|
1808
|
-
}
|
|
1809
1443
|
export interface UpdateBudgetActionRequest {
|
|
1810
1444
|
/**
|
|
1811
1445
|
* <p>The account ID of the user. It's a 12-digit number.</p>
|
|
@@ -1850,12 +1484,6 @@ export interface UpdateBudgetActionRequest {
|
|
|
1850
1484
|
*/
|
|
1851
1485
|
Subscribers?: Subscriber[];
|
|
1852
1486
|
}
|
|
1853
|
-
export declare namespace UpdateBudgetActionRequest {
|
|
1854
|
-
/**
|
|
1855
|
-
* @internal
|
|
1856
|
-
*/
|
|
1857
|
-
const filterSensitiveLog: (obj: UpdateBudgetActionRequest) => any;
|
|
1858
|
-
}
|
|
1859
1487
|
export interface UpdateBudgetActionResponse {
|
|
1860
1488
|
/**
|
|
1861
1489
|
* <p>The account ID of the user. It's a 12-digit number.</p>
|
|
@@ -1878,12 +1506,6 @@ export interface UpdateBudgetActionResponse {
|
|
|
1878
1506
|
*/
|
|
1879
1507
|
NewAction: Action | undefined;
|
|
1880
1508
|
}
|
|
1881
|
-
export declare namespace UpdateBudgetActionResponse {
|
|
1882
|
-
/**
|
|
1883
|
-
* @internal
|
|
1884
|
-
*/
|
|
1885
|
-
const filterSensitiveLog: (obj: UpdateBudgetActionResponse) => any;
|
|
1886
|
-
}
|
|
1887
1509
|
/**
|
|
1888
1510
|
* <p> Request of UpdateNotification </p>
|
|
1889
1511
|
*/
|
|
@@ -1905,23 +1527,11 @@ export interface UpdateNotificationRequest {
|
|
|
1905
1527
|
*/
|
|
1906
1528
|
NewNotification: Notification | undefined;
|
|
1907
1529
|
}
|
|
1908
|
-
export declare namespace UpdateNotificationRequest {
|
|
1909
|
-
/**
|
|
1910
|
-
* @internal
|
|
1911
|
-
*/
|
|
1912
|
-
const filterSensitiveLog: (obj: UpdateNotificationRequest) => any;
|
|
1913
|
-
}
|
|
1914
1530
|
/**
|
|
1915
1531
|
* <p> Response of UpdateNotification </p>
|
|
1916
1532
|
*/
|
|
1917
1533
|
export interface UpdateNotificationResponse {
|
|
1918
1534
|
}
|
|
1919
|
-
export declare namespace UpdateNotificationResponse {
|
|
1920
|
-
/**
|
|
1921
|
-
* @internal
|
|
1922
|
-
*/
|
|
1923
|
-
const filterSensitiveLog: (obj: UpdateNotificationResponse) => any;
|
|
1924
|
-
}
|
|
1925
1535
|
/**
|
|
1926
1536
|
* <p> Request of UpdateSubscriber </p>
|
|
1927
1537
|
*/
|
|
@@ -1947,20 +1557,276 @@ export interface UpdateSubscriberRequest {
|
|
|
1947
1557
|
*/
|
|
1948
1558
|
NewSubscriber: Subscriber | undefined;
|
|
1949
1559
|
}
|
|
1950
|
-
export declare namespace UpdateSubscriberRequest {
|
|
1951
|
-
/**
|
|
1952
|
-
* @internal
|
|
1953
|
-
*/
|
|
1954
|
-
const filterSensitiveLog: (obj: UpdateSubscriberRequest) => any;
|
|
1955
|
-
}
|
|
1956
1560
|
/**
|
|
1957
1561
|
* <p> Response of UpdateSubscriber </p>
|
|
1958
1562
|
*/
|
|
1959
1563
|
export interface UpdateSubscriberResponse {
|
|
1960
1564
|
}
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1565
|
+
/**
|
|
1566
|
+
* @internal
|
|
1567
|
+
*/
|
|
1568
|
+
export declare const ActionThresholdFilterSensitiveLog: (obj: ActionThreshold) => any;
|
|
1569
|
+
/**
|
|
1570
|
+
* @internal
|
|
1571
|
+
*/
|
|
1572
|
+
export declare const IamActionDefinitionFilterSensitiveLog: (obj: IamActionDefinition) => any;
|
|
1573
|
+
/**
|
|
1574
|
+
* @internal
|
|
1575
|
+
*/
|
|
1576
|
+
export declare const ScpActionDefinitionFilterSensitiveLog: (obj: ScpActionDefinition) => any;
|
|
1577
|
+
/**
|
|
1578
|
+
* @internal
|
|
1579
|
+
*/
|
|
1580
|
+
export declare const SsmActionDefinitionFilterSensitiveLog: (obj: SsmActionDefinition) => any;
|
|
1581
|
+
/**
|
|
1582
|
+
* @internal
|
|
1583
|
+
*/
|
|
1584
|
+
export declare const DefinitionFilterSensitiveLog: (obj: Definition) => any;
|
|
1585
|
+
/**
|
|
1586
|
+
* @internal
|
|
1587
|
+
*/
|
|
1588
|
+
export declare const SubscriberFilterSensitiveLog: (obj: Subscriber) => any;
|
|
1589
|
+
/**
|
|
1590
|
+
* @internal
|
|
1591
|
+
*/
|
|
1592
|
+
export declare const ActionFilterSensitiveLog: (obj: Action) => any;
|
|
1593
|
+
/**
|
|
1594
|
+
* @internal
|
|
1595
|
+
*/
|
|
1596
|
+
export declare const ActionHistoryDetailsFilterSensitiveLog: (obj: ActionHistoryDetails) => any;
|
|
1597
|
+
/**
|
|
1598
|
+
* @internal
|
|
1599
|
+
*/
|
|
1600
|
+
export declare const ActionHistoryFilterSensitiveLog: (obj: ActionHistory) => any;
|
|
1601
|
+
/**
|
|
1602
|
+
* @internal
|
|
1603
|
+
*/
|
|
1604
|
+
export declare const HistoricalOptionsFilterSensitiveLog: (obj: HistoricalOptions) => any;
|
|
1605
|
+
/**
|
|
1606
|
+
* @internal
|
|
1607
|
+
*/
|
|
1608
|
+
export declare const AutoAdjustDataFilterSensitiveLog: (obj: AutoAdjustData) => any;
|
|
1609
|
+
/**
|
|
1610
|
+
* @internal
|
|
1611
|
+
*/
|
|
1612
|
+
export declare const SpendFilterSensitiveLog: (obj: Spend) => any;
|
|
1613
|
+
/**
|
|
1614
|
+
* @internal
|
|
1615
|
+
*/
|
|
1616
|
+
export declare const CalculatedSpendFilterSensitiveLog: (obj: CalculatedSpend) => any;
|
|
1617
|
+
/**
|
|
1618
|
+
* @internal
|
|
1619
|
+
*/
|
|
1620
|
+
export declare const CostTypesFilterSensitiveLog: (obj: CostTypes) => any;
|
|
1621
|
+
/**
|
|
1622
|
+
* @internal
|
|
1623
|
+
*/
|
|
1624
|
+
export declare const TimePeriodFilterSensitiveLog: (obj: TimePeriod) => any;
|
|
1625
|
+
/**
|
|
1626
|
+
* @internal
|
|
1627
|
+
*/
|
|
1628
|
+
export declare const BudgetFilterSensitiveLog: (obj: Budget) => any;
|
|
1629
|
+
/**
|
|
1630
|
+
* @internal
|
|
1631
|
+
*/
|
|
1632
|
+
export declare const NotificationFilterSensitiveLog: (obj: Notification) => any;
|
|
1633
|
+
/**
|
|
1634
|
+
* @internal
|
|
1635
|
+
*/
|
|
1636
|
+
export declare const NotificationWithSubscribersFilterSensitiveLog: (obj: NotificationWithSubscribers) => any;
|
|
1637
|
+
/**
|
|
1638
|
+
* @internal
|
|
1639
|
+
*/
|
|
1640
|
+
export declare const CreateBudgetRequestFilterSensitiveLog: (obj: CreateBudgetRequest) => any;
|
|
1641
|
+
/**
|
|
1642
|
+
* @internal
|
|
1643
|
+
*/
|
|
1644
|
+
export declare const CreateBudgetResponseFilterSensitiveLog: (obj: CreateBudgetResponse) => any;
|
|
1645
|
+
/**
|
|
1646
|
+
* @internal
|
|
1647
|
+
*/
|
|
1648
|
+
export declare const CreateBudgetActionRequestFilterSensitiveLog: (obj: CreateBudgetActionRequest) => any;
|
|
1649
|
+
/**
|
|
1650
|
+
* @internal
|
|
1651
|
+
*/
|
|
1652
|
+
export declare const CreateBudgetActionResponseFilterSensitiveLog: (obj: CreateBudgetActionResponse) => any;
|
|
1653
|
+
/**
|
|
1654
|
+
* @internal
|
|
1655
|
+
*/
|
|
1656
|
+
export declare const CreateNotificationRequestFilterSensitiveLog: (obj: CreateNotificationRequest) => any;
|
|
1657
|
+
/**
|
|
1658
|
+
* @internal
|
|
1659
|
+
*/
|
|
1660
|
+
export declare const CreateNotificationResponseFilterSensitiveLog: (obj: CreateNotificationResponse) => any;
|
|
1661
|
+
/**
|
|
1662
|
+
* @internal
|
|
1663
|
+
*/
|
|
1664
|
+
export declare const CreateSubscriberRequestFilterSensitiveLog: (obj: CreateSubscriberRequest) => any;
|
|
1665
|
+
/**
|
|
1666
|
+
* @internal
|
|
1667
|
+
*/
|
|
1668
|
+
export declare const CreateSubscriberResponseFilterSensitiveLog: (obj: CreateSubscriberResponse) => any;
|
|
1669
|
+
/**
|
|
1670
|
+
* @internal
|
|
1671
|
+
*/
|
|
1672
|
+
export declare const DeleteBudgetRequestFilterSensitiveLog: (obj: DeleteBudgetRequest) => any;
|
|
1673
|
+
/**
|
|
1674
|
+
* @internal
|
|
1675
|
+
*/
|
|
1676
|
+
export declare const DeleteBudgetResponseFilterSensitiveLog: (obj: DeleteBudgetResponse) => any;
|
|
1677
|
+
/**
|
|
1678
|
+
* @internal
|
|
1679
|
+
*/
|
|
1680
|
+
export declare const DeleteBudgetActionRequestFilterSensitiveLog: (obj: DeleteBudgetActionRequest) => any;
|
|
1681
|
+
/**
|
|
1682
|
+
* @internal
|
|
1683
|
+
*/
|
|
1684
|
+
export declare const DeleteBudgetActionResponseFilterSensitiveLog: (obj: DeleteBudgetActionResponse) => any;
|
|
1685
|
+
/**
|
|
1686
|
+
* @internal
|
|
1687
|
+
*/
|
|
1688
|
+
export declare const DeleteNotificationRequestFilterSensitiveLog: (obj: DeleteNotificationRequest) => any;
|
|
1689
|
+
/**
|
|
1690
|
+
* @internal
|
|
1691
|
+
*/
|
|
1692
|
+
export declare const DeleteNotificationResponseFilterSensitiveLog: (obj: DeleteNotificationResponse) => any;
|
|
1693
|
+
/**
|
|
1694
|
+
* @internal
|
|
1695
|
+
*/
|
|
1696
|
+
export declare const DeleteSubscriberRequestFilterSensitiveLog: (obj: DeleteSubscriberRequest) => any;
|
|
1697
|
+
/**
|
|
1698
|
+
* @internal
|
|
1699
|
+
*/
|
|
1700
|
+
export declare const DeleteSubscriberResponseFilterSensitiveLog: (obj: DeleteSubscriberResponse) => any;
|
|
1701
|
+
/**
|
|
1702
|
+
* @internal
|
|
1703
|
+
*/
|
|
1704
|
+
export declare const DescribeBudgetRequestFilterSensitiveLog: (obj: DescribeBudgetRequest) => any;
|
|
1705
|
+
/**
|
|
1706
|
+
* @internal
|
|
1707
|
+
*/
|
|
1708
|
+
export declare const DescribeBudgetResponseFilterSensitiveLog: (obj: DescribeBudgetResponse) => any;
|
|
1709
|
+
/**
|
|
1710
|
+
* @internal
|
|
1711
|
+
*/
|
|
1712
|
+
export declare const DescribeBudgetActionRequestFilterSensitiveLog: (obj: DescribeBudgetActionRequest) => any;
|
|
1713
|
+
/**
|
|
1714
|
+
* @internal
|
|
1715
|
+
*/
|
|
1716
|
+
export declare const DescribeBudgetActionResponseFilterSensitiveLog: (obj: DescribeBudgetActionResponse) => any;
|
|
1717
|
+
/**
|
|
1718
|
+
* @internal
|
|
1719
|
+
*/
|
|
1720
|
+
export declare const DescribeBudgetActionHistoriesRequestFilterSensitiveLog: (obj: DescribeBudgetActionHistoriesRequest) => any;
|
|
1721
|
+
/**
|
|
1722
|
+
* @internal
|
|
1723
|
+
*/
|
|
1724
|
+
export declare const DescribeBudgetActionHistoriesResponseFilterSensitiveLog: (obj: DescribeBudgetActionHistoriesResponse) => any;
|
|
1725
|
+
/**
|
|
1726
|
+
* @internal
|
|
1727
|
+
*/
|
|
1728
|
+
export declare const DescribeBudgetActionsForAccountRequestFilterSensitiveLog: (obj: DescribeBudgetActionsForAccountRequest) => any;
|
|
1729
|
+
/**
|
|
1730
|
+
* @internal
|
|
1731
|
+
*/
|
|
1732
|
+
export declare const DescribeBudgetActionsForAccountResponseFilterSensitiveLog: (obj: DescribeBudgetActionsForAccountResponse) => any;
|
|
1733
|
+
/**
|
|
1734
|
+
* @internal
|
|
1735
|
+
*/
|
|
1736
|
+
export declare const DescribeBudgetActionsForBudgetRequestFilterSensitiveLog: (obj: DescribeBudgetActionsForBudgetRequest) => any;
|
|
1737
|
+
/**
|
|
1738
|
+
* @internal
|
|
1739
|
+
*/
|
|
1740
|
+
export declare const DescribeBudgetActionsForBudgetResponseFilterSensitiveLog: (obj: DescribeBudgetActionsForBudgetResponse) => any;
|
|
1741
|
+
/**
|
|
1742
|
+
* @internal
|
|
1743
|
+
*/
|
|
1744
|
+
export declare const DescribeBudgetNotificationsForAccountRequestFilterSensitiveLog: (obj: DescribeBudgetNotificationsForAccountRequest) => any;
|
|
1745
|
+
/**
|
|
1746
|
+
* @internal
|
|
1747
|
+
*/
|
|
1748
|
+
export declare const BudgetNotificationsForAccountFilterSensitiveLog: (obj: BudgetNotificationsForAccount) => any;
|
|
1749
|
+
/**
|
|
1750
|
+
* @internal
|
|
1751
|
+
*/
|
|
1752
|
+
export declare const DescribeBudgetNotificationsForAccountResponseFilterSensitiveLog: (obj: DescribeBudgetNotificationsForAccountResponse) => any;
|
|
1753
|
+
/**
|
|
1754
|
+
* @internal
|
|
1755
|
+
*/
|
|
1756
|
+
export declare const DescribeBudgetPerformanceHistoryRequestFilterSensitiveLog: (obj: DescribeBudgetPerformanceHistoryRequest) => any;
|
|
1757
|
+
/**
|
|
1758
|
+
* @internal
|
|
1759
|
+
*/
|
|
1760
|
+
export declare const BudgetedAndActualAmountsFilterSensitiveLog: (obj: BudgetedAndActualAmounts) => any;
|
|
1761
|
+
/**
|
|
1762
|
+
* @internal
|
|
1763
|
+
*/
|
|
1764
|
+
export declare const BudgetPerformanceHistoryFilterSensitiveLog: (obj: BudgetPerformanceHistory) => any;
|
|
1765
|
+
/**
|
|
1766
|
+
* @internal
|
|
1767
|
+
*/
|
|
1768
|
+
export declare const DescribeBudgetPerformanceHistoryResponseFilterSensitiveLog: (obj: DescribeBudgetPerformanceHistoryResponse) => any;
|
|
1769
|
+
/**
|
|
1770
|
+
* @internal
|
|
1771
|
+
*/
|
|
1772
|
+
export declare const DescribeBudgetsRequestFilterSensitiveLog: (obj: DescribeBudgetsRequest) => any;
|
|
1773
|
+
/**
|
|
1774
|
+
* @internal
|
|
1775
|
+
*/
|
|
1776
|
+
export declare const DescribeBudgetsResponseFilterSensitiveLog: (obj: DescribeBudgetsResponse) => any;
|
|
1777
|
+
/**
|
|
1778
|
+
* @internal
|
|
1779
|
+
*/
|
|
1780
|
+
export declare const DescribeNotificationsForBudgetRequestFilterSensitiveLog: (obj: DescribeNotificationsForBudgetRequest) => any;
|
|
1781
|
+
/**
|
|
1782
|
+
* @internal
|
|
1783
|
+
*/
|
|
1784
|
+
export declare const DescribeNotificationsForBudgetResponseFilterSensitiveLog: (obj: DescribeNotificationsForBudgetResponse) => any;
|
|
1785
|
+
/**
|
|
1786
|
+
* @internal
|
|
1787
|
+
*/
|
|
1788
|
+
export declare const DescribeSubscribersForNotificationRequestFilterSensitiveLog: (obj: DescribeSubscribersForNotificationRequest) => any;
|
|
1789
|
+
/**
|
|
1790
|
+
* @internal
|
|
1791
|
+
*/
|
|
1792
|
+
export declare const DescribeSubscribersForNotificationResponseFilterSensitiveLog: (obj: DescribeSubscribersForNotificationResponse) => any;
|
|
1793
|
+
/**
|
|
1794
|
+
* @internal
|
|
1795
|
+
*/
|
|
1796
|
+
export declare const ExecuteBudgetActionRequestFilterSensitiveLog: (obj: ExecuteBudgetActionRequest) => any;
|
|
1797
|
+
/**
|
|
1798
|
+
* @internal
|
|
1799
|
+
*/
|
|
1800
|
+
export declare const ExecuteBudgetActionResponseFilterSensitiveLog: (obj: ExecuteBudgetActionResponse) => any;
|
|
1801
|
+
/**
|
|
1802
|
+
* @internal
|
|
1803
|
+
*/
|
|
1804
|
+
export declare const UpdateBudgetRequestFilterSensitiveLog: (obj: UpdateBudgetRequest) => any;
|
|
1805
|
+
/**
|
|
1806
|
+
* @internal
|
|
1807
|
+
*/
|
|
1808
|
+
export declare const UpdateBudgetResponseFilterSensitiveLog: (obj: UpdateBudgetResponse) => any;
|
|
1809
|
+
/**
|
|
1810
|
+
* @internal
|
|
1811
|
+
*/
|
|
1812
|
+
export declare const UpdateBudgetActionRequestFilterSensitiveLog: (obj: UpdateBudgetActionRequest) => any;
|
|
1813
|
+
/**
|
|
1814
|
+
* @internal
|
|
1815
|
+
*/
|
|
1816
|
+
export declare const UpdateBudgetActionResponseFilterSensitiveLog: (obj: UpdateBudgetActionResponse) => any;
|
|
1817
|
+
/**
|
|
1818
|
+
* @internal
|
|
1819
|
+
*/
|
|
1820
|
+
export declare const UpdateNotificationRequestFilterSensitiveLog: (obj: UpdateNotificationRequest) => any;
|
|
1821
|
+
/**
|
|
1822
|
+
* @internal
|
|
1823
|
+
*/
|
|
1824
|
+
export declare const UpdateNotificationResponseFilterSensitiveLog: (obj: UpdateNotificationResponse) => any;
|
|
1825
|
+
/**
|
|
1826
|
+
* @internal
|
|
1827
|
+
*/
|
|
1828
|
+
export declare const UpdateSubscriberRequestFilterSensitiveLog: (obj: UpdateSubscriberRequest) => any;
|
|
1829
|
+
/**
|
|
1830
|
+
* @internal
|
|
1831
|
+
*/
|
|
1832
|
+
export declare const UpdateSubscriberResponseFilterSensitiveLog: (obj: UpdateSubscriberResponse) => any;
|