@aws-sdk/client-budgets 3.300.0 → 3.303.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-cjs/models/models_0.js +77 -91
- package/dist-es/models/models_0.js +77 -91
- package/dist-types/commands/CreateBudgetActionCommand.d.ts +13 -13
- package/dist-types/commands/CreateBudgetCommand.d.ts +16 -16
- package/dist-types/commands/CreateNotificationCommand.d.ts +4 -4
- package/dist-types/commands/CreateSubscriberCommand.d.ts +3 -3
- package/dist-types/commands/DeleteBudgetActionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBudgetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteNotificationCommand.d.ts +2 -2
- package/dist-types/commands/DeleteSubscriberCommand.d.ts +3 -3
- package/dist-types/commands/DescribeBudgetActionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeBudgetActionHistoriesCommand.d.ts +2 -2
- package/dist-types/commands/DescribeBudgetActionsForAccountCommand.d.ts +1 -1
- package/dist-types/commands/DescribeBudgetActionsForBudgetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeBudgetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeBudgetNotificationsForAccountCommand.d.ts +1 -1
- package/dist-types/commands/DescribeBudgetPerformanceHistoryCommand.d.ts +2 -2
- package/dist-types/commands/DescribeBudgetsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeNotificationsForBudgetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSubscribersForNotificationCommand.d.ts +2 -2
- package/dist-types/commands/ExecuteBudgetActionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBudgetActionCommand.d.ts +13 -13
- package/dist-types/commands/UpdateBudgetCommand.d.ts +11 -11
- package/dist-types/commands/UpdateNotificationCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSubscriberCommand.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +147 -77
- package/dist-types/ts3.4/models/models_0.d.ts +96 -77
- package/package.json +34 -34
|
@@ -28,11 +28,11 @@ export interface DescribeBudgetActionHistoriesCommandOutput extends DescribeBudg
|
|
|
28
28
|
* import { BudgetsClient, DescribeBudgetActionHistoriesCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
29
29
|
* // const { BudgetsClient, DescribeBudgetActionHistoriesCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
30
30
|
* const client = new BudgetsClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeBudgetActionHistoriesRequest
|
|
32
32
|
* AccountId: "STRING_VALUE", // required
|
|
33
33
|
* BudgetName: "STRING_VALUE", // required
|
|
34
34
|
* ActionId: "STRING_VALUE", // required
|
|
35
|
-
* TimePeriod: {
|
|
35
|
+
* TimePeriod: { // TimePeriod
|
|
36
36
|
* Start: new Date("TIMESTAMP"),
|
|
37
37
|
* End: new Date("TIMESTAMP"),
|
|
38
38
|
* },
|
|
@@ -28,7 +28,7 @@ export interface DescribeBudgetActionsForAccountCommandOutput extends DescribeBu
|
|
|
28
28
|
* import { BudgetsClient, DescribeBudgetActionsForAccountCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
29
29
|
* // const { BudgetsClient, DescribeBudgetActionsForAccountCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
30
30
|
* const client = new BudgetsClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeBudgetActionsForAccountRequest
|
|
32
32
|
* AccountId: "STRING_VALUE", // required
|
|
33
33
|
* MaxResults: Number("int"),
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface DescribeBudgetActionsForBudgetCommandOutput extends DescribeBud
|
|
|
28
28
|
* import { BudgetsClient, DescribeBudgetActionsForBudgetCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
29
29
|
* // const { BudgetsClient, DescribeBudgetActionsForBudgetCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
30
30
|
* const client = new BudgetsClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeBudgetActionsForBudgetRequest
|
|
32
32
|
* AccountId: "STRING_VALUE", // required
|
|
33
33
|
* BudgetName: "STRING_VALUE", // required
|
|
34
34
|
* MaxResults: Number("int"),
|
|
@@ -29,7 +29,7 @@ export interface DescribeBudgetCommandOutput extends DescribeBudgetResponse, __M
|
|
|
29
29
|
* import { BudgetsClient, DescribeBudgetCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
30
30
|
* // const { BudgetsClient, DescribeBudgetCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
31
31
|
* const client = new BudgetsClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DescribeBudgetRequest
|
|
33
33
|
* AccountId: "STRING_VALUE", // required
|
|
34
34
|
* BudgetName: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
@@ -28,7 +28,7 @@ export interface DescribeBudgetNotificationsForAccountCommandOutput extends Desc
|
|
|
28
28
|
* import { BudgetsClient, DescribeBudgetNotificationsForAccountCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
29
29
|
* // const { BudgetsClient, DescribeBudgetNotificationsForAccountCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
30
30
|
* const client = new BudgetsClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeBudgetNotificationsForAccountRequest
|
|
32
32
|
* AccountId: "STRING_VALUE", // required
|
|
33
33
|
* MaxResults: Number("int"),
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,10 +26,10 @@ export interface DescribeBudgetPerformanceHistoryCommandOutput extends DescribeB
|
|
|
26
26
|
* import { BudgetsClient, DescribeBudgetPerformanceHistoryCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
27
27
|
* // const { BudgetsClient, DescribeBudgetPerformanceHistoryCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
28
28
|
* const client = new BudgetsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeBudgetPerformanceHistoryRequest
|
|
30
30
|
* AccountId: "STRING_VALUE", // required
|
|
31
31
|
* BudgetName: "STRING_VALUE", // required
|
|
32
|
-
* TimePeriod: {
|
|
32
|
+
* TimePeriod: { // TimePeriod
|
|
33
33
|
* Start: new Date("TIMESTAMP"),
|
|
34
34
|
* End: new Date("TIMESTAMP"),
|
|
35
35
|
* },
|
|
@@ -29,7 +29,7 @@ export interface DescribeBudgetsCommandOutput extends DescribeBudgetsResponse, _
|
|
|
29
29
|
* import { BudgetsClient, DescribeBudgetsCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
30
30
|
* // const { BudgetsClient, DescribeBudgetsCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
31
31
|
* const client = new BudgetsClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DescribeBudgetsRequest
|
|
33
33
|
* AccountId: "STRING_VALUE", // required
|
|
34
34
|
* MaxResults: Number("int"),
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface DescribeNotificationsForBudgetCommandOutput extends DescribeNot
|
|
|
26
26
|
* import { BudgetsClient, DescribeNotificationsForBudgetCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
27
27
|
* // const { BudgetsClient, DescribeNotificationsForBudgetCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
28
28
|
* const client = new BudgetsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeNotificationsForBudgetRequest
|
|
30
30
|
* AccountId: "STRING_VALUE", // required
|
|
31
31
|
* BudgetName: "STRING_VALUE", // required
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,10 +26,10 @@ export interface DescribeSubscribersForNotificationCommandOutput extends Describ
|
|
|
26
26
|
* import { BudgetsClient, DescribeSubscribersForNotificationCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
27
27
|
* // const { BudgetsClient, DescribeSubscribersForNotificationCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
28
28
|
* const client = new BudgetsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeSubscribersForNotificationRequest
|
|
30
30
|
* AccountId: "STRING_VALUE", // required
|
|
31
31
|
* BudgetName: "STRING_VALUE", // required
|
|
32
|
-
* Notification: {
|
|
32
|
+
* Notification: { // Notification
|
|
33
33
|
* NotificationType: "STRING_VALUE", // required
|
|
34
34
|
* ComparisonOperator: "STRING_VALUE", // required
|
|
35
35
|
* Threshold: Number("double"), // required
|
|
@@ -28,7 +28,7 @@ export interface ExecuteBudgetActionCommandOutput extends ExecuteBudgetActionRes
|
|
|
28
28
|
* import { BudgetsClient, ExecuteBudgetActionCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
29
29
|
* // const { BudgetsClient, ExecuteBudgetActionCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
30
30
|
* const client = new BudgetsClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ExecuteBudgetActionRequest
|
|
32
32
|
* AccountId: "STRING_VALUE", // required
|
|
33
33
|
* BudgetName: "STRING_VALUE", // required
|
|
34
34
|
* ActionId: "STRING_VALUE", // required
|
|
@@ -28,46 +28,46 @@ export interface UpdateBudgetActionCommandOutput extends UpdateBudgetActionRespo
|
|
|
28
28
|
* import { BudgetsClient, UpdateBudgetActionCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
29
29
|
* // const { BudgetsClient, UpdateBudgetActionCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
30
30
|
* const client = new BudgetsClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateBudgetActionRequest
|
|
32
32
|
* AccountId: "STRING_VALUE", // required
|
|
33
33
|
* BudgetName: "STRING_VALUE", // required
|
|
34
34
|
* ActionId: "STRING_VALUE", // required
|
|
35
35
|
* NotificationType: "STRING_VALUE",
|
|
36
|
-
* ActionThreshold: {
|
|
36
|
+
* ActionThreshold: { // ActionThreshold
|
|
37
37
|
* ActionThresholdValue: Number("double"), // required
|
|
38
38
|
* ActionThresholdType: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
40
|
-
* Definition: {
|
|
41
|
-
* IamActionDefinition: {
|
|
40
|
+
* Definition: { // Definition
|
|
41
|
+
* IamActionDefinition: { // IamActionDefinition
|
|
42
42
|
* PolicyArn: "STRING_VALUE", // required
|
|
43
|
-
* Roles: [
|
|
43
|
+
* Roles: [ // Roles
|
|
44
44
|
* "STRING_VALUE",
|
|
45
45
|
* ],
|
|
46
|
-
* Groups: [
|
|
46
|
+
* Groups: [ // Groups
|
|
47
47
|
* "STRING_VALUE",
|
|
48
48
|
* ],
|
|
49
|
-
* Users: [
|
|
49
|
+
* Users: [ // Users
|
|
50
50
|
* "STRING_VALUE",
|
|
51
51
|
* ],
|
|
52
52
|
* },
|
|
53
|
-
* ScpActionDefinition: {
|
|
53
|
+
* ScpActionDefinition: { // ScpActionDefinition
|
|
54
54
|
* PolicyId: "STRING_VALUE", // required
|
|
55
|
-
* TargetIds: [ // required
|
|
55
|
+
* TargetIds: [ // TargetIds // required
|
|
56
56
|
* "STRING_VALUE",
|
|
57
57
|
* ],
|
|
58
58
|
* },
|
|
59
|
-
* SsmActionDefinition: {
|
|
59
|
+
* SsmActionDefinition: { // SsmActionDefinition
|
|
60
60
|
* ActionSubType: "STRING_VALUE", // required
|
|
61
61
|
* Region: "STRING_VALUE", // required
|
|
62
|
-
* InstanceIds: [ // required
|
|
62
|
+
* InstanceIds: [ // InstanceIds // required
|
|
63
63
|
* "STRING_VALUE",
|
|
64
64
|
* ],
|
|
65
65
|
* },
|
|
66
66
|
* },
|
|
67
67
|
* ExecutionRoleArn: "STRING_VALUE",
|
|
68
68
|
* ApprovalModel: "STRING_VALUE",
|
|
69
|
-
* Subscribers: [
|
|
70
|
-
* {
|
|
69
|
+
* Subscribers: [ // Subscribers
|
|
70
|
+
* { // Subscriber
|
|
71
71
|
* SubscriptionType: "STRING_VALUE", // required
|
|
72
72
|
* Address: "STRING_VALUE", // required
|
|
73
73
|
* },
|
|
@@ -29,26 +29,26 @@ export interface UpdateBudgetCommandOutput extends UpdateBudgetResponse, __Metad
|
|
|
29
29
|
* import { BudgetsClient, UpdateBudgetCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
30
30
|
* // const { BudgetsClient, UpdateBudgetCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
31
31
|
* const client = new BudgetsClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // UpdateBudgetRequest
|
|
33
33
|
* AccountId: "STRING_VALUE", // required
|
|
34
|
-
* NewBudget: {
|
|
34
|
+
* NewBudget: { // Budget
|
|
35
35
|
* BudgetName: "STRING_VALUE", // required
|
|
36
|
-
* BudgetLimit: {
|
|
36
|
+
* BudgetLimit: { // Spend
|
|
37
37
|
* Amount: "STRING_VALUE", // required
|
|
38
38
|
* Unit: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
40
|
-
* PlannedBudgetLimits: {
|
|
40
|
+
* PlannedBudgetLimits: { // PlannedBudgetLimits
|
|
41
41
|
* "<keys>": {
|
|
42
42
|
* Amount: "STRING_VALUE", // required
|
|
43
43
|
* Unit: "STRING_VALUE", // required
|
|
44
44
|
* },
|
|
45
45
|
* },
|
|
46
|
-
* CostFilters: {
|
|
47
|
-
* "<keys>": [
|
|
46
|
+
* CostFilters: { // CostFilters
|
|
47
|
+
* "<keys>": [ // DimensionValues
|
|
48
48
|
* "STRING_VALUE",
|
|
49
49
|
* ],
|
|
50
50
|
* },
|
|
51
|
-
* CostTypes: {
|
|
51
|
+
* CostTypes: { // CostTypes
|
|
52
52
|
* IncludeTax: true || false,
|
|
53
53
|
* IncludeSubscription: true || false,
|
|
54
54
|
* UseBlended: true || false,
|
|
@@ -62,11 +62,11 @@ export interface UpdateBudgetCommandOutput extends UpdateBudgetResponse, __Metad
|
|
|
62
62
|
* UseAmortized: true || false,
|
|
63
63
|
* },
|
|
64
64
|
* TimeUnit: "STRING_VALUE", // required
|
|
65
|
-
* TimePeriod: {
|
|
65
|
+
* TimePeriod: { // TimePeriod
|
|
66
66
|
* Start: new Date("TIMESTAMP"),
|
|
67
67
|
* End: new Date("TIMESTAMP"),
|
|
68
68
|
* },
|
|
69
|
-
* CalculatedSpend: {
|
|
69
|
+
* CalculatedSpend: { // CalculatedSpend
|
|
70
70
|
* ActualSpend: {
|
|
71
71
|
* Amount: "STRING_VALUE", // required
|
|
72
72
|
* Unit: "STRING_VALUE", // required
|
|
@@ -78,9 +78,9 @@ export interface UpdateBudgetCommandOutput extends UpdateBudgetResponse, __Metad
|
|
|
78
78
|
* },
|
|
79
79
|
* BudgetType: "STRING_VALUE", // required
|
|
80
80
|
* LastUpdatedTime: new Date("TIMESTAMP"),
|
|
81
|
-
* AutoAdjustData: {
|
|
81
|
+
* AutoAdjustData: { // AutoAdjustData
|
|
82
82
|
* AutoAdjustType: "STRING_VALUE", // required
|
|
83
|
-
* HistoricalOptions: {
|
|
83
|
+
* HistoricalOptions: { // HistoricalOptions
|
|
84
84
|
* BudgetAdjustmentPeriod: Number("int"), // required
|
|
85
85
|
* LookBackAvailablePeriods: Number("int"),
|
|
86
86
|
* },
|
|
@@ -26,10 +26,10 @@ export interface UpdateNotificationCommandOutput extends UpdateNotificationRespo
|
|
|
26
26
|
* import { BudgetsClient, UpdateNotificationCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
27
27
|
* // const { BudgetsClient, UpdateNotificationCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
28
28
|
* const client = new BudgetsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateNotificationRequest
|
|
30
30
|
* AccountId: "STRING_VALUE", // required
|
|
31
31
|
* BudgetName: "STRING_VALUE", // required
|
|
32
|
-
* OldNotification: {
|
|
32
|
+
* OldNotification: { // Notification
|
|
33
33
|
* NotificationType: "STRING_VALUE", // required
|
|
34
34
|
* ComparisonOperator: "STRING_VALUE", // required
|
|
35
35
|
* Threshold: Number("double"), // required
|
|
@@ -26,17 +26,17 @@ export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse,
|
|
|
26
26
|
* import { BudgetsClient, UpdateSubscriberCommand } from "@aws-sdk/client-budgets"; // ES Modules import
|
|
27
27
|
* // const { BudgetsClient, UpdateSubscriberCommand } = require("@aws-sdk/client-budgets"); // CommonJS import
|
|
28
28
|
* const client = new BudgetsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateSubscriberRequest
|
|
30
30
|
* AccountId: "STRING_VALUE", // required
|
|
31
31
|
* BudgetName: "STRING_VALUE", // required
|
|
32
|
-
* Notification: {
|
|
32
|
+
* Notification: { // Notification
|
|
33
33
|
* NotificationType: "STRING_VALUE", // required
|
|
34
34
|
* ComparisonOperator: "STRING_VALUE", // required
|
|
35
35
|
* Threshold: Number("double"), // required
|
|
36
36
|
* ThresholdType: "STRING_VALUE",
|
|
37
37
|
* NotificationState: "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
|
-
* OldSubscriber: {
|
|
39
|
+
* OldSubscriber: { // Subscriber
|
|
40
40
|
* SubscriptionType: "STRING_VALUE", // required
|
|
41
41
|
* Address: "STRING_VALUE", // required
|
|
42
42
|
* },
|
|
@@ -18,11 +18,16 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
18
18
|
}
|
|
19
19
|
/**
|
|
20
20
|
* @public
|
|
21
|
+
* @enum
|
|
21
22
|
*/
|
|
22
|
-
export declare
|
|
23
|
-
ABSOLUTE_VALUE
|
|
24
|
-
PERCENTAGE
|
|
25
|
-
}
|
|
23
|
+
export declare const ThresholdType: {
|
|
24
|
+
readonly ABSOLUTE_VALUE: "ABSOLUTE_VALUE";
|
|
25
|
+
readonly PERCENTAGE: "PERCENTAGE";
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
export type ThresholdType = (typeof ThresholdType)[keyof typeof ThresholdType];
|
|
26
31
|
/**
|
|
27
32
|
* @public
|
|
28
33
|
* <p>The trigger threshold of the action. </p>
|
|
@@ -39,19 +44,29 @@ export interface ActionThreshold {
|
|
|
39
44
|
}
|
|
40
45
|
/**
|
|
41
46
|
* @public
|
|
47
|
+
* @enum
|
|
42
48
|
*/
|
|
43
|
-
export declare
|
|
44
|
-
IAM
|
|
45
|
-
SCP
|
|
46
|
-
SSM
|
|
47
|
-
}
|
|
49
|
+
export declare const ActionType: {
|
|
50
|
+
readonly IAM: "APPLY_IAM_POLICY";
|
|
51
|
+
readonly SCP: "APPLY_SCP_POLICY";
|
|
52
|
+
readonly SSM: "RUN_SSM_DOCUMENTS";
|
|
53
|
+
};
|
|
48
54
|
/**
|
|
49
55
|
* @public
|
|
50
56
|
*/
|
|
51
|
-
export
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
57
|
+
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
* @enum
|
|
61
|
+
*/
|
|
62
|
+
export declare const ApprovalModel: {
|
|
63
|
+
readonly AUTO: "AUTOMATIC";
|
|
64
|
+
readonly MANUAL: "MANUAL";
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
export type ApprovalModel = (typeof ApprovalModel)[keyof typeof ApprovalModel];
|
|
55
70
|
/**
|
|
56
71
|
* @public
|
|
57
72
|
* <p>The Identity and Access Management (IAM) action definition details. </p>
|
|
@@ -90,11 +105,16 @@ export interface ScpActionDefinition {
|
|
|
90
105
|
}
|
|
91
106
|
/**
|
|
92
107
|
* @public
|
|
108
|
+
* @enum
|
|
93
109
|
*/
|
|
94
|
-
export declare
|
|
95
|
-
STOP_EC2
|
|
96
|
-
STOP_RDS
|
|
97
|
-
}
|
|
110
|
+
export declare const ActionSubType: {
|
|
111
|
+
readonly STOP_EC2: "STOP_EC2_INSTANCES";
|
|
112
|
+
readonly STOP_RDS: "STOP_RDS_INSTANCES";
|
|
113
|
+
};
|
|
114
|
+
/**
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
export type ActionSubType = (typeof ActionSubType)[keyof typeof ActionSubType];
|
|
98
118
|
/**
|
|
99
119
|
* @public
|
|
100
120
|
* <p>The Amazon Web Services Systems Manager (SSM) action definition details. </p>
|
|
@@ -133,33 +153,48 @@ export interface Definition {
|
|
|
133
153
|
}
|
|
134
154
|
/**
|
|
135
155
|
* @public
|
|
156
|
+
* @enum
|
|
136
157
|
*/
|
|
137
|
-
export declare
|
|
138
|
-
ACTUAL
|
|
139
|
-
FORECASTED
|
|
140
|
-
}
|
|
158
|
+
export declare const NotificationType: {
|
|
159
|
+
readonly ACTUAL: "ACTUAL";
|
|
160
|
+
readonly FORECASTED: "FORECASTED";
|
|
161
|
+
};
|
|
141
162
|
/**
|
|
142
163
|
* @public
|
|
143
164
|
*/
|
|
144
|
-
export
|
|
145
|
-
Execution_Failure = "EXECUTION_FAILURE",
|
|
146
|
-
Execution_In_Progress = "EXECUTION_IN_PROGRESS",
|
|
147
|
-
Execution_Success = "EXECUTION_SUCCESS",
|
|
148
|
-
Pending = "PENDING",
|
|
149
|
-
Reset_Failure = "RESET_FAILURE",
|
|
150
|
-
Reset_In_Progress = "RESET_IN_PROGRESS",
|
|
151
|
-
Reverse_Failure = "REVERSE_FAILURE",
|
|
152
|
-
Reverse_In_Progress = "REVERSE_IN_PROGRESS",
|
|
153
|
-
Reverse_Success = "REVERSE_SUCCESS",
|
|
154
|
-
Standby = "STANDBY"
|
|
155
|
-
}
|
|
165
|
+
export type NotificationType = (typeof NotificationType)[keyof typeof NotificationType];
|
|
156
166
|
/**
|
|
157
167
|
* @public
|
|
168
|
+
* @enum
|
|
158
169
|
*/
|
|
159
|
-
export declare
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
170
|
+
export declare const ActionStatus: {
|
|
171
|
+
readonly Execution_Failure: "EXECUTION_FAILURE";
|
|
172
|
+
readonly Execution_In_Progress: "EXECUTION_IN_PROGRESS";
|
|
173
|
+
readonly Execution_Success: "EXECUTION_SUCCESS";
|
|
174
|
+
readonly Pending: "PENDING";
|
|
175
|
+
readonly Reset_Failure: "RESET_FAILURE";
|
|
176
|
+
readonly Reset_In_Progress: "RESET_IN_PROGRESS";
|
|
177
|
+
readonly Reverse_Failure: "REVERSE_FAILURE";
|
|
178
|
+
readonly Reverse_In_Progress: "REVERSE_IN_PROGRESS";
|
|
179
|
+
readonly Reverse_Success: "REVERSE_SUCCESS";
|
|
180
|
+
readonly Standby: "STANDBY";
|
|
181
|
+
};
|
|
182
|
+
/**
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
185
|
+
export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
|
|
186
|
+
/**
|
|
187
|
+
* @public
|
|
188
|
+
* @enum
|
|
189
|
+
*/
|
|
190
|
+
export declare const SubscriptionType: {
|
|
191
|
+
readonly EMAIL: "EMAIL";
|
|
192
|
+
readonly SNS: "SNS";
|
|
193
|
+
};
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
*/
|
|
197
|
+
export type SubscriptionType = (typeof SubscriptionType)[keyof typeof SubscriptionType];
|
|
163
198
|
/**
|
|
164
199
|
* @public
|
|
165
200
|
* <p>The subscriber to a budget notification. The subscriber consists of a subscription type and either an Amazon SNS topic or an email address.</p>
|
|
@@ -250,14 +285,19 @@ export interface ActionHistoryDetails {
|
|
|
250
285
|
}
|
|
251
286
|
/**
|
|
252
287
|
* @public
|
|
288
|
+
* @enum
|
|
253
289
|
*/
|
|
254
|
-
export declare
|
|
255
|
-
CreateAction
|
|
256
|
-
DeleteAction
|
|
257
|
-
ExecuteAction
|
|
258
|
-
System
|
|
259
|
-
UpdateAction
|
|
260
|
-
}
|
|
290
|
+
export declare const EventType: {
|
|
291
|
+
readonly CreateAction: "CREATE_ACTION";
|
|
292
|
+
readonly DeleteAction: "DELETE_ACTION";
|
|
293
|
+
readonly ExecuteAction: "EXECUTE_ACTION";
|
|
294
|
+
readonly System: "SYSTEM";
|
|
295
|
+
readonly UpdateAction: "UPDATE_ACTION";
|
|
296
|
+
};
|
|
297
|
+
/**
|
|
298
|
+
* @public
|
|
299
|
+
*/
|
|
300
|
+
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
261
301
|
/**
|
|
262
302
|
* @public
|
|
263
303
|
* <p>The historical records for a budget action. </p>
|
|
@@ -283,11 +323,16 @@ export interface ActionHistory {
|
|
|
283
323
|
}
|
|
284
324
|
/**
|
|
285
325
|
* @public
|
|
326
|
+
* @enum
|
|
286
327
|
*/
|
|
287
|
-
export declare
|
|
288
|
-
FORECAST
|
|
289
|
-
HISTORICAL
|
|
290
|
-
}
|
|
328
|
+
export declare const AutoAdjustType: {
|
|
329
|
+
readonly FORECAST: "FORECAST";
|
|
330
|
+
readonly HISTORICAL: "HISTORICAL";
|
|
331
|
+
};
|
|
332
|
+
/**
|
|
333
|
+
* @public
|
|
334
|
+
*/
|
|
335
|
+
export type AutoAdjustType = (typeof AutoAdjustType)[keyof typeof AutoAdjustType];
|
|
291
336
|
/**
|
|
292
337
|
* @public
|
|
293
338
|
* <p>The parameters that define or describe the historical data that your auto-adjusting budget is based on.</p>
|
|
@@ -366,15 +411,20 @@ export interface Spend {
|
|
|
366
411
|
}
|
|
367
412
|
/**
|
|
368
413
|
* @public
|
|
414
|
+
* @enum
|
|
369
415
|
*/
|
|
370
|
-
export declare
|
|
371
|
-
Cost
|
|
372
|
-
RICoverage
|
|
373
|
-
RIUtilization
|
|
374
|
-
SPCoverage
|
|
375
|
-
SPUtilization
|
|
376
|
-
Usage
|
|
377
|
-
}
|
|
416
|
+
export declare const BudgetType: {
|
|
417
|
+
readonly Cost: "COST";
|
|
418
|
+
readonly RICoverage: "RI_COVERAGE";
|
|
419
|
+
readonly RIUtilization: "RI_UTILIZATION";
|
|
420
|
+
readonly SPCoverage: "SAVINGS_PLANS_COVERAGE";
|
|
421
|
+
readonly SPUtilization: "SAVINGS_PLANS_UTILIZATION";
|
|
422
|
+
readonly Usage: "USAGE";
|
|
423
|
+
};
|
|
424
|
+
/**
|
|
425
|
+
* @public
|
|
426
|
+
*/
|
|
427
|
+
export type BudgetType = (typeof BudgetType)[keyof typeof BudgetType];
|
|
378
428
|
/**
|
|
379
429
|
* @public
|
|
380
430
|
* <p>The spend objects that are associated with this budget. The <code>actualSpend</code> tracks
|
|
@@ -482,13 +532,18 @@ export interface TimePeriod {
|
|
|
482
532
|
}
|
|
483
533
|
/**
|
|
484
534
|
* @public
|
|
535
|
+
* @enum
|
|
485
536
|
*/
|
|
486
|
-
export declare
|
|
487
|
-
ANNUALLY
|
|
488
|
-
DAILY
|
|
489
|
-
MONTHLY
|
|
490
|
-
QUARTERLY
|
|
491
|
-
}
|
|
537
|
+
export declare const TimeUnit: {
|
|
538
|
+
readonly ANNUALLY: "ANNUALLY";
|
|
539
|
+
readonly DAILY: "DAILY";
|
|
540
|
+
readonly MONTHLY: "MONTHLY";
|
|
541
|
+
readonly QUARTERLY: "QUARTERLY";
|
|
542
|
+
};
|
|
543
|
+
/**
|
|
544
|
+
* @public
|
|
545
|
+
*/
|
|
546
|
+
export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
|
|
492
547
|
/**
|
|
493
548
|
* @public
|
|
494
549
|
* <p>Represents the output of the <code>CreateBudget</code> operation. The content consists of the detailed metadata and data file information, and the current status of the <code>budget</code> object.</p>
|
|
@@ -607,19 +662,29 @@ export interface Budget {
|
|
|
607
662
|
}
|
|
608
663
|
/**
|
|
609
664
|
* @public
|
|
665
|
+
* @enum
|
|
610
666
|
*/
|
|
611
|
-
export declare
|
|
612
|
-
EQUAL_TO
|
|
613
|
-
GREATER_THAN
|
|
614
|
-
LESS_THAN
|
|
615
|
-
}
|
|
667
|
+
export declare const ComparisonOperator: {
|
|
668
|
+
readonly EQUAL_TO: "EQUAL_TO";
|
|
669
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
670
|
+
readonly LESS_THAN: "LESS_THAN";
|
|
671
|
+
};
|
|
616
672
|
/**
|
|
617
673
|
* @public
|
|
618
674
|
*/
|
|
619
|
-
export
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
675
|
+
export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
676
|
+
/**
|
|
677
|
+
* @public
|
|
678
|
+
* @enum
|
|
679
|
+
*/
|
|
680
|
+
export declare const NotificationState: {
|
|
681
|
+
readonly ALARM: "ALARM";
|
|
682
|
+
readonly OK: "OK";
|
|
683
|
+
};
|
|
684
|
+
/**
|
|
685
|
+
* @public
|
|
686
|
+
*/
|
|
687
|
+
export type NotificationState = (typeof NotificationState)[keyof typeof NotificationState];
|
|
623
688
|
/**
|
|
624
689
|
* @public
|
|
625
690
|
* <p>A notification that's associated with a budget. A budget can have up to ten notifications. </p>
|
|
@@ -1512,13 +1577,18 @@ export interface DescribeSubscribersForNotificationResponse {
|
|
|
1512
1577
|
}
|
|
1513
1578
|
/**
|
|
1514
1579
|
* @public
|
|
1580
|
+
* @enum
|
|
1515
1581
|
*/
|
|
1516
|
-
export declare
|
|
1517
|
-
ApproveBudgetAction
|
|
1518
|
-
ResetBudgetAction
|
|
1519
|
-
RetryBudgetAction
|
|
1520
|
-
ReverseBudgetAction
|
|
1521
|
-
}
|
|
1582
|
+
export declare const ExecutionType: {
|
|
1583
|
+
readonly ApproveBudgetAction: "APPROVE_BUDGET_ACTION";
|
|
1584
|
+
readonly ResetBudgetAction: "RESET_BUDGET_ACTION";
|
|
1585
|
+
readonly RetryBudgetAction: "RETRY_BUDGET_ACTION";
|
|
1586
|
+
readonly ReverseBudgetAction: "REVERSE_BUDGET_ACTION";
|
|
1587
|
+
};
|
|
1588
|
+
/**
|
|
1589
|
+
* @public
|
|
1590
|
+
*/
|
|
1591
|
+
export type ExecutionType = (typeof ExecutionType)[keyof typeof ExecutionType];
|
|
1522
1592
|
/**
|
|
1523
1593
|
* @public
|
|
1524
1594
|
*/
|