@aws-sdk/client-budgets 3.321.1 → 3.326.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.
Files changed (24) hide show
  1. package/dist-types/commands/CreateBudgetActionCommand.d.ts +8 -0
  2. package/dist-types/commands/CreateBudgetCommand.d.ts +4 -0
  3. package/dist-types/commands/CreateNotificationCommand.d.ts +4 -0
  4. package/dist-types/commands/CreateSubscriberCommand.d.ts +4 -0
  5. package/dist-types/commands/DeleteBudgetActionCommand.d.ts +53 -0
  6. package/dist-types/commands/DeleteBudgetCommand.d.ts +4 -0
  7. package/dist-types/commands/DeleteNotificationCommand.d.ts +4 -0
  8. package/dist-types/commands/DeleteSubscriberCommand.d.ts +4 -0
  9. package/dist-types/commands/DescribeBudgetActionCommand.d.ts +53 -0
  10. package/dist-types/commands/DescribeBudgetActionHistoriesCommand.d.ts +62 -0
  11. package/dist-types/commands/DescribeBudgetActionsForAccountCommand.d.ts +54 -0
  12. package/dist-types/commands/DescribeBudgetActionsForBudgetCommand.d.ts +54 -0
  13. package/dist-types/commands/DescribeBudgetCommand.d.ts +61 -0
  14. package/dist-types/commands/DescribeBudgetNotificationsForAccountCommand.d.ts +20 -0
  15. package/dist-types/commands/DescribeBudgetPerformanceHistoryCommand.d.ts +45 -0
  16. package/dist-types/commands/DescribeBudgetsCommand.d.ts +64 -0
  17. package/dist-types/commands/DescribeNotificationsForBudgetCommand.d.ts +15 -0
  18. package/dist-types/commands/DescribeSubscribersForNotificationCommand.d.ts +12 -0
  19. package/dist-types/commands/ExecuteBudgetActionCommand.d.ts +9 -0
  20. package/dist-types/commands/UpdateBudgetActionCommand.d.ts +99 -0
  21. package/dist-types/commands/UpdateBudgetCommand.d.ts +4 -0
  22. package/dist-types/commands/UpdateNotificationCommand.d.ts +4 -0
  23. package/dist-types/commands/UpdateSubscriberCommand.d.ts +4 -0
  24. package/package.json +16 -16
@@ -75,6 +75,12 @@ export interface CreateBudgetActionCommandOutput extends CreateBudgetActionRespo
75
75
  * };
76
76
  * const command = new CreateBudgetActionCommand(input);
77
77
  * const response = await client.send(command);
78
+ * // { // CreateBudgetActionResponse
79
+ * // AccountId: "STRING_VALUE", // required
80
+ * // BudgetName: "STRING_VALUE", // required
81
+ * // ActionId: "STRING_VALUE", // required
82
+ * // };
83
+ *
78
84
  * ```
79
85
  *
80
86
  * @param CreateBudgetActionCommandInput - {@link CreateBudgetActionCommandInput}
@@ -106,6 +112,8 @@ export interface CreateBudgetActionCommandOutput extends CreateBudgetActionRespo
106
112
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
107
113
  * </p>
108
114
  *
115
+ * @throws {@link BudgetsServiceException}
116
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
109
117
  *
110
118
  */
111
119
  export declare class CreateBudgetActionCommand extends $Command<CreateBudgetActionCommandInput, CreateBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
@@ -107,6 +107,8 @@ export interface CreateBudgetCommandOutput extends CreateBudgetResponse, __Metad
107
107
  * };
108
108
  * const command = new CreateBudgetCommand(input);
109
109
  * const response = await client.send(command);
110
+ * // {};
111
+ *
110
112
  * ```
111
113
  *
112
114
  * @param CreateBudgetCommandInput - {@link CreateBudgetCommandInput}
@@ -135,6 +137,8 @@ export interface CreateBudgetCommandOutput extends CreateBudgetResponse, __Metad
135
137
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
136
138
  * </p>
137
139
  *
140
+ * @throws {@link BudgetsServiceException}
141
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
138
142
  *
139
143
  */
140
144
  export declare class CreateBudgetCommand extends $Command<CreateBudgetCommandInput, CreateBudgetCommandOutput, BudgetsClientResolvedConfig> {
@@ -45,6 +45,8 @@ export interface CreateNotificationCommandOutput extends CreateNotificationRespo
45
45
  * };
46
46
  * const command = new CreateNotificationCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // {};
49
+ *
48
50
  * ```
49
51
  *
50
52
  * @param CreateNotificationCommandInput - {@link CreateNotificationCommandInput}
@@ -76,6 +78,8 @@ export interface CreateNotificationCommandOutput extends CreateNotificationRespo
76
78
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
77
79
  * </p>
78
80
  *
81
+ * @throws {@link BudgetsServiceException}
82
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
79
83
  *
80
84
  */
81
85
  export declare class CreateNotificationCommand extends $Command<CreateNotificationCommandInput, CreateNotificationCommandOutput, BudgetsClientResolvedConfig> {
@@ -43,6 +43,8 @@ export interface CreateSubscriberCommandOutput extends CreateSubscriberResponse,
43
43
  * };
44
44
  * const command = new CreateSubscriberCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // {};
47
+ *
46
48
  * ```
47
49
  *
48
50
  * @param CreateSubscriberCommandInput - {@link CreateSubscriberCommandInput}
@@ -74,6 +76,8 @@ export interface CreateSubscriberCommandOutput extends CreateSubscriberResponse,
74
76
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
75
77
  * </p>
76
78
  *
79
+ * @throws {@link BudgetsServiceException}
80
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
77
81
  *
78
82
  */
79
83
  export declare class CreateSubscriberCommand extends $Command<CreateSubscriberCommandInput, CreateSubscriberCommandOutput, BudgetsClientResolvedConfig> {
@@ -35,6 +35,57 @@ export interface DeleteBudgetActionCommandOutput extends DeleteBudgetActionRespo
35
35
  * };
36
36
  * const command = new DeleteBudgetActionCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DeleteBudgetActionResponse
39
+ * // AccountId: "STRING_VALUE", // required
40
+ * // BudgetName: "STRING_VALUE", // required
41
+ * // Action: { // Action
42
+ * // ActionId: "STRING_VALUE", // required
43
+ * // BudgetName: "STRING_VALUE", // required
44
+ * // NotificationType: "STRING_VALUE", // required
45
+ * // ActionType: "STRING_VALUE", // required
46
+ * // ActionThreshold: { // ActionThreshold
47
+ * // ActionThresholdValue: Number("double"), // required
48
+ * // ActionThresholdType: "STRING_VALUE", // required
49
+ * // },
50
+ * // Definition: { // Definition
51
+ * // IamActionDefinition: { // IamActionDefinition
52
+ * // PolicyArn: "STRING_VALUE", // required
53
+ * // Roles: [ // Roles
54
+ * // "STRING_VALUE",
55
+ * // ],
56
+ * // Groups: [ // Groups
57
+ * // "STRING_VALUE",
58
+ * // ],
59
+ * // Users: [ // Users
60
+ * // "STRING_VALUE",
61
+ * // ],
62
+ * // },
63
+ * // ScpActionDefinition: { // ScpActionDefinition
64
+ * // PolicyId: "STRING_VALUE", // required
65
+ * // TargetIds: [ // TargetIds // required
66
+ * // "STRING_VALUE",
67
+ * // ],
68
+ * // },
69
+ * // SsmActionDefinition: { // SsmActionDefinition
70
+ * // ActionSubType: "STRING_VALUE", // required
71
+ * // Region: "STRING_VALUE", // required
72
+ * // InstanceIds: [ // InstanceIds // required
73
+ * // "STRING_VALUE",
74
+ * // ],
75
+ * // },
76
+ * // },
77
+ * // ExecutionRoleArn: "STRING_VALUE", // required
78
+ * // ApprovalModel: "STRING_VALUE", // required
79
+ * // Status: "STRING_VALUE", // required
80
+ * // Subscribers: [ // Subscribers // required
81
+ * // { // Subscriber
82
+ * // SubscriptionType: "STRING_VALUE", // required
83
+ * // Address: "STRING_VALUE", // required
84
+ * // },
85
+ * // ],
86
+ * // },
87
+ * // };
88
+ *
38
89
  * ```
39
90
  *
40
91
  * @param DeleteBudgetActionCommandInput - {@link DeleteBudgetActionCommandInput}
@@ -64,6 +115,8 @@ export interface DeleteBudgetActionCommandOutput extends DeleteBudgetActionRespo
64
115
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
65
116
  * </p>
66
117
  *
118
+ * @throws {@link BudgetsServiceException}
119
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
67
120
  *
68
121
  */
69
122
  export declare class DeleteBudgetActionCommand extends $Command<DeleteBudgetActionCommandInput, DeleteBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
@@ -35,6 +35,8 @@ export interface DeleteBudgetCommandOutput extends DeleteBudgetResponse, __Metad
35
35
  * };
36
36
  * const command = new DeleteBudgetCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param DeleteBudgetCommandInput - {@link DeleteBudgetCommandInput}
@@ -60,6 +62,8 @@ export interface DeleteBudgetCommandOutput extends DeleteBudgetResponse, __Metad
60
62
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
61
63
  * </p>
62
64
  *
65
+ * @throws {@link BudgetsServiceException}
66
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
63
67
  *
64
68
  */
65
69
  export declare class DeleteBudgetCommand extends $Command<DeleteBudgetCommandInput, DeleteBudgetCommandOutput, BudgetsClientResolvedConfig> {
@@ -42,6 +42,8 @@ export interface DeleteNotificationCommandOutput extends DeleteNotificationRespo
42
42
  * };
43
43
  * const command = new DeleteNotificationCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // {};
46
+ *
45
47
  * ```
46
48
  *
47
49
  * @param DeleteNotificationCommandInput - {@link DeleteNotificationCommandInput}
@@ -67,6 +69,8 @@ export interface DeleteNotificationCommandOutput extends DeleteNotificationRespo
67
69
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
68
70
  * </p>
69
71
  *
72
+ * @throws {@link BudgetsServiceException}
73
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
70
74
  *
71
75
  */
72
76
  export declare class DeleteNotificationCommand extends $Command<DeleteNotificationCommandInput, DeleteNotificationCommandOutput, BudgetsClientResolvedConfig> {
@@ -46,6 +46,8 @@ export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse,
46
46
  * };
47
47
  * const command = new DeleteSubscriberCommand(input);
48
48
  * const response = await client.send(command);
49
+ * // {};
50
+ *
49
51
  * ```
50
52
  *
51
53
  * @param DeleteSubscriberCommandInput - {@link DeleteSubscriberCommandInput}
@@ -71,6 +73,8 @@ export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse,
71
73
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
72
74
  * </p>
73
75
  *
76
+ * @throws {@link BudgetsServiceException}
77
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
74
78
  *
75
79
  */
76
80
  export declare class DeleteSubscriberCommand extends $Command<DeleteSubscriberCommandInput, DeleteSubscriberCommandOutput, BudgetsClientResolvedConfig> {
@@ -35,6 +35,57 @@ export interface DescribeBudgetActionCommandOutput extends DescribeBudgetActionR
35
35
  * };
36
36
  * const command = new DescribeBudgetActionCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DescribeBudgetActionResponse
39
+ * // AccountId: "STRING_VALUE", // required
40
+ * // BudgetName: "STRING_VALUE", // required
41
+ * // Action: { // Action
42
+ * // ActionId: "STRING_VALUE", // required
43
+ * // BudgetName: "STRING_VALUE", // required
44
+ * // NotificationType: "STRING_VALUE", // required
45
+ * // ActionType: "STRING_VALUE", // required
46
+ * // ActionThreshold: { // ActionThreshold
47
+ * // ActionThresholdValue: Number("double"), // required
48
+ * // ActionThresholdType: "STRING_VALUE", // required
49
+ * // },
50
+ * // Definition: { // Definition
51
+ * // IamActionDefinition: { // IamActionDefinition
52
+ * // PolicyArn: "STRING_VALUE", // required
53
+ * // Roles: [ // Roles
54
+ * // "STRING_VALUE",
55
+ * // ],
56
+ * // Groups: [ // Groups
57
+ * // "STRING_VALUE",
58
+ * // ],
59
+ * // Users: [ // Users
60
+ * // "STRING_VALUE",
61
+ * // ],
62
+ * // },
63
+ * // ScpActionDefinition: { // ScpActionDefinition
64
+ * // PolicyId: "STRING_VALUE", // required
65
+ * // TargetIds: [ // TargetIds // required
66
+ * // "STRING_VALUE",
67
+ * // ],
68
+ * // },
69
+ * // SsmActionDefinition: { // SsmActionDefinition
70
+ * // ActionSubType: "STRING_VALUE", // required
71
+ * // Region: "STRING_VALUE", // required
72
+ * // InstanceIds: [ // InstanceIds // required
73
+ * // "STRING_VALUE",
74
+ * // ],
75
+ * // },
76
+ * // },
77
+ * // ExecutionRoleArn: "STRING_VALUE", // required
78
+ * // ApprovalModel: "STRING_VALUE", // required
79
+ * // Status: "STRING_VALUE", // required
80
+ * // Subscribers: [ // Subscribers // required
81
+ * // { // Subscriber
82
+ * // SubscriptionType: "STRING_VALUE", // required
83
+ * // Address: "STRING_VALUE", // required
84
+ * // },
85
+ * // ],
86
+ * // },
87
+ * // };
88
+ *
38
89
  * ```
39
90
  *
40
91
  * @param DescribeBudgetActionCommandInput - {@link DescribeBudgetActionCommandInput}
@@ -60,6 +111,8 @@ export interface DescribeBudgetActionCommandOutput extends DescribeBudgetActionR
60
111
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
61
112
  * </p>
62
113
  *
114
+ * @throws {@link BudgetsServiceException}
115
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
63
116
  *
64
117
  */
65
118
  export declare class DescribeBudgetActionCommand extends $Command<DescribeBudgetActionCommandInput, DescribeBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
@@ -41,6 +41,66 @@ export interface DescribeBudgetActionHistoriesCommandOutput extends DescribeBudg
41
41
  * };
42
42
  * const command = new DescribeBudgetActionHistoriesCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // DescribeBudgetActionHistoriesResponse
45
+ * // ActionHistories: [ // ActionHistories // required
46
+ * // { // ActionHistory
47
+ * // Timestamp: new Date("TIMESTAMP"), // required
48
+ * // Status: "STRING_VALUE", // required
49
+ * // EventType: "STRING_VALUE", // required
50
+ * // ActionHistoryDetails: { // ActionHistoryDetails
51
+ * // Message: "STRING_VALUE", // required
52
+ * // Action: { // Action
53
+ * // ActionId: "STRING_VALUE", // required
54
+ * // BudgetName: "STRING_VALUE", // required
55
+ * // NotificationType: "STRING_VALUE", // required
56
+ * // ActionType: "STRING_VALUE", // required
57
+ * // ActionThreshold: { // ActionThreshold
58
+ * // ActionThresholdValue: Number("double"), // required
59
+ * // ActionThresholdType: "STRING_VALUE", // required
60
+ * // },
61
+ * // Definition: { // Definition
62
+ * // IamActionDefinition: { // IamActionDefinition
63
+ * // PolicyArn: "STRING_VALUE", // required
64
+ * // Roles: [ // Roles
65
+ * // "STRING_VALUE",
66
+ * // ],
67
+ * // Groups: [ // Groups
68
+ * // "STRING_VALUE",
69
+ * // ],
70
+ * // Users: [ // Users
71
+ * // "STRING_VALUE",
72
+ * // ],
73
+ * // },
74
+ * // ScpActionDefinition: { // ScpActionDefinition
75
+ * // PolicyId: "STRING_VALUE", // required
76
+ * // TargetIds: [ // TargetIds // required
77
+ * // "STRING_VALUE",
78
+ * // ],
79
+ * // },
80
+ * // SsmActionDefinition: { // SsmActionDefinition
81
+ * // ActionSubType: "STRING_VALUE", // required
82
+ * // Region: "STRING_VALUE", // required
83
+ * // InstanceIds: [ // InstanceIds // required
84
+ * // "STRING_VALUE",
85
+ * // ],
86
+ * // },
87
+ * // },
88
+ * // ExecutionRoleArn: "STRING_VALUE", // required
89
+ * // ApprovalModel: "STRING_VALUE", // required
90
+ * // Status: "STRING_VALUE", // required
91
+ * // Subscribers: [ // Subscribers // required
92
+ * // { // Subscriber
93
+ * // SubscriptionType: "STRING_VALUE", // required
94
+ * // Address: "STRING_VALUE", // required
95
+ * // },
96
+ * // ],
97
+ * // },
98
+ * // },
99
+ * // },
100
+ * // ],
101
+ * // NextToken: "STRING_VALUE",
102
+ * // };
103
+ *
44
104
  * ```
45
105
  *
46
106
  * @param DescribeBudgetActionHistoriesCommandInput - {@link DescribeBudgetActionHistoriesCommandInput}
@@ -69,6 +129,8 @@ export interface DescribeBudgetActionHistoriesCommandOutput extends DescribeBudg
69
129
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
70
130
  * </p>
71
131
  *
132
+ * @throws {@link BudgetsServiceException}
133
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
72
134
  *
73
135
  */
74
136
  export declare class DescribeBudgetActionHistoriesCommand extends $Command<DescribeBudgetActionHistoriesCommandInput, DescribeBudgetActionHistoriesCommandOutput, BudgetsClientResolvedConfig> {
@@ -35,6 +35,58 @@ export interface DescribeBudgetActionsForAccountCommandOutput extends DescribeBu
35
35
  * };
36
36
  * const command = new DescribeBudgetActionsForAccountCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DescribeBudgetActionsForAccountResponse
39
+ * // Actions: [ // Actions // required
40
+ * // { // Action
41
+ * // ActionId: "STRING_VALUE", // required
42
+ * // BudgetName: "STRING_VALUE", // required
43
+ * // NotificationType: "STRING_VALUE", // required
44
+ * // ActionType: "STRING_VALUE", // required
45
+ * // ActionThreshold: { // ActionThreshold
46
+ * // ActionThresholdValue: Number("double"), // required
47
+ * // ActionThresholdType: "STRING_VALUE", // required
48
+ * // },
49
+ * // Definition: { // Definition
50
+ * // IamActionDefinition: { // IamActionDefinition
51
+ * // PolicyArn: "STRING_VALUE", // required
52
+ * // Roles: [ // Roles
53
+ * // "STRING_VALUE",
54
+ * // ],
55
+ * // Groups: [ // Groups
56
+ * // "STRING_VALUE",
57
+ * // ],
58
+ * // Users: [ // Users
59
+ * // "STRING_VALUE",
60
+ * // ],
61
+ * // },
62
+ * // ScpActionDefinition: { // ScpActionDefinition
63
+ * // PolicyId: "STRING_VALUE", // required
64
+ * // TargetIds: [ // TargetIds // required
65
+ * // "STRING_VALUE",
66
+ * // ],
67
+ * // },
68
+ * // SsmActionDefinition: { // SsmActionDefinition
69
+ * // ActionSubType: "STRING_VALUE", // required
70
+ * // Region: "STRING_VALUE", // required
71
+ * // InstanceIds: [ // InstanceIds // required
72
+ * // "STRING_VALUE",
73
+ * // ],
74
+ * // },
75
+ * // },
76
+ * // ExecutionRoleArn: "STRING_VALUE", // required
77
+ * // ApprovalModel: "STRING_VALUE", // required
78
+ * // Status: "STRING_VALUE", // required
79
+ * // Subscribers: [ // Subscribers // required
80
+ * // { // Subscriber
81
+ * // SubscriptionType: "STRING_VALUE", // required
82
+ * // Address: "STRING_VALUE", // required
83
+ * // },
84
+ * // ],
85
+ * // },
86
+ * // ],
87
+ * // NextToken: "STRING_VALUE",
88
+ * // };
89
+ *
38
90
  * ```
39
91
  *
40
92
  * @param DescribeBudgetActionsForAccountCommandInput - {@link DescribeBudgetActionsForAccountCommandInput}
@@ -60,6 +112,8 @@ export interface DescribeBudgetActionsForAccountCommandOutput extends DescribeBu
60
112
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
61
113
  * </p>
62
114
  *
115
+ * @throws {@link BudgetsServiceException}
116
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
63
117
  *
64
118
  */
65
119
  export declare class DescribeBudgetActionsForAccountCommand extends $Command<DescribeBudgetActionsForAccountCommandInput, DescribeBudgetActionsForAccountCommandOutput, BudgetsClientResolvedConfig> {
@@ -36,6 +36,58 @@ export interface DescribeBudgetActionsForBudgetCommandOutput extends DescribeBud
36
36
  * };
37
37
  * const command = new DescribeBudgetActionsForBudgetCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // DescribeBudgetActionsForBudgetResponse
40
+ * // Actions: [ // Actions // required
41
+ * // { // Action
42
+ * // ActionId: "STRING_VALUE", // required
43
+ * // BudgetName: "STRING_VALUE", // required
44
+ * // NotificationType: "STRING_VALUE", // required
45
+ * // ActionType: "STRING_VALUE", // required
46
+ * // ActionThreshold: { // ActionThreshold
47
+ * // ActionThresholdValue: Number("double"), // required
48
+ * // ActionThresholdType: "STRING_VALUE", // required
49
+ * // },
50
+ * // Definition: { // Definition
51
+ * // IamActionDefinition: { // IamActionDefinition
52
+ * // PolicyArn: "STRING_VALUE", // required
53
+ * // Roles: [ // Roles
54
+ * // "STRING_VALUE",
55
+ * // ],
56
+ * // Groups: [ // Groups
57
+ * // "STRING_VALUE",
58
+ * // ],
59
+ * // Users: [ // Users
60
+ * // "STRING_VALUE",
61
+ * // ],
62
+ * // },
63
+ * // ScpActionDefinition: { // ScpActionDefinition
64
+ * // PolicyId: "STRING_VALUE", // required
65
+ * // TargetIds: [ // TargetIds // required
66
+ * // "STRING_VALUE",
67
+ * // ],
68
+ * // },
69
+ * // SsmActionDefinition: { // SsmActionDefinition
70
+ * // ActionSubType: "STRING_VALUE", // required
71
+ * // Region: "STRING_VALUE", // required
72
+ * // InstanceIds: [ // InstanceIds // required
73
+ * // "STRING_VALUE",
74
+ * // ],
75
+ * // },
76
+ * // },
77
+ * // ExecutionRoleArn: "STRING_VALUE", // required
78
+ * // ApprovalModel: "STRING_VALUE", // required
79
+ * // Status: "STRING_VALUE", // required
80
+ * // Subscribers: [ // Subscribers // required
81
+ * // { // Subscriber
82
+ * // SubscriptionType: "STRING_VALUE", // required
83
+ * // Address: "STRING_VALUE", // required
84
+ * // },
85
+ * // ],
86
+ * // },
87
+ * // ],
88
+ * // NextToken: "STRING_VALUE",
89
+ * // };
90
+ *
39
91
  * ```
40
92
  *
41
93
  * @param DescribeBudgetActionsForBudgetCommandInput - {@link DescribeBudgetActionsForBudgetCommandInput}
@@ -64,6 +116,8 @@ export interface DescribeBudgetActionsForBudgetCommandOutput extends DescribeBud
64
116
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
65
117
  * </p>
66
118
  *
119
+ * @throws {@link BudgetsServiceException}
120
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
67
121
  *
68
122
  */
69
123
  export declare class DescribeBudgetActionsForBudgetCommand extends $Command<DescribeBudgetActionsForBudgetCommandInput, DescribeBudgetActionsForBudgetCommandOutput, BudgetsClientResolvedConfig> {
@@ -35,6 +35,65 @@ export interface DescribeBudgetCommandOutput extends DescribeBudgetResponse, __M
35
35
  * };
36
36
  * const command = new DescribeBudgetCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DescribeBudgetResponse
39
+ * // Budget: { // Budget
40
+ * // BudgetName: "STRING_VALUE", // required
41
+ * // BudgetLimit: { // Spend
42
+ * // Amount: "STRING_VALUE", // required
43
+ * // Unit: "STRING_VALUE", // required
44
+ * // },
45
+ * // PlannedBudgetLimits: { // PlannedBudgetLimits
46
+ * // "<keys>": {
47
+ * // Amount: "STRING_VALUE", // required
48
+ * // Unit: "STRING_VALUE", // required
49
+ * // },
50
+ * // },
51
+ * // CostFilters: { // CostFilters
52
+ * // "<keys>": [ // DimensionValues
53
+ * // "STRING_VALUE",
54
+ * // ],
55
+ * // },
56
+ * // CostTypes: { // CostTypes
57
+ * // IncludeTax: true || false,
58
+ * // IncludeSubscription: true || false,
59
+ * // UseBlended: true || false,
60
+ * // IncludeRefund: true || false,
61
+ * // IncludeCredit: true || false,
62
+ * // IncludeUpfront: true || false,
63
+ * // IncludeRecurring: true || false,
64
+ * // IncludeOtherSubscription: true || false,
65
+ * // IncludeSupport: true || false,
66
+ * // IncludeDiscount: true || false,
67
+ * // UseAmortized: true || false,
68
+ * // },
69
+ * // TimeUnit: "STRING_VALUE", // required
70
+ * // TimePeriod: { // TimePeriod
71
+ * // Start: new Date("TIMESTAMP"),
72
+ * // End: new Date("TIMESTAMP"),
73
+ * // },
74
+ * // CalculatedSpend: { // CalculatedSpend
75
+ * // ActualSpend: {
76
+ * // Amount: "STRING_VALUE", // required
77
+ * // Unit: "STRING_VALUE", // required
78
+ * // },
79
+ * // ForecastedSpend: {
80
+ * // Amount: "STRING_VALUE", // required
81
+ * // Unit: "STRING_VALUE", // required
82
+ * // },
83
+ * // },
84
+ * // BudgetType: "STRING_VALUE", // required
85
+ * // LastUpdatedTime: new Date("TIMESTAMP"),
86
+ * // AutoAdjustData: { // AutoAdjustData
87
+ * // AutoAdjustType: "STRING_VALUE", // required
88
+ * // HistoricalOptions: { // HistoricalOptions
89
+ * // BudgetAdjustmentPeriod: Number("int"), // required
90
+ * // LookBackAvailablePeriods: Number("int"),
91
+ * // },
92
+ * // LastAutoAdjustTime: new Date("TIMESTAMP"),
93
+ * // },
94
+ * // },
95
+ * // };
96
+ *
38
97
  * ```
39
98
  *
40
99
  * @param DescribeBudgetCommandInput - {@link DescribeBudgetCommandInput}
@@ -60,6 +119,8 @@ export interface DescribeBudgetCommandOutput extends DescribeBudgetResponse, __M
60
119
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
61
120
  * </p>
62
121
  *
122
+ * @throws {@link BudgetsServiceException}
123
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
63
124
  *
64
125
  */
65
126
  export declare class DescribeBudgetCommand extends $Command<DescribeBudgetCommandInput, DescribeBudgetCommandOutput, BudgetsClientResolvedConfig> {
@@ -35,6 +35,24 @@ export interface DescribeBudgetNotificationsForAccountCommandOutput extends Desc
35
35
  * };
36
36
  * const command = new DescribeBudgetNotificationsForAccountCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DescribeBudgetNotificationsForAccountResponse
39
+ * // BudgetNotificationsForAccount: [ // BudgetNotificationsForAccountList
40
+ * // { // BudgetNotificationsForAccount
41
+ * // Notifications: [ // Notifications
42
+ * // { // Notification
43
+ * // NotificationType: "STRING_VALUE", // required
44
+ * // ComparisonOperator: "STRING_VALUE", // required
45
+ * // Threshold: Number("double"), // required
46
+ * // ThresholdType: "STRING_VALUE",
47
+ * // NotificationState: "STRING_VALUE",
48
+ * // },
49
+ * // ],
50
+ * // BudgetName: "STRING_VALUE",
51
+ * // },
52
+ * // ],
53
+ * // NextToken: "STRING_VALUE",
54
+ * // };
55
+ *
38
56
  * ```
39
57
  *
40
58
  * @param DescribeBudgetNotificationsForAccountCommandInput - {@link DescribeBudgetNotificationsForAccountCommandInput}
@@ -66,6 +84,8 @@ export interface DescribeBudgetNotificationsForAccountCommandOutput extends Desc
66
84
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
67
85
  * </p>
68
86
  *
87
+ * @throws {@link BudgetsServiceException}
88
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
69
89
  *
70
90
  */
71
91
  export declare class DescribeBudgetNotificationsForAccountCommand extends $Command<DescribeBudgetNotificationsForAccountCommandInput, DescribeBudgetNotificationsForAccountCommandOutput, BudgetsClientResolvedConfig> {
@@ -38,6 +38,49 @@ export interface DescribeBudgetPerformanceHistoryCommandOutput extends DescribeB
38
38
  * };
39
39
  * const command = new DescribeBudgetPerformanceHistoryCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // DescribeBudgetPerformanceHistoryResponse
42
+ * // BudgetPerformanceHistory: { // BudgetPerformanceHistory
43
+ * // BudgetName: "STRING_VALUE",
44
+ * // BudgetType: "STRING_VALUE",
45
+ * // CostFilters: { // CostFilters
46
+ * // "<keys>": [ // DimensionValues
47
+ * // "STRING_VALUE",
48
+ * // ],
49
+ * // },
50
+ * // CostTypes: { // CostTypes
51
+ * // IncludeTax: true || false,
52
+ * // IncludeSubscription: true || false,
53
+ * // UseBlended: true || false,
54
+ * // IncludeRefund: true || false,
55
+ * // IncludeCredit: true || false,
56
+ * // IncludeUpfront: true || false,
57
+ * // IncludeRecurring: true || false,
58
+ * // IncludeOtherSubscription: true || false,
59
+ * // IncludeSupport: true || false,
60
+ * // IncludeDiscount: true || false,
61
+ * // UseAmortized: true || false,
62
+ * // },
63
+ * // TimeUnit: "STRING_VALUE",
64
+ * // BudgetedAndActualAmountsList: [ // BudgetedAndActualAmountsList
65
+ * // { // BudgetedAndActualAmounts
66
+ * // BudgetedAmount: { // Spend
67
+ * // Amount: "STRING_VALUE", // required
68
+ * // Unit: "STRING_VALUE", // required
69
+ * // },
70
+ * // ActualAmount: {
71
+ * // Amount: "STRING_VALUE", // required
72
+ * // Unit: "STRING_VALUE", // required
73
+ * // },
74
+ * // TimePeriod: { // TimePeriod
75
+ * // Start: new Date("TIMESTAMP"),
76
+ * // End: new Date("TIMESTAMP"),
77
+ * // },
78
+ * // },
79
+ * // ],
80
+ * // },
81
+ * // NextToken: "STRING_VALUE",
82
+ * // };
83
+ *
41
84
  * ```
42
85
  *
43
86
  * @param DescribeBudgetPerformanceHistoryCommandInput - {@link DescribeBudgetPerformanceHistoryCommandInput}
@@ -69,6 +112,8 @@ export interface DescribeBudgetPerformanceHistoryCommandOutput extends DescribeB
69
112
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
70
113
  * </p>
71
114
  *
115
+ * @throws {@link BudgetsServiceException}
116
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
72
117
  *
73
118
  */
74
119
  export declare class DescribeBudgetPerformanceHistoryCommand extends $Command<DescribeBudgetPerformanceHistoryCommandInput, DescribeBudgetPerformanceHistoryCommandOutput, BudgetsClientResolvedConfig> {
@@ -36,6 +36,68 @@ export interface DescribeBudgetsCommandOutput extends DescribeBudgetsResponse, _
36
36
  * };
37
37
  * const command = new DescribeBudgetsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // DescribeBudgetsResponse
40
+ * // Budgets: [ // Budgets
41
+ * // { // Budget
42
+ * // BudgetName: "STRING_VALUE", // required
43
+ * // BudgetLimit: { // Spend
44
+ * // Amount: "STRING_VALUE", // required
45
+ * // Unit: "STRING_VALUE", // required
46
+ * // },
47
+ * // PlannedBudgetLimits: { // PlannedBudgetLimits
48
+ * // "<keys>": {
49
+ * // Amount: "STRING_VALUE", // required
50
+ * // Unit: "STRING_VALUE", // required
51
+ * // },
52
+ * // },
53
+ * // CostFilters: { // CostFilters
54
+ * // "<keys>": [ // DimensionValues
55
+ * // "STRING_VALUE",
56
+ * // ],
57
+ * // },
58
+ * // CostTypes: { // CostTypes
59
+ * // IncludeTax: true || false,
60
+ * // IncludeSubscription: true || false,
61
+ * // UseBlended: true || false,
62
+ * // IncludeRefund: true || false,
63
+ * // IncludeCredit: true || false,
64
+ * // IncludeUpfront: true || false,
65
+ * // IncludeRecurring: true || false,
66
+ * // IncludeOtherSubscription: true || false,
67
+ * // IncludeSupport: true || false,
68
+ * // IncludeDiscount: true || false,
69
+ * // UseAmortized: true || false,
70
+ * // },
71
+ * // TimeUnit: "STRING_VALUE", // required
72
+ * // TimePeriod: { // TimePeriod
73
+ * // Start: new Date("TIMESTAMP"),
74
+ * // End: new Date("TIMESTAMP"),
75
+ * // },
76
+ * // CalculatedSpend: { // CalculatedSpend
77
+ * // ActualSpend: {
78
+ * // Amount: "STRING_VALUE", // required
79
+ * // Unit: "STRING_VALUE", // required
80
+ * // },
81
+ * // ForecastedSpend: {
82
+ * // Amount: "STRING_VALUE", // required
83
+ * // Unit: "STRING_VALUE", // required
84
+ * // },
85
+ * // },
86
+ * // BudgetType: "STRING_VALUE", // required
87
+ * // LastUpdatedTime: new Date("TIMESTAMP"),
88
+ * // AutoAdjustData: { // AutoAdjustData
89
+ * // AutoAdjustType: "STRING_VALUE", // required
90
+ * // HistoricalOptions: { // HistoricalOptions
91
+ * // BudgetAdjustmentPeriod: Number("int"), // required
92
+ * // LookBackAvailablePeriods: Number("int"),
93
+ * // },
94
+ * // LastAutoAdjustTime: new Date("TIMESTAMP"),
95
+ * // },
96
+ * // },
97
+ * // ],
98
+ * // NextToken: "STRING_VALUE",
99
+ * // };
100
+ *
39
101
  * ```
40
102
  *
41
103
  * @param DescribeBudgetsCommandInput - {@link DescribeBudgetsCommandInput}
@@ -67,6 +129,8 @@ export interface DescribeBudgetsCommandOutput extends DescribeBudgetsResponse, _
67
129
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
68
130
  * </p>
69
131
  *
132
+ * @throws {@link BudgetsServiceException}
133
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
70
134
  *
71
135
  */
72
136
  export declare class DescribeBudgetsCommand extends $Command<DescribeBudgetsCommandInput, DescribeBudgetsCommandOutput, BudgetsClientResolvedConfig> {
@@ -34,6 +34,19 @@ export interface DescribeNotificationsForBudgetCommandOutput extends DescribeNot
34
34
  * };
35
35
  * const command = new DescribeNotificationsForBudgetCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeNotificationsForBudgetResponse
38
+ * // Notifications: [ // Notifications
39
+ * // { // Notification
40
+ * // NotificationType: "STRING_VALUE", // required
41
+ * // ComparisonOperator: "STRING_VALUE", // required
42
+ * // Threshold: Number("double"), // required
43
+ * // ThresholdType: "STRING_VALUE",
44
+ * // NotificationState: "STRING_VALUE",
45
+ * // },
46
+ * // ],
47
+ * // NextToken: "STRING_VALUE",
48
+ * // };
49
+ *
37
50
  * ```
38
51
  *
39
52
  * @param DescribeNotificationsForBudgetCommandInput - {@link DescribeNotificationsForBudgetCommandInput}
@@ -65,6 +78,8 @@ export interface DescribeNotificationsForBudgetCommandOutput extends DescribeNot
65
78
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
66
79
  * </p>
67
80
  *
81
+ * @throws {@link BudgetsServiceException}
82
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
68
83
  *
69
84
  */
70
85
  export declare class DescribeNotificationsForBudgetCommand extends $Command<DescribeNotificationsForBudgetCommandInput, DescribeNotificationsForBudgetCommandOutput, BudgetsClientResolvedConfig> {
@@ -41,6 +41,16 @@ export interface DescribeSubscribersForNotificationCommandOutput extends Describ
41
41
  * };
42
42
  * const command = new DescribeSubscribersForNotificationCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // DescribeSubscribersForNotificationResponse
45
+ * // Subscribers: [ // Subscribers
46
+ * // { // Subscriber
47
+ * // SubscriptionType: "STRING_VALUE", // required
48
+ * // Address: "STRING_VALUE", // required
49
+ * // },
50
+ * // ],
51
+ * // NextToken: "STRING_VALUE",
52
+ * // };
53
+ *
44
54
  * ```
45
55
  *
46
56
  * @param DescribeSubscribersForNotificationCommandInput - {@link DescribeSubscribersForNotificationCommandInput}
@@ -72,6 +82,8 @@ export interface DescribeSubscribersForNotificationCommandOutput extends Describ
72
82
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
73
83
  * </p>
74
84
  *
85
+ * @throws {@link BudgetsServiceException}
86
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
75
87
  *
76
88
  */
77
89
  export declare class DescribeSubscribersForNotificationCommand extends $Command<DescribeSubscribersForNotificationCommandInput, DescribeSubscribersForNotificationCommandOutput, BudgetsClientResolvedConfig> {
@@ -36,6 +36,13 @@ export interface ExecuteBudgetActionCommandOutput extends ExecuteBudgetActionRes
36
36
  * };
37
37
  * const command = new ExecuteBudgetActionCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ExecuteBudgetActionResponse
40
+ * // AccountId: "STRING_VALUE", // required
41
+ * // BudgetName: "STRING_VALUE", // required
42
+ * // ActionId: "STRING_VALUE", // required
43
+ * // ExecutionType: "STRING_VALUE", // required
44
+ * // };
45
+ *
39
46
  * ```
40
47
  *
41
48
  * @param ExecuteBudgetActionCommandInput - {@link ExecuteBudgetActionCommandInput}
@@ -65,6 +72,8 @@ export interface ExecuteBudgetActionCommandOutput extends ExecuteBudgetActionRes
65
72
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
66
73
  * </p>
67
74
  *
75
+ * @throws {@link BudgetsServiceException}
76
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
68
77
  *
69
78
  */
70
79
  export declare class ExecuteBudgetActionCommand extends $Command<ExecuteBudgetActionCommandInput, ExecuteBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
@@ -75,6 +75,103 @@ export interface UpdateBudgetActionCommandOutput extends UpdateBudgetActionRespo
75
75
  * };
76
76
  * const command = new UpdateBudgetActionCommand(input);
77
77
  * const response = await client.send(command);
78
+ * // { // UpdateBudgetActionResponse
79
+ * // AccountId: "STRING_VALUE", // required
80
+ * // BudgetName: "STRING_VALUE", // required
81
+ * // OldAction: { // Action
82
+ * // ActionId: "STRING_VALUE", // required
83
+ * // BudgetName: "STRING_VALUE", // required
84
+ * // NotificationType: "STRING_VALUE", // required
85
+ * // ActionType: "STRING_VALUE", // required
86
+ * // ActionThreshold: { // ActionThreshold
87
+ * // ActionThresholdValue: Number("double"), // required
88
+ * // ActionThresholdType: "STRING_VALUE", // required
89
+ * // },
90
+ * // Definition: { // Definition
91
+ * // IamActionDefinition: { // IamActionDefinition
92
+ * // PolicyArn: "STRING_VALUE", // required
93
+ * // Roles: [ // Roles
94
+ * // "STRING_VALUE",
95
+ * // ],
96
+ * // Groups: [ // Groups
97
+ * // "STRING_VALUE",
98
+ * // ],
99
+ * // Users: [ // Users
100
+ * // "STRING_VALUE",
101
+ * // ],
102
+ * // },
103
+ * // ScpActionDefinition: { // ScpActionDefinition
104
+ * // PolicyId: "STRING_VALUE", // required
105
+ * // TargetIds: [ // TargetIds // required
106
+ * // "STRING_VALUE",
107
+ * // ],
108
+ * // },
109
+ * // SsmActionDefinition: { // SsmActionDefinition
110
+ * // ActionSubType: "STRING_VALUE", // required
111
+ * // Region: "STRING_VALUE", // required
112
+ * // InstanceIds: [ // InstanceIds // required
113
+ * // "STRING_VALUE",
114
+ * // ],
115
+ * // },
116
+ * // },
117
+ * // ExecutionRoleArn: "STRING_VALUE", // required
118
+ * // ApprovalModel: "STRING_VALUE", // required
119
+ * // Status: "STRING_VALUE", // required
120
+ * // Subscribers: [ // Subscribers // required
121
+ * // { // Subscriber
122
+ * // SubscriptionType: "STRING_VALUE", // required
123
+ * // Address: "STRING_VALUE", // required
124
+ * // },
125
+ * // ],
126
+ * // },
127
+ * // NewAction: {
128
+ * // ActionId: "STRING_VALUE", // required
129
+ * // BudgetName: "STRING_VALUE", // required
130
+ * // NotificationType: "STRING_VALUE", // required
131
+ * // ActionType: "STRING_VALUE", // required
132
+ * // ActionThreshold: {
133
+ * // ActionThresholdValue: Number("double"), // required
134
+ * // ActionThresholdType: "STRING_VALUE", // required
135
+ * // },
136
+ * // Definition: {
137
+ * // IamActionDefinition: {
138
+ * // PolicyArn: "STRING_VALUE", // required
139
+ * // Roles: [
140
+ * // "STRING_VALUE",
141
+ * // ],
142
+ * // Groups: [
143
+ * // "STRING_VALUE",
144
+ * // ],
145
+ * // Users: [
146
+ * // "STRING_VALUE",
147
+ * // ],
148
+ * // },
149
+ * // ScpActionDefinition: {
150
+ * // PolicyId: "STRING_VALUE", // required
151
+ * // TargetIds: [ // required
152
+ * // "STRING_VALUE",
153
+ * // ],
154
+ * // },
155
+ * // SsmActionDefinition: {
156
+ * // ActionSubType: "STRING_VALUE", // required
157
+ * // Region: "STRING_VALUE", // required
158
+ * // InstanceIds: [ // required
159
+ * // "STRING_VALUE",
160
+ * // ],
161
+ * // },
162
+ * // },
163
+ * // ExecutionRoleArn: "STRING_VALUE", // required
164
+ * // ApprovalModel: "STRING_VALUE", // required
165
+ * // Status: "STRING_VALUE", // required
166
+ * // Subscribers: [ // required
167
+ * // {
168
+ * // SubscriptionType: "STRING_VALUE", // required
169
+ * // Address: "STRING_VALUE", // required
170
+ * // },
171
+ * // ],
172
+ * // },
173
+ * // };
174
+ *
78
175
  * ```
79
176
  *
80
177
  * @param UpdateBudgetActionCommandInput - {@link UpdateBudgetActionCommandInput}
@@ -104,6 +201,8 @@ export interface UpdateBudgetActionCommandOutput extends UpdateBudgetActionRespo
104
201
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
105
202
  * </p>
106
203
  *
204
+ * @throws {@link BudgetsServiceException}
205
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
107
206
  *
108
207
  */
109
208
  export declare class UpdateBudgetActionCommand extends $Command<UpdateBudgetActionCommandInput, UpdateBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
@@ -90,6 +90,8 @@ export interface UpdateBudgetCommandOutput extends UpdateBudgetResponse, __Metad
90
90
  * };
91
91
  * const command = new UpdateBudgetCommand(input);
92
92
  * const response = await client.send(command);
93
+ * // {};
94
+ *
93
95
  * ```
94
96
  *
95
97
  * @param UpdateBudgetCommandInput - {@link UpdateBudgetCommandInput}
@@ -115,6 +117,8 @@ export interface UpdateBudgetCommandOutput extends UpdateBudgetResponse, __Metad
115
117
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
116
118
  * </p>
117
119
  *
120
+ * @throws {@link BudgetsServiceException}
121
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
118
122
  *
119
123
  */
120
124
  export declare class UpdateBudgetCommand extends $Command<UpdateBudgetCommandInput, UpdateBudgetCommandOutput, BudgetsClientResolvedConfig> {
@@ -46,6 +46,8 @@ export interface UpdateNotificationCommandOutput extends UpdateNotificationRespo
46
46
  * };
47
47
  * const command = new UpdateNotificationCommand(input);
48
48
  * const response = await client.send(command);
49
+ * // {};
50
+ *
49
51
  * ```
50
52
  *
51
53
  * @param UpdateNotificationCommandInput - {@link UpdateNotificationCommandInput}
@@ -74,6 +76,8 @@ export interface UpdateNotificationCommandOutput extends UpdateNotificationRespo
74
76
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
75
77
  * </p>
76
78
  *
79
+ * @throws {@link BudgetsServiceException}
80
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
77
81
  *
78
82
  */
79
83
  export declare class UpdateNotificationCommand extends $Command<UpdateNotificationCommandInput, UpdateNotificationCommandOutput, BudgetsClientResolvedConfig> {
@@ -47,6 +47,8 @@ export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse,
47
47
  * };
48
48
  * const command = new UpdateSubscriberCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // {};
51
+ *
50
52
  * ```
51
53
  *
52
54
  * @param UpdateSubscriberCommandInput - {@link UpdateSubscriberCommandInput}
@@ -75,6 +77,8 @@ export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse,
75
77
  * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
76
78
  * </p>
77
79
  *
80
+ * @throws {@link BudgetsServiceException}
81
+ * <p>Base exception class for all service exceptions from Budgets service.</p>
78
82
  *
79
83
  */
80
84
  export declare class UpdateSubscriberCommand extends $Command<UpdateSubscriberCommandInput, UpdateSubscriberCommandOutput, BudgetsClientResolvedConfig> {
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.321.1",
4
+ "version": "3.326.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,33 +21,33 @@
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.321.1",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.321.1",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
30
- "@aws-sdk/middleware-content-length": "3.310.0",
31
- "@aws-sdk/middleware-endpoint": "3.310.0",
32
- "@aws-sdk/middleware-host-header": "3.310.0",
33
- "@aws-sdk/middleware-logger": "3.310.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.310.0",
35
- "@aws-sdk/middleware-retry": "3.310.0",
36
- "@aws-sdk/middleware-serde": "3.310.0",
37
- "@aws-sdk/middleware-signing": "3.310.0",
38
- "@aws-sdk/middleware-stack": "3.310.0",
39
- "@aws-sdk/middleware-user-agent": "3.319.0",
30
+ "@aws-sdk/middleware-content-length": "3.325.0",
31
+ "@aws-sdk/middleware-endpoint": "3.325.0",
32
+ "@aws-sdk/middleware-host-header": "3.325.0",
33
+ "@aws-sdk/middleware-logger": "3.325.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.325.0",
36
+ "@aws-sdk/middleware-serde": "3.325.0",
37
+ "@aws-sdk/middleware-signing": "3.325.0",
38
+ "@aws-sdk/middleware-stack": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.325.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.316.0",
43
+ "@aws-sdk/smithy-client": "3.325.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.316.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.316.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
51
  "@aws-sdk/util-endpoints": "3.319.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",