@aws-sdk/client-budgets 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/Budgets.d.ts +24 -0
- package/dist-types/BudgetsClient.d.ts +24 -4
- package/dist-types/commands/CreateBudgetActionCommand.d.ts +16 -0
- package/dist-types/commands/CreateBudgetCommand.d.ts +16 -0
- package/dist-types/commands/CreateNotificationCommand.d.ts +16 -0
- package/dist-types/commands/CreateSubscriberCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBudgetActionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBudgetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNotificationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSubscriberCommand.d.ts +16 -0
- package/dist-types/commands/DescribeBudgetActionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeBudgetActionHistoriesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeBudgetActionsForAccountCommand.d.ts +16 -0
- package/dist-types/commands/DescribeBudgetActionsForBudgetCommand.d.ts +16 -0
- package/dist-types/commands/DescribeBudgetCommand.d.ts +16 -0
- package/dist-types/commands/DescribeBudgetNotificationsForAccountCommand.d.ts +16 -0
- package/dist-types/commands/DescribeBudgetPerformanceHistoryCommand.d.ts +16 -0
- package/dist-types/commands/DescribeBudgetsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeNotificationsForBudgetCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSubscribersForNotificationCommand.d.ts +16 -0
- package/dist-types/commands/ExecuteBudgetActionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBudgetActionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBudgetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateNotificationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSubscriberCommand.d.ts +16 -0
- package/dist-types/models/BudgetsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +159 -0
- package/dist-types/pagination/DescribeBudgetActionHistoriesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeBudgetActionsForAccountPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeBudgetActionsForBudgetPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeBudgetNotificationsForAccountPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeBudgetPerformanceHistoryPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeBudgetsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeNotificationsForBudgetPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeSubscribersForNotificationPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
|
|
5
5
|
import { DeleteSubscriberRequest, DeleteSubscriberResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteSubscriberCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteSubscriberCommandInput extends DeleteSubscriberRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteSubscriberCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a subscriber.</p>
|
|
18
23
|
* <important>
|
|
19
24
|
* <p>Deleting the last subscriber to a notification also deletes the notification.</p>
|
|
@@ -28,6 +33,8 @@ export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse,
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DeleteSubscriberCommandInput - {@link DeleteSubscriberCommandInput}
|
|
37
|
+
* @returns {@link DeleteSubscriberCommandOutput}
|
|
31
38
|
* @see {@link DeleteSubscriberCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DeleteSubscriberCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse,
|
|
|
54
61
|
export declare class DeleteSubscriberCommand extends $Command<DeleteSubscriberCommandInput, DeleteSubscriberCommandOutput, BudgetsClientResolvedConfig> {
|
|
55
62
|
readonly input: DeleteSubscriberCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DeleteSubscriberCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSubscriberCommandInput, DeleteSubscriberCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
|
|
5
5
|
import { DescribeBudgetActionRequest, DescribeBudgetActionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeBudgetActionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeBudgetActionCommandInput extends DescribeBudgetActionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeBudgetActionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeBudgetActionCommandOutput extends DescribeBudgetActionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Describes a budget action detail.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeBudgetActionCommandOutput extends DescribeBudgetActionR
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeBudgetActionCommandInput - {@link DescribeBudgetActionCommandInput}
|
|
36
|
+
* @returns {@link DescribeBudgetActionCommandOutput}
|
|
30
37
|
* @see {@link DescribeBudgetActionCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeBudgetActionCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DescribeBudgetActionCommandOutput extends DescribeBudgetActionR
|
|
|
53
60
|
export declare class DescribeBudgetActionCommand extends $Command<DescribeBudgetActionCommandInput, DescribeBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
|
|
54
61
|
readonly input: DescribeBudgetActionCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DescribeBudgetActionCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBudgetActionCommandInput, DescribeBudgetActionCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
|
|
5
5
|
import { DescribeBudgetActionHistoriesRequest, DescribeBudgetActionHistoriesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeBudgetActionHistoriesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeBudgetActionHistoriesCommandInput extends DescribeBudgetActionHistoriesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeBudgetActionHistoriesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeBudgetActionHistoriesCommandOutput extends DescribeBudgetActionHistoriesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Describes a budget action history detail.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeBudgetActionHistoriesCommandOutput extends DescribeBudg
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeBudgetActionHistoriesCommandInput - {@link DescribeBudgetActionHistoriesCommandInput}
|
|
36
|
+
* @returns {@link DescribeBudgetActionHistoriesCommandOutput}
|
|
30
37
|
* @see {@link DescribeBudgetActionHistoriesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeBudgetActionHistoriesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface DescribeBudgetActionHistoriesCommandOutput extends DescribeBudg
|
|
|
56
63
|
export declare class DescribeBudgetActionHistoriesCommand extends $Command<DescribeBudgetActionHistoriesCommandInput, DescribeBudgetActionHistoriesCommandOutput, BudgetsClientResolvedConfig> {
|
|
57
64
|
readonly input: DescribeBudgetActionHistoriesCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: DescribeBudgetActionHistoriesCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBudgetActionHistoriesCommandInput, DescribeBudgetActionHistoriesCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
|
|
5
5
|
import { DescribeBudgetActionsForAccountRequest, DescribeBudgetActionsForAccountResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeBudgetActionsForAccountCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeBudgetActionsForAccountCommandInput extends DescribeBudgetActionsForAccountRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeBudgetActionsForAccountCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeBudgetActionsForAccountCommandOutput extends DescribeBudgetActionsForAccountResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Describes all of the budget actions for an account.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeBudgetActionsForAccountCommandOutput extends DescribeBu
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeBudgetActionsForAccountCommandInput - {@link DescribeBudgetActionsForAccountCommandInput}
|
|
36
|
+
* @returns {@link DescribeBudgetActionsForAccountCommandOutput}
|
|
30
37
|
* @see {@link DescribeBudgetActionsForAccountCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeBudgetActionsForAccountCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DescribeBudgetActionsForAccountCommandOutput extends DescribeBu
|
|
|
53
60
|
export declare class DescribeBudgetActionsForAccountCommand extends $Command<DescribeBudgetActionsForAccountCommandInput, DescribeBudgetActionsForAccountCommandOutput, BudgetsClientResolvedConfig> {
|
|
54
61
|
readonly input: DescribeBudgetActionsForAccountCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DescribeBudgetActionsForAccountCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBudgetActionsForAccountCommandInput, DescribeBudgetActionsForAccountCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
|
|
5
5
|
import { DescribeBudgetActionsForBudgetRequest, DescribeBudgetActionsForBudgetResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeBudgetActionsForBudgetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeBudgetActionsForBudgetCommandInput extends DescribeBudgetActionsForBudgetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeBudgetActionsForBudgetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeBudgetActionsForBudgetCommandOutput extends DescribeBudgetActionsForBudgetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Describes all of the budget actions for a budget.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeBudgetActionsForBudgetCommandOutput extends DescribeBud
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeBudgetActionsForBudgetCommandInput - {@link DescribeBudgetActionsForBudgetCommandInput}
|
|
36
|
+
* @returns {@link DescribeBudgetActionsForBudgetCommandOutput}
|
|
30
37
|
* @see {@link DescribeBudgetActionsForBudgetCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeBudgetActionsForBudgetCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface DescribeBudgetActionsForBudgetCommandOutput extends DescribeBud
|
|
|
56
63
|
export declare class DescribeBudgetActionsForBudgetCommand extends $Command<DescribeBudgetActionsForBudgetCommandInput, DescribeBudgetActionsForBudgetCommandOutput, BudgetsClientResolvedConfig> {
|
|
57
64
|
readonly input: DescribeBudgetActionsForBudgetCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: DescribeBudgetActionsForBudgetCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBudgetActionsForBudgetCommandInput, DescribeBudgetActionsForBudgetCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
|
|
5
5
|
import { DescribeBudgetRequest, DescribeBudgetResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeBudgetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeBudgetCommandInput extends DescribeBudgetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeBudgetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeBudgetCommandOutput extends DescribeBudgetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes a budget.</p>
|
|
18
23
|
* <important>
|
|
19
24
|
* <p>The Request Syntax section shows the <code>BudgetLimit</code> syntax. For <code>PlannedBudgetLimits</code>, see the <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_budgets_DescribeBudget.html#API_DescribeBudget_Examples">Examples</a> section. </p>
|
|
@@ -28,6 +33,8 @@ export interface DescribeBudgetCommandOutput extends DescribeBudgetResponse, __M
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DescribeBudgetCommandInput - {@link DescribeBudgetCommandInput}
|
|
37
|
+
* @returns {@link DescribeBudgetCommandOutput}
|
|
31
38
|
* @see {@link DescribeBudgetCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DescribeBudgetCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DescribeBudgetCommandOutput extends DescribeBudgetResponse, __M
|
|
|
54
61
|
export declare class DescribeBudgetCommand extends $Command<DescribeBudgetCommandInput, DescribeBudgetCommandOutput, BudgetsClientResolvedConfig> {
|
|
55
62
|
readonly input: DescribeBudgetCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DescribeBudgetCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBudgetCommandInput, DescribeBudgetCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
|
|
5
5
|
import { DescribeBudgetNotificationsForAccountRequest, DescribeBudgetNotificationsForAccountResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeBudgetNotificationsForAccountCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeBudgetNotificationsForAccountCommandInput extends DescribeBudgetNotificationsForAccountRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeBudgetNotificationsForAccountCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeBudgetNotificationsForAccountCommandOutput extends DescribeBudgetNotificationsForAccountResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Lists the budget names and notifications that are associated with an account.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeBudgetNotificationsForAccountCommandOutput extends Desc
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeBudgetNotificationsForAccountCommandInput - {@link DescribeBudgetNotificationsForAccountCommandInput}
|
|
36
|
+
* @returns {@link DescribeBudgetNotificationsForAccountCommandOutput}
|
|
30
37
|
* @see {@link DescribeBudgetNotificationsForAccountCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeBudgetNotificationsForAccountCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface DescribeBudgetNotificationsForAccountCommandOutput extends Desc
|
|
|
59
66
|
export declare class DescribeBudgetNotificationsForAccountCommand extends $Command<DescribeBudgetNotificationsForAccountCommandInput, DescribeBudgetNotificationsForAccountCommandOutput, BudgetsClientResolvedConfig> {
|
|
60
67
|
readonly input: DescribeBudgetNotificationsForAccountCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: DescribeBudgetNotificationsForAccountCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBudgetNotificationsForAccountCommandInput, DescribeBudgetNotificationsForAccountCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
|
|
5
5
|
import { DescribeBudgetPerformanceHistoryRequest, DescribeBudgetPerformanceHistoryResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeBudgetPerformanceHistoryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeBudgetPerformanceHistoryCommandInput extends DescribeBudgetPerformanceHistoryRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeBudgetPerformanceHistoryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeBudgetPerformanceHistoryCommandOutput extends DescribeBudgetPerformanceHistoryResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the history for <code>DAILY</code>, <code>MONTHLY</code>, and <code>QUARTERLY</code> budgets. Budget history isn't available for <code>ANNUAL</code> budgets.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeBudgetPerformanceHistoryCommandOutput extends DescribeB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeBudgetPerformanceHistoryCommandInput - {@link DescribeBudgetPerformanceHistoryCommandInput}
|
|
34
|
+
* @returns {@link DescribeBudgetPerformanceHistoryCommandOutput}
|
|
28
35
|
* @see {@link DescribeBudgetPerformanceHistoryCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeBudgetPerformanceHistoryCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface DescribeBudgetPerformanceHistoryCommandOutput extends DescribeB
|
|
|
57
64
|
export declare class DescribeBudgetPerformanceHistoryCommand extends $Command<DescribeBudgetPerformanceHistoryCommandInput, DescribeBudgetPerformanceHistoryCommandOutput, BudgetsClientResolvedConfig> {
|
|
58
65
|
readonly input: DescribeBudgetPerformanceHistoryCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: DescribeBudgetPerformanceHistoryCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBudgetPerformanceHistoryCommandInput, DescribeBudgetPerformanceHistoryCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
|
|
5
5
|
import { DescribeBudgetsRequest, DescribeBudgetsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeBudgetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeBudgetsCommandInput extends DescribeBudgetsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeBudgetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeBudgetsCommandOutput extends DescribeBudgetsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the budgets that are associated with an account.</p>
|
|
18
23
|
* <important>
|
|
19
24
|
* <p>The Request Syntax section shows the <code>BudgetLimit</code> syntax. For <code>PlannedBudgetLimits</code>, see the <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_budgets_DescribeBudgets.html#API_DescribeBudgets_Examples">Examples</a> section. </p>
|
|
@@ -28,6 +33,8 @@ export interface DescribeBudgetsCommandOutput extends DescribeBudgetsResponse, _
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DescribeBudgetsCommandInput - {@link DescribeBudgetsCommandInput}
|
|
37
|
+
* @returns {@link DescribeBudgetsCommandOutput}
|
|
31
38
|
* @see {@link DescribeBudgetsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DescribeBudgetsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface DescribeBudgetsCommandOutput extends DescribeBudgetsResponse, _
|
|
|
60
67
|
export declare class DescribeBudgetsCommand extends $Command<DescribeBudgetsCommandInput, DescribeBudgetsCommandOutput, BudgetsClientResolvedConfig> {
|
|
61
68
|
readonly input: DescribeBudgetsCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: DescribeBudgetsCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBudgetsCommandInput, DescribeBudgetsCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
|
|
5
5
|
import { DescribeNotificationsForBudgetRequest, DescribeNotificationsForBudgetResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeNotificationsForBudgetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeNotificationsForBudgetCommandInput extends DescribeNotificationsForBudgetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeNotificationsForBudgetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeNotificationsForBudgetCommandOutput extends DescribeNotificationsForBudgetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the notifications that are associated with a budget.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeNotificationsForBudgetCommandOutput extends DescribeNot
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeNotificationsForBudgetCommandInput - {@link DescribeNotificationsForBudgetCommandInput}
|
|
34
|
+
* @returns {@link DescribeNotificationsForBudgetCommandOutput}
|
|
28
35
|
* @see {@link DescribeNotificationsForBudgetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeNotificationsForBudgetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface DescribeNotificationsForBudgetCommandOutput extends DescribeNot
|
|
|
57
64
|
export declare class DescribeNotificationsForBudgetCommand extends $Command<DescribeNotificationsForBudgetCommandInput, DescribeNotificationsForBudgetCommandOutput, BudgetsClientResolvedConfig> {
|
|
58
65
|
readonly input: DescribeNotificationsForBudgetCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: DescribeNotificationsForBudgetCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeNotificationsForBudgetCommandInput, DescribeNotificationsForBudgetCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
|
|
5
5
|
import { DescribeSubscribersForNotificationRequest, DescribeSubscribersForNotificationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeSubscribersForNotificationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeSubscribersForNotificationCommandInput extends DescribeSubscribersForNotificationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeSubscribersForNotificationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeSubscribersForNotificationCommandOutput extends DescribeSubscribersForNotificationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the subscribers that are associated with a notification.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeSubscribersForNotificationCommandOutput extends Describ
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeSubscribersForNotificationCommandInput - {@link DescribeSubscribersForNotificationCommandInput}
|
|
34
|
+
* @returns {@link DescribeSubscribersForNotificationCommandOutput}
|
|
28
35
|
* @see {@link DescribeSubscribersForNotificationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeSubscribersForNotificationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface DescribeSubscribersForNotificationCommandOutput extends Describ
|
|
|
57
64
|
export declare class DescribeSubscribersForNotificationCommand extends $Command<DescribeSubscribersForNotificationCommandInput, DescribeSubscribersForNotificationCommandOutput, BudgetsClientResolvedConfig> {
|
|
58
65
|
readonly input: DescribeSubscribersForNotificationCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: DescribeSubscribersForNotificationCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSubscribersForNotificationCommandInput, DescribeSubscribersForNotificationCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
|
|
5
5
|
import { ExecuteBudgetActionRequest, ExecuteBudgetActionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ExecuteBudgetActionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ExecuteBudgetActionCommandInput extends ExecuteBudgetActionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ExecuteBudgetActionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ExecuteBudgetActionCommandOutput extends ExecuteBudgetActionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Executes a budget action.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface ExecuteBudgetActionCommandOutput extends ExecuteBudgetActionRes
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ExecuteBudgetActionCommandInput - {@link ExecuteBudgetActionCommandInput}
|
|
36
|
+
* @returns {@link ExecuteBudgetActionCommandOutput}
|
|
30
37
|
* @see {@link ExecuteBudgetActionCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ExecuteBudgetActionCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface ExecuteBudgetActionCommandOutput extends ExecuteBudgetActionRes
|
|
|
57
64
|
export declare class ExecuteBudgetActionCommand extends $Command<ExecuteBudgetActionCommandInput, ExecuteBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
|
|
58
65
|
readonly input: ExecuteBudgetActionCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: ExecuteBudgetActionCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExecuteBudgetActionCommandInput, ExecuteBudgetActionCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|