@aws-sdk/client-budgets 3.168.0 → 3.170.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 (48) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Budgets.d.ts +430 -120
  3. package/dist-types/ts3.4/BudgetsClient.d.ts +267 -96
  4. package/dist-types/ts3.4/commands/CreateBudgetActionCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateBudgetCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateNotificationCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/CreateSubscriberCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/DeleteBudgetActionCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DeleteBudgetCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DeleteNotificationCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/DeleteSubscriberCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/DescribeBudgetActionCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DescribeBudgetActionHistoriesCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DescribeBudgetActionsForAccountCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/DescribeBudgetActionsForBudgetCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/DescribeBudgetCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/DescribeBudgetNotificationsForAccountCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/DescribeBudgetPerformanceHistoryCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/DescribeBudgetsCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/DescribeNotificationsForBudgetCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/DescribeSubscribersForNotificationCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/ExecuteBudgetActionCommand.d.ts +38 -17
  23. package/dist-types/ts3.4/commands/UpdateBudgetActionCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/UpdateBudgetCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/UpdateNotificationCommand.d.ts +38 -17
  26. package/dist-types/ts3.4/commands/UpdateSubscriberCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/index.d.ts +23 -23
  28. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  29. package/dist-types/ts3.4/index.d.ts +6 -6
  30. package/dist-types/ts3.4/models/BudgetsServiceException.d.ts +8 -6
  31. package/dist-types/ts3.4/models/index.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +975 -906
  33. package/dist-types/ts3.4/pagination/DescribeBudgetActionHistoriesPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/DescribeBudgetActionsForAccountPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/DescribeBudgetActionsForBudgetPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/DescribeBudgetNotificationsForAccountPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/DescribeBudgetPerformanceHistoryPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/DescribeBudgetsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/DescribeNotificationsForBudgetPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/DescribeSubscribersForNotificationPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  42. package/dist-types/ts3.4/pagination/index.d.ts +9 -9
  43. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +281 -71
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  48. package/package.json +34 -34
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
4
- import { DescribeNotificationsForBudgetRequest, DescribeNotificationsForBudgetResponse } from "../models/models_0";
5
- export interface DescribeNotificationsForBudgetCommandInput extends DescribeNotificationsForBudgetRequest {
6
- }
7
- export interface DescribeNotificationsForBudgetCommandOutput extends DescribeNotificationsForBudgetResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeNotificationsForBudgetCommand extends $Command<DescribeNotificationsForBudgetCommandInput, DescribeNotificationsForBudgetCommandOutput, BudgetsClientResolvedConfig> {
11
- readonly input: DescribeNotificationsForBudgetCommandInput;
12
- constructor(input: DescribeNotificationsForBudgetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeNotificationsForBudgetCommandInput, DescribeNotificationsForBudgetCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BudgetsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BudgetsClient";
13
+ import {
14
+ DescribeNotificationsForBudgetRequest,
15
+ DescribeNotificationsForBudgetResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeNotificationsForBudgetCommandInput
18
+ extends DescribeNotificationsForBudgetRequest {}
19
+ export interface DescribeNotificationsForBudgetCommandOutput
20
+ extends DescribeNotificationsForBudgetResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeNotificationsForBudgetCommand extends $Command<
24
+ DescribeNotificationsForBudgetCommandInput,
25
+ DescribeNotificationsForBudgetCommandOutput,
26
+ BudgetsClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeNotificationsForBudgetCommandInput;
29
+ constructor(input: DescribeNotificationsForBudgetCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BudgetsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeNotificationsForBudgetCommandInput,
37
+ DescribeNotificationsForBudgetCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
4
- import { DescribeSubscribersForNotificationRequest, DescribeSubscribersForNotificationResponse } from "../models/models_0";
5
- export interface DescribeSubscribersForNotificationCommandInput extends DescribeSubscribersForNotificationRequest {
6
- }
7
- export interface DescribeSubscribersForNotificationCommandOutput extends DescribeSubscribersForNotificationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeSubscribersForNotificationCommand extends $Command<DescribeSubscribersForNotificationCommandInput, DescribeSubscribersForNotificationCommandOutput, BudgetsClientResolvedConfig> {
11
- readonly input: DescribeSubscribersForNotificationCommandInput;
12
- constructor(input: DescribeSubscribersForNotificationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSubscribersForNotificationCommandInput, DescribeSubscribersForNotificationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BudgetsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BudgetsClient";
13
+ import {
14
+ DescribeSubscribersForNotificationRequest,
15
+ DescribeSubscribersForNotificationResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeSubscribersForNotificationCommandInput
18
+ extends DescribeSubscribersForNotificationRequest {}
19
+ export interface DescribeSubscribersForNotificationCommandOutput
20
+ extends DescribeSubscribersForNotificationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeSubscribersForNotificationCommand extends $Command<
24
+ DescribeSubscribersForNotificationCommandInput,
25
+ DescribeSubscribersForNotificationCommandOutput,
26
+ BudgetsClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeSubscribersForNotificationCommandInput;
29
+ constructor(input: DescribeSubscribersForNotificationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BudgetsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeSubscribersForNotificationCommandInput,
37
+ DescribeSubscribersForNotificationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
4
- import { ExecuteBudgetActionRequest, ExecuteBudgetActionResponse } from "../models/models_0";
5
- export interface ExecuteBudgetActionCommandInput extends ExecuteBudgetActionRequest {
6
- }
7
- export interface ExecuteBudgetActionCommandOutput extends ExecuteBudgetActionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ExecuteBudgetActionCommand extends $Command<ExecuteBudgetActionCommandInput, ExecuteBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
11
- readonly input: ExecuteBudgetActionCommandInput;
12
- constructor(input: ExecuteBudgetActionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExecuteBudgetActionCommandInput, ExecuteBudgetActionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BudgetsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BudgetsClient";
13
+ import {
14
+ ExecuteBudgetActionRequest,
15
+ ExecuteBudgetActionResponse,
16
+ } from "../models/models_0";
17
+ export interface ExecuteBudgetActionCommandInput
18
+ extends ExecuteBudgetActionRequest {}
19
+ export interface ExecuteBudgetActionCommandOutput
20
+ extends ExecuteBudgetActionResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ExecuteBudgetActionCommand extends $Command<
24
+ ExecuteBudgetActionCommandInput,
25
+ ExecuteBudgetActionCommandOutput,
26
+ BudgetsClientResolvedConfig
27
+ > {
28
+ readonly input: ExecuteBudgetActionCommandInput;
29
+ constructor(input: ExecuteBudgetActionCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BudgetsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ExecuteBudgetActionCommandInput, ExecuteBudgetActionCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
4
- import { UpdateBudgetActionRequest, UpdateBudgetActionResponse } from "../models/models_0";
5
- export interface UpdateBudgetActionCommandInput extends UpdateBudgetActionRequest {
6
- }
7
- export interface UpdateBudgetActionCommandOutput extends UpdateBudgetActionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateBudgetActionCommand extends $Command<UpdateBudgetActionCommandInput, UpdateBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
11
- readonly input: UpdateBudgetActionCommandInput;
12
- constructor(input: UpdateBudgetActionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBudgetActionCommandInput, UpdateBudgetActionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BudgetsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BudgetsClient";
13
+ import {
14
+ UpdateBudgetActionRequest,
15
+ UpdateBudgetActionResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateBudgetActionCommandInput
18
+ extends UpdateBudgetActionRequest {}
19
+ export interface UpdateBudgetActionCommandOutput
20
+ extends UpdateBudgetActionResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateBudgetActionCommand extends $Command<
24
+ UpdateBudgetActionCommandInput,
25
+ UpdateBudgetActionCommandOutput,
26
+ BudgetsClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateBudgetActionCommandInput;
29
+ constructor(input: UpdateBudgetActionCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BudgetsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<UpdateBudgetActionCommandInput, UpdateBudgetActionCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
4
- import { UpdateBudgetRequest, UpdateBudgetResponse } from "../models/models_0";
5
- export interface UpdateBudgetCommandInput extends UpdateBudgetRequest {
6
- }
7
- export interface UpdateBudgetCommandOutput extends UpdateBudgetResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateBudgetCommand extends $Command<UpdateBudgetCommandInput, UpdateBudgetCommandOutput, BudgetsClientResolvedConfig> {
11
- readonly input: UpdateBudgetCommandInput;
12
- constructor(input: UpdateBudgetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBudgetCommandInput, UpdateBudgetCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BudgetsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BudgetsClient";
13
+ import { UpdateBudgetRequest, UpdateBudgetResponse } from "../models/models_0";
14
+ export interface UpdateBudgetCommandInput extends UpdateBudgetRequest {}
15
+ export interface UpdateBudgetCommandOutput
16
+ extends UpdateBudgetResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class UpdateBudgetCommand extends $Command<
20
+ UpdateBudgetCommandInput,
21
+ UpdateBudgetCommandOutput,
22
+ BudgetsClientResolvedConfig
23
+ > {
24
+ readonly input: UpdateBudgetCommandInput;
25
+ constructor(input: UpdateBudgetCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: BudgetsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<UpdateBudgetCommandInput, UpdateBudgetCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
4
- import { UpdateNotificationRequest, UpdateNotificationResponse } from "../models/models_0";
5
- export interface UpdateNotificationCommandInput extends UpdateNotificationRequest {
6
- }
7
- export interface UpdateNotificationCommandOutput extends UpdateNotificationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateNotificationCommand extends $Command<UpdateNotificationCommandInput, UpdateNotificationCommandOutput, BudgetsClientResolvedConfig> {
11
- readonly input: UpdateNotificationCommandInput;
12
- constructor(input: UpdateNotificationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateNotificationCommandInput, UpdateNotificationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BudgetsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BudgetsClient";
13
+ import {
14
+ UpdateNotificationRequest,
15
+ UpdateNotificationResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateNotificationCommandInput
18
+ extends UpdateNotificationRequest {}
19
+ export interface UpdateNotificationCommandOutput
20
+ extends UpdateNotificationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateNotificationCommand extends $Command<
24
+ UpdateNotificationCommandInput,
25
+ UpdateNotificationCommandOutput,
26
+ BudgetsClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateNotificationCommandInput;
29
+ constructor(input: UpdateNotificationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BudgetsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<UpdateNotificationCommandInput, UpdateNotificationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient";
4
- import { UpdateSubscriberRequest, UpdateSubscriberResponse } from "../models/models_0";
5
- export interface UpdateSubscriberCommandInput extends UpdateSubscriberRequest {
6
- }
7
- export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateSubscriberCommand extends $Command<UpdateSubscriberCommandInput, UpdateSubscriberCommandOutput, BudgetsClientResolvedConfig> {
11
- readonly input: UpdateSubscriberCommandInput;
12
- constructor(input: UpdateSubscriberCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BudgetsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSubscriberCommandInput, UpdateSubscriberCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BudgetsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BudgetsClient";
13
+ import {
14
+ UpdateSubscriberRequest,
15
+ UpdateSubscriberResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateSubscriberCommandInput extends UpdateSubscriberRequest {}
18
+ export interface UpdateSubscriberCommandOutput
19
+ extends UpdateSubscriberResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UpdateSubscriberCommand extends $Command<
23
+ UpdateSubscriberCommandInput,
24
+ UpdateSubscriberCommandOutput,
25
+ BudgetsClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateSubscriberCommandInput;
28
+ constructor(input: UpdateSubscriberCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: BudgetsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UpdateSubscriberCommandInput, UpdateSubscriberCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,23 +1,23 @@
1
- export * from "./CreateBudgetActionCommand";
2
- export * from "./CreateBudgetCommand";
3
- export * from "./CreateNotificationCommand";
4
- export * from "./CreateSubscriberCommand";
5
- export * from "./DeleteBudgetActionCommand";
6
- export * from "./DeleteBudgetCommand";
7
- export * from "./DeleteNotificationCommand";
8
- export * from "./DeleteSubscriberCommand";
9
- export * from "./DescribeBudgetActionCommand";
10
- export * from "./DescribeBudgetActionHistoriesCommand";
11
- export * from "./DescribeBudgetActionsForAccountCommand";
12
- export * from "./DescribeBudgetActionsForBudgetCommand";
13
- export * from "./DescribeBudgetCommand";
14
- export * from "./DescribeBudgetNotificationsForAccountCommand";
15
- export * from "./DescribeBudgetPerformanceHistoryCommand";
16
- export * from "./DescribeBudgetsCommand";
17
- export * from "./DescribeNotificationsForBudgetCommand";
18
- export * from "./DescribeSubscribersForNotificationCommand";
19
- export * from "./ExecuteBudgetActionCommand";
20
- export * from "./UpdateBudgetActionCommand";
21
- export * from "./UpdateBudgetCommand";
22
- export * from "./UpdateNotificationCommand";
23
- export * from "./UpdateSubscriberCommand";
1
+ export * from "./CreateBudgetActionCommand";
2
+ export * from "./CreateBudgetCommand";
3
+ export * from "./CreateNotificationCommand";
4
+ export * from "./CreateSubscriberCommand";
5
+ export * from "./DeleteBudgetActionCommand";
6
+ export * from "./DeleteBudgetCommand";
7
+ export * from "./DeleteNotificationCommand";
8
+ export * from "./DeleteSubscriberCommand";
9
+ export * from "./DescribeBudgetActionCommand";
10
+ export * from "./DescribeBudgetActionHistoriesCommand";
11
+ export * from "./DescribeBudgetActionsForAccountCommand";
12
+ export * from "./DescribeBudgetActionsForBudgetCommand";
13
+ export * from "./DescribeBudgetCommand";
14
+ export * from "./DescribeBudgetNotificationsForAccountCommand";
15
+ export * from "./DescribeBudgetPerformanceHistoryCommand";
16
+ export * from "./DescribeBudgetsCommand";
17
+ export * from "./DescribeNotificationsForBudgetCommand";
18
+ export * from "./DescribeSubscribersForNotificationCommand";
19
+ export * from "./ExecuteBudgetActionCommand";
20
+ export * from "./UpdateBudgetActionCommand";
21
+ export * from "./UpdateBudgetCommand";
22
+ export * from "./UpdateNotificationCommand";
23
+ export * from "./UpdateSubscriberCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./Budgets";
2
- export * from "./BudgetsClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { BudgetsServiceException } from "./models/BudgetsServiceException";
1
+ export * from "./Budgets";
2
+ export * from "./BudgetsClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { BudgetsServiceException } from "./models/BudgetsServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class BudgetsServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class BudgetsServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";