aws-sdk 2.771.0 → 2.772.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -1
- package/README.md +1 -1
- package/apis/accessanalyzer-2019-11-01.min.json +70 -48
- package/apis/budgets-2016-10-20.min.json +411 -0
- package/apis/budgets-2016-10-20.paginators.json +18 -0
- package/apis/dms-2016-01-01.min.json +15 -3
- package/apis/groundstation-2019-05-23.min.json +1 -0
- package/apis/iot-2015-05-28.min.json +4 -1
- package/apis/macie2-2020-01-01.min.json +159 -22
- package/apis/rds-2014-10-31.min.json +13 -1
- package/apis/rekognition-2016-06-27.min.json +161 -51
- package/apis/ssm-2014-11-06.min.json +147 -126
- package/apis/transfer-2018-11-05.min.json +32 -28
- package/apis/workmail-2017-10-01.min.json +93 -30
- package/apis/xray-2016-04-12.min.json +11 -5
- package/apis/xray-2016-04-12.paginators.json +0 -15
- package/clients/accessanalyzer.d.ts +26 -4
- package/clients/budgets.d.ts +358 -0
- package/clients/costexplorer.d.ts +1 -1
- package/clients/dms.d.ts +26 -2
- package/clients/glue.d.ts +1 -1
- package/clients/groundstation.d.ts +5 -1
- package/clients/iot.d.ts +10 -6
- package/clients/macie2.d.ts +182 -62
- package/clients/rds.d.ts +13 -9
- package/clients/rekognition.d.ts +123 -0
- package/clients/ssm.d.ts +63 -11
- package/clients/transfer.d.ts +77 -71
- package/clients/workmail.d.ts +91 -1
- package/clients/workspaces.d.ts +12 -12
- package/clients/xray.d.ts +29 -21
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +15 -15
- package/dist/aws-sdk.js +339 -202
- package/dist/aws-sdk.min.js +39 -39
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/budgets.d.ts
CHANGED
|
@@ -19,6 +19,14 @@ declare class Budgets extends Service {
|
|
|
19
19
|
* Creates a budget and, if included, notifications and subscribers. Only one of BudgetLimit or PlannedBudgetLimits can be present in the syntax at one time. Use the syntax that matches your case. The Request Syntax section shows the BudgetLimit syntax. For PlannedBudgetLimits, see the Examples section.
|
|
20
20
|
*/
|
|
21
21
|
createBudget(callback?: (err: AWSError, data: Budgets.Types.CreateBudgetResponse) => void): Request<Budgets.Types.CreateBudgetResponse, AWSError>;
|
|
22
|
+
/**
|
|
23
|
+
* Creates a budget action.
|
|
24
|
+
*/
|
|
25
|
+
createBudgetAction(params: Budgets.Types.CreateBudgetActionRequest, callback?: (err: AWSError, data: Budgets.Types.CreateBudgetActionResponse) => void): Request<Budgets.Types.CreateBudgetActionResponse, AWSError>;
|
|
26
|
+
/**
|
|
27
|
+
* Creates a budget action.
|
|
28
|
+
*/
|
|
29
|
+
createBudgetAction(callback?: (err: AWSError, data: Budgets.Types.CreateBudgetActionResponse) => void): Request<Budgets.Types.CreateBudgetActionResponse, AWSError>;
|
|
22
30
|
/**
|
|
23
31
|
* Creates a notification. You must create the budget before you create the associated notification.
|
|
24
32
|
*/
|
|
@@ -43,6 +51,14 @@ declare class Budgets extends Service {
|
|
|
43
51
|
* Deletes a budget. You can delete your budget at any time. Deleting a budget also deletes the notifications and subscribers that are associated with that budget.
|
|
44
52
|
*/
|
|
45
53
|
deleteBudget(callback?: (err: AWSError, data: Budgets.Types.DeleteBudgetResponse) => void): Request<Budgets.Types.DeleteBudgetResponse, AWSError>;
|
|
54
|
+
/**
|
|
55
|
+
* Deletes a budget action.
|
|
56
|
+
*/
|
|
57
|
+
deleteBudgetAction(params: Budgets.Types.DeleteBudgetActionRequest, callback?: (err: AWSError, data: Budgets.Types.DeleteBudgetActionResponse) => void): Request<Budgets.Types.DeleteBudgetActionResponse, AWSError>;
|
|
58
|
+
/**
|
|
59
|
+
* Deletes a budget action.
|
|
60
|
+
*/
|
|
61
|
+
deleteBudgetAction(callback?: (err: AWSError, data: Budgets.Types.DeleteBudgetActionResponse) => void): Request<Budgets.Types.DeleteBudgetActionResponse, AWSError>;
|
|
46
62
|
/**
|
|
47
63
|
* Deletes a notification. Deleting a notification also deletes the subscribers that are associated with the notification.
|
|
48
64
|
*/
|
|
@@ -67,6 +83,38 @@ declare class Budgets extends Service {
|
|
|
67
83
|
* Describes a budget. The Request Syntax section shows the BudgetLimit syntax. For PlannedBudgetLimits, see the Examples section.
|
|
68
84
|
*/
|
|
69
85
|
describeBudget(callback?: (err: AWSError, data: Budgets.Types.DescribeBudgetResponse) => void): Request<Budgets.Types.DescribeBudgetResponse, AWSError>;
|
|
86
|
+
/**
|
|
87
|
+
* Describes a budget action detail.
|
|
88
|
+
*/
|
|
89
|
+
describeBudgetAction(params: Budgets.Types.DescribeBudgetActionRequest, callback?: (err: AWSError, data: Budgets.Types.DescribeBudgetActionResponse) => void): Request<Budgets.Types.DescribeBudgetActionResponse, AWSError>;
|
|
90
|
+
/**
|
|
91
|
+
* Describes a budget action detail.
|
|
92
|
+
*/
|
|
93
|
+
describeBudgetAction(callback?: (err: AWSError, data: Budgets.Types.DescribeBudgetActionResponse) => void): Request<Budgets.Types.DescribeBudgetActionResponse, AWSError>;
|
|
94
|
+
/**
|
|
95
|
+
* Describes a budget action history detail.
|
|
96
|
+
*/
|
|
97
|
+
describeBudgetActionHistories(params: Budgets.Types.DescribeBudgetActionHistoriesRequest, callback?: (err: AWSError, data: Budgets.Types.DescribeBudgetActionHistoriesResponse) => void): Request<Budgets.Types.DescribeBudgetActionHistoriesResponse, AWSError>;
|
|
98
|
+
/**
|
|
99
|
+
* Describes a budget action history detail.
|
|
100
|
+
*/
|
|
101
|
+
describeBudgetActionHistories(callback?: (err: AWSError, data: Budgets.Types.DescribeBudgetActionHistoriesResponse) => void): Request<Budgets.Types.DescribeBudgetActionHistoriesResponse, AWSError>;
|
|
102
|
+
/**
|
|
103
|
+
* Describes all of the budget actions for an account.
|
|
104
|
+
*/
|
|
105
|
+
describeBudgetActionsForAccount(params: Budgets.Types.DescribeBudgetActionsForAccountRequest, callback?: (err: AWSError, data: Budgets.Types.DescribeBudgetActionsForAccountResponse) => void): Request<Budgets.Types.DescribeBudgetActionsForAccountResponse, AWSError>;
|
|
106
|
+
/**
|
|
107
|
+
* Describes all of the budget actions for an account.
|
|
108
|
+
*/
|
|
109
|
+
describeBudgetActionsForAccount(callback?: (err: AWSError, data: Budgets.Types.DescribeBudgetActionsForAccountResponse) => void): Request<Budgets.Types.DescribeBudgetActionsForAccountResponse, AWSError>;
|
|
110
|
+
/**
|
|
111
|
+
* Describes all of the budget actions for a budget.
|
|
112
|
+
*/
|
|
113
|
+
describeBudgetActionsForBudget(params: Budgets.Types.DescribeBudgetActionsForBudgetRequest, callback?: (err: AWSError, data: Budgets.Types.DescribeBudgetActionsForBudgetResponse) => void): Request<Budgets.Types.DescribeBudgetActionsForBudgetResponse, AWSError>;
|
|
114
|
+
/**
|
|
115
|
+
* Describes all of the budget actions for a budget.
|
|
116
|
+
*/
|
|
117
|
+
describeBudgetActionsForBudget(callback?: (err: AWSError, data: Budgets.Types.DescribeBudgetActionsForBudgetResponse) => void): Request<Budgets.Types.DescribeBudgetActionsForBudgetResponse, AWSError>;
|
|
70
118
|
/**
|
|
71
119
|
* Describes the history for DAILY, MONTHLY, and QUARTERLY budgets. Budget history isn't available for ANNUAL budgets.
|
|
72
120
|
*/
|
|
@@ -99,6 +147,14 @@ declare class Budgets extends Service {
|
|
|
99
147
|
* Lists the subscribers that are associated with a notification.
|
|
100
148
|
*/
|
|
101
149
|
describeSubscribersForNotification(callback?: (err: AWSError, data: Budgets.Types.DescribeSubscribersForNotificationResponse) => void): Request<Budgets.Types.DescribeSubscribersForNotificationResponse, AWSError>;
|
|
150
|
+
/**
|
|
151
|
+
* Executes a budget action.
|
|
152
|
+
*/
|
|
153
|
+
executeBudgetAction(params: Budgets.Types.ExecuteBudgetActionRequest, callback?: (err: AWSError, data: Budgets.Types.ExecuteBudgetActionResponse) => void): Request<Budgets.Types.ExecuteBudgetActionResponse, AWSError>;
|
|
154
|
+
/**
|
|
155
|
+
* Executes a budget action.
|
|
156
|
+
*/
|
|
157
|
+
executeBudgetAction(callback?: (err: AWSError, data: Budgets.Types.ExecuteBudgetActionResponse) => void): Request<Budgets.Types.ExecuteBudgetActionResponse, AWSError>;
|
|
102
158
|
/**
|
|
103
159
|
* Updates a budget. You can change every part of a budget except for the budgetName and the calculatedSpend. When you modify a budget, the calculatedSpend drops to zero until AWS has new usage data to use for forecasting. Only one of BudgetLimit or PlannedBudgetLimits can be present in the syntax at one time. Use the syntax that matches your case. The Request Syntax section shows the BudgetLimit syntax. For PlannedBudgetLimits, see the Examples section.
|
|
104
160
|
*/
|
|
@@ -107,6 +163,14 @@ declare class Budgets extends Service {
|
|
|
107
163
|
* Updates a budget. You can change every part of a budget except for the budgetName and the calculatedSpend. When you modify a budget, the calculatedSpend drops to zero until AWS has new usage data to use for forecasting. Only one of BudgetLimit or PlannedBudgetLimits can be present in the syntax at one time. Use the syntax that matches your case. The Request Syntax section shows the BudgetLimit syntax. For PlannedBudgetLimits, see the Examples section.
|
|
108
164
|
*/
|
|
109
165
|
updateBudget(callback?: (err: AWSError, data: Budgets.Types.UpdateBudgetResponse) => void): Request<Budgets.Types.UpdateBudgetResponse, AWSError>;
|
|
166
|
+
/**
|
|
167
|
+
* Updates a budget action.
|
|
168
|
+
*/
|
|
169
|
+
updateBudgetAction(params: Budgets.Types.UpdateBudgetActionRequest, callback?: (err: AWSError, data: Budgets.Types.UpdateBudgetActionResponse) => void): Request<Budgets.Types.UpdateBudgetActionResponse, AWSError>;
|
|
170
|
+
/**
|
|
171
|
+
* Updates a budget action.
|
|
172
|
+
*/
|
|
173
|
+
updateBudgetAction(callback?: (err: AWSError, data: Budgets.Types.UpdateBudgetActionResponse) => void): Request<Budgets.Types.UpdateBudgetActionResponse, AWSError>;
|
|
110
174
|
/**
|
|
111
175
|
* Updates a notification.
|
|
112
176
|
*/
|
|
@@ -126,6 +190,72 @@ declare class Budgets extends Service {
|
|
|
126
190
|
}
|
|
127
191
|
declare namespace Budgets {
|
|
128
192
|
export type AccountId = string;
|
|
193
|
+
export interface Action {
|
|
194
|
+
/**
|
|
195
|
+
* A system-generated universally unique identifier (UUID) for the action.
|
|
196
|
+
*/
|
|
197
|
+
ActionId: ActionId;
|
|
198
|
+
BudgetName: BudgetName;
|
|
199
|
+
NotificationType: NotificationType;
|
|
200
|
+
/**
|
|
201
|
+
* The type of action. This defines the type of tasks that can be carried out by this action. This field also determines the format for definition.
|
|
202
|
+
*/
|
|
203
|
+
ActionType: ActionType;
|
|
204
|
+
/**
|
|
205
|
+
* The trigger threshold of the action.
|
|
206
|
+
*/
|
|
207
|
+
ActionThreshold: ActionThreshold;
|
|
208
|
+
/**
|
|
209
|
+
* Where you specify all of the type-specific parameters.
|
|
210
|
+
*/
|
|
211
|
+
Definition: Definition;
|
|
212
|
+
/**
|
|
213
|
+
* The role passed for action execution and reversion. Roles and actions must be in the same account.
|
|
214
|
+
*/
|
|
215
|
+
ExecutionRoleArn: RoleArn;
|
|
216
|
+
/**
|
|
217
|
+
* This specifies if the action needs manual or automatic approval.
|
|
218
|
+
*/
|
|
219
|
+
ApprovalModel: ApprovalModel;
|
|
220
|
+
/**
|
|
221
|
+
* The status of action.
|
|
222
|
+
*/
|
|
223
|
+
Status: ActionStatus;
|
|
224
|
+
Subscribers: Subscribers;
|
|
225
|
+
}
|
|
226
|
+
export type ActionHistories = ActionHistory[];
|
|
227
|
+
export interface ActionHistory {
|
|
228
|
+
Timestamp: GenericTimestamp;
|
|
229
|
+
/**
|
|
230
|
+
* The status of action at the time of the event.
|
|
231
|
+
*/
|
|
232
|
+
Status: ActionStatus;
|
|
233
|
+
/**
|
|
234
|
+
* This distinguishes between whether the events are triggered by the user or generated by the system.
|
|
235
|
+
*/
|
|
236
|
+
EventType: EventType;
|
|
237
|
+
/**
|
|
238
|
+
* The description of details of the event.
|
|
239
|
+
*/
|
|
240
|
+
ActionHistoryDetails: ActionHistoryDetails;
|
|
241
|
+
}
|
|
242
|
+
export interface ActionHistoryDetails {
|
|
243
|
+
Message: GenericString;
|
|
244
|
+
/**
|
|
245
|
+
* The budget action resource.
|
|
246
|
+
*/
|
|
247
|
+
Action: Action;
|
|
248
|
+
}
|
|
249
|
+
export type ActionId = string;
|
|
250
|
+
export type ActionStatus = "STANDBY"|"PENDING"|"EXECUTION_IN_PROGRESS"|"EXECUTION_SUCCESS"|"EXECUTION_FAILURE"|"REVERSE_IN_PROGRESS"|"REVERSE_SUCCESS"|"REVERSE_FAILURE"|"RESET_IN_PROGRESS"|"RESET_FAILURE"|string;
|
|
251
|
+
export type ActionSubType = "STOP_EC2_INSTANCES"|"STOP_RDS_INSTANCES"|string;
|
|
252
|
+
export interface ActionThreshold {
|
|
253
|
+
ActionThresholdValue: NotificationThreshold;
|
|
254
|
+
ActionThresholdType: ThresholdType;
|
|
255
|
+
}
|
|
256
|
+
export type ActionType = "APPLY_IAM_POLICY"|"APPLY_SCP_POLICY"|"RUN_SSM_DOCUMENTS"|string;
|
|
257
|
+
export type Actions = Action[];
|
|
258
|
+
export type ApprovalModel = "AUTOMATIC"|"MANUAL"|string;
|
|
129
259
|
export interface Budget {
|
|
130
260
|
/**
|
|
131
261
|
* The name of a budget. The name must be unique within an account. The : and \ characters aren't allowed in BudgetName.
|
|
@@ -261,6 +391,34 @@ declare namespace Budgets {
|
|
|
261
391
|
*/
|
|
262
392
|
UseAmortized?: NullableBoolean;
|
|
263
393
|
}
|
|
394
|
+
export interface CreateBudgetActionRequest {
|
|
395
|
+
AccountId: AccountId;
|
|
396
|
+
BudgetName: BudgetName;
|
|
397
|
+
NotificationType: NotificationType;
|
|
398
|
+
/**
|
|
399
|
+
* The type of action. This defines the type of tasks that can be carried out by this action. This field also determines the format for definition.
|
|
400
|
+
*/
|
|
401
|
+
ActionType: ActionType;
|
|
402
|
+
ActionThreshold: ActionThreshold;
|
|
403
|
+
Definition: Definition;
|
|
404
|
+
/**
|
|
405
|
+
* The role passed for action execution and reversion. Roles and actions must be in the same account.
|
|
406
|
+
*/
|
|
407
|
+
ExecutionRoleArn: RoleArn;
|
|
408
|
+
/**
|
|
409
|
+
* This specifies if the action needs manual or automatic approval.
|
|
410
|
+
*/
|
|
411
|
+
ApprovalModel: ApprovalModel;
|
|
412
|
+
Subscribers: Subscribers;
|
|
413
|
+
}
|
|
414
|
+
export interface CreateBudgetActionResponse {
|
|
415
|
+
AccountId: AccountId;
|
|
416
|
+
BudgetName: BudgetName;
|
|
417
|
+
/**
|
|
418
|
+
* A system-generated universally unique identifier (UUID) for the action.
|
|
419
|
+
*/
|
|
420
|
+
ActionId: ActionId;
|
|
421
|
+
}
|
|
264
422
|
export interface CreateBudgetRequest {
|
|
265
423
|
/**
|
|
266
424
|
* The accountId that is associated with the budget.
|
|
@@ -317,6 +475,33 @@ declare namespace Budgets {
|
|
|
317
475
|
}
|
|
318
476
|
export interface CreateSubscriberResponse {
|
|
319
477
|
}
|
|
478
|
+
export interface Definition {
|
|
479
|
+
/**
|
|
480
|
+
* The AWS Identity and Access Management (IAM) action definition details.
|
|
481
|
+
*/
|
|
482
|
+
IamActionDefinition?: IamActionDefinition;
|
|
483
|
+
/**
|
|
484
|
+
* The service control policies (SCPs) action definition details.
|
|
485
|
+
*/
|
|
486
|
+
ScpActionDefinition?: ScpActionDefinition;
|
|
487
|
+
/**
|
|
488
|
+
* The AWS Systems Manager (SSM) action definition details.
|
|
489
|
+
*/
|
|
490
|
+
SsmActionDefinition?: SsmActionDefinition;
|
|
491
|
+
}
|
|
492
|
+
export interface DeleteBudgetActionRequest {
|
|
493
|
+
AccountId: AccountId;
|
|
494
|
+
BudgetName: BudgetName;
|
|
495
|
+
/**
|
|
496
|
+
* A system-generated universally unique identifier (UUID) for the action.
|
|
497
|
+
*/
|
|
498
|
+
ActionId: ActionId;
|
|
499
|
+
}
|
|
500
|
+
export interface DeleteBudgetActionResponse {
|
|
501
|
+
AccountId: AccountId;
|
|
502
|
+
BudgetName: BudgetName;
|
|
503
|
+
Action: Action;
|
|
504
|
+
}
|
|
320
505
|
export interface DeleteBudgetRequest {
|
|
321
506
|
/**
|
|
322
507
|
* The accountId that is associated with the budget that you want to delete.
|
|
@@ -365,6 +550,65 @@ declare namespace Budgets {
|
|
|
365
550
|
}
|
|
366
551
|
export interface DeleteSubscriberResponse {
|
|
367
552
|
}
|
|
553
|
+
export interface DescribeBudgetActionHistoriesRequest {
|
|
554
|
+
AccountId: AccountId;
|
|
555
|
+
BudgetName: BudgetName;
|
|
556
|
+
/**
|
|
557
|
+
* A system-generated universally unique identifier (UUID) for the action.
|
|
558
|
+
*/
|
|
559
|
+
ActionId: ActionId;
|
|
560
|
+
TimePeriod?: TimePeriod;
|
|
561
|
+
MaxResults?: MaxResults;
|
|
562
|
+
NextToken?: GenericString;
|
|
563
|
+
}
|
|
564
|
+
export interface DescribeBudgetActionHistoriesResponse {
|
|
565
|
+
/**
|
|
566
|
+
* The historical record of the budget action resource.
|
|
567
|
+
*/
|
|
568
|
+
ActionHistories: ActionHistories;
|
|
569
|
+
NextToken?: GenericString;
|
|
570
|
+
}
|
|
571
|
+
export interface DescribeBudgetActionRequest {
|
|
572
|
+
AccountId: AccountId;
|
|
573
|
+
BudgetName: BudgetName;
|
|
574
|
+
/**
|
|
575
|
+
* A system-generated universally unique identifier (UUID) for the action.
|
|
576
|
+
*/
|
|
577
|
+
ActionId: ActionId;
|
|
578
|
+
}
|
|
579
|
+
export interface DescribeBudgetActionResponse {
|
|
580
|
+
AccountId: AccountId;
|
|
581
|
+
BudgetName: BudgetName;
|
|
582
|
+
/**
|
|
583
|
+
* A budget action resource.
|
|
584
|
+
*/
|
|
585
|
+
Action: Action;
|
|
586
|
+
}
|
|
587
|
+
export interface DescribeBudgetActionsForAccountRequest {
|
|
588
|
+
AccountId: AccountId;
|
|
589
|
+
MaxResults?: MaxResults;
|
|
590
|
+
NextToken?: GenericString;
|
|
591
|
+
}
|
|
592
|
+
export interface DescribeBudgetActionsForAccountResponse {
|
|
593
|
+
/**
|
|
594
|
+
* A list of the budget action resources information.
|
|
595
|
+
*/
|
|
596
|
+
Actions: Actions;
|
|
597
|
+
NextToken?: GenericString;
|
|
598
|
+
}
|
|
599
|
+
export interface DescribeBudgetActionsForBudgetRequest {
|
|
600
|
+
AccountId: AccountId;
|
|
601
|
+
BudgetName: BudgetName;
|
|
602
|
+
MaxResults?: MaxResults;
|
|
603
|
+
NextToken?: GenericString;
|
|
604
|
+
}
|
|
605
|
+
export interface DescribeBudgetActionsForBudgetResponse {
|
|
606
|
+
/**
|
|
607
|
+
* A list of the budget action resources information.
|
|
608
|
+
*/
|
|
609
|
+
Actions: Actions;
|
|
610
|
+
NextToken?: GenericString;
|
|
611
|
+
}
|
|
368
612
|
export interface DescribeBudgetPerformanceHistoryRequest {
|
|
369
613
|
AccountId: AccountId;
|
|
370
614
|
BudgetName: BudgetName;
|
|
@@ -483,8 +727,56 @@ declare namespace Budgets {
|
|
|
483
727
|
NextToken?: GenericString;
|
|
484
728
|
}
|
|
485
729
|
export type DimensionValues = GenericString[];
|
|
730
|
+
export type EventType = "SYSTEM"|"CREATE_ACTION"|"DELETE_ACTION"|"UPDATE_ACTION"|"EXECUTE_ACTION"|string;
|
|
731
|
+
export interface ExecuteBudgetActionRequest {
|
|
732
|
+
AccountId: AccountId;
|
|
733
|
+
BudgetName: BudgetName;
|
|
734
|
+
/**
|
|
735
|
+
* A system-generated universally unique identifier (UUID) for the action.
|
|
736
|
+
*/
|
|
737
|
+
ActionId: ActionId;
|
|
738
|
+
/**
|
|
739
|
+
* The type of execution.
|
|
740
|
+
*/
|
|
741
|
+
ExecutionType: ExecutionType;
|
|
742
|
+
}
|
|
743
|
+
export interface ExecuteBudgetActionResponse {
|
|
744
|
+
AccountId: AccountId;
|
|
745
|
+
BudgetName: BudgetName;
|
|
746
|
+
/**
|
|
747
|
+
* A system-generated universally unique identifier (UUID) for the action.
|
|
748
|
+
*/
|
|
749
|
+
ActionId: ActionId;
|
|
750
|
+
/**
|
|
751
|
+
* The type of execution.
|
|
752
|
+
*/
|
|
753
|
+
ExecutionType: ExecutionType;
|
|
754
|
+
}
|
|
755
|
+
export type ExecutionType = "APPROVE_BUDGET_ACTION"|"RETRY_BUDGET_ACTION"|"REVERSE_BUDGET_ACTION"|"RESET_BUDGET_ACTION"|string;
|
|
486
756
|
export type GenericString = string;
|
|
487
757
|
export type GenericTimestamp = Date;
|
|
758
|
+
export type Group = string;
|
|
759
|
+
export type Groups = Group[];
|
|
760
|
+
export interface IamActionDefinition {
|
|
761
|
+
/**
|
|
762
|
+
* The Amazon Resource Name (ARN) of the policy to be attached.
|
|
763
|
+
*/
|
|
764
|
+
PolicyArn: PolicyArn;
|
|
765
|
+
/**
|
|
766
|
+
* A list of roles to be attached. There must be at least one role.
|
|
767
|
+
*/
|
|
768
|
+
Roles?: Roles;
|
|
769
|
+
/**
|
|
770
|
+
* A list of groups to be attached. There must be at least one group.
|
|
771
|
+
*/
|
|
772
|
+
Groups?: Groups;
|
|
773
|
+
/**
|
|
774
|
+
* A list of users to be attached. There must be at least one user.
|
|
775
|
+
*/
|
|
776
|
+
Users?: Users;
|
|
777
|
+
}
|
|
778
|
+
export type InstanceId = string;
|
|
779
|
+
export type InstanceIds = InstanceId[];
|
|
488
780
|
export type MaxResults = number;
|
|
489
781
|
export interface Notification {
|
|
490
782
|
/**
|
|
@@ -526,6 +818,22 @@ declare namespace Budgets {
|
|
|
526
818
|
export type NullableBoolean = boolean;
|
|
527
819
|
export type NumericValue = string;
|
|
528
820
|
export type PlannedBudgetLimits = {[key: string]: Spend};
|
|
821
|
+
export type PolicyArn = string;
|
|
822
|
+
export type PolicyId = string;
|
|
823
|
+
export type Region = string;
|
|
824
|
+
export type Role = string;
|
|
825
|
+
export type RoleArn = string;
|
|
826
|
+
export type Roles = Role[];
|
|
827
|
+
export interface ScpActionDefinition {
|
|
828
|
+
/**
|
|
829
|
+
* The policy ID attached.
|
|
830
|
+
*/
|
|
831
|
+
PolicyId: PolicyId;
|
|
832
|
+
/**
|
|
833
|
+
* A list of target IDs.
|
|
834
|
+
*/
|
|
835
|
+
TargetIds: TargetIds;
|
|
836
|
+
}
|
|
529
837
|
export interface Spend {
|
|
530
838
|
/**
|
|
531
839
|
* The cost or usage amount that is associated with a budget forecast, actual spend, or budget threshold.
|
|
@@ -536,6 +844,20 @@ declare namespace Budgets {
|
|
|
536
844
|
*/
|
|
537
845
|
Unit: UnitValue;
|
|
538
846
|
}
|
|
847
|
+
export interface SsmActionDefinition {
|
|
848
|
+
/**
|
|
849
|
+
* The action subType.
|
|
850
|
+
*/
|
|
851
|
+
ActionSubType: ActionSubType;
|
|
852
|
+
/**
|
|
853
|
+
* The Region to run the SSM document.
|
|
854
|
+
*/
|
|
855
|
+
Region: Region;
|
|
856
|
+
/**
|
|
857
|
+
* The EC2 and RDS instance IDs.
|
|
858
|
+
*/
|
|
859
|
+
InstanceIds: InstanceIds;
|
|
860
|
+
}
|
|
539
861
|
export interface Subscriber {
|
|
540
862
|
/**
|
|
541
863
|
* The type of notification that AWS sends to a subscriber.
|
|
@@ -549,6 +871,8 @@ declare namespace Budgets {
|
|
|
549
871
|
export type SubscriberAddress = string;
|
|
550
872
|
export type Subscribers = Subscriber[];
|
|
551
873
|
export type SubscriptionType = "SNS"|"EMAIL"|string;
|
|
874
|
+
export type TargetId = string;
|
|
875
|
+
export type TargetIds = TargetId[];
|
|
552
876
|
export type ThresholdType = "PERCENTAGE"|"ABSOLUTE_VALUE"|string;
|
|
553
877
|
export interface TimePeriod {
|
|
554
878
|
/**
|
|
@@ -562,6 +886,38 @@ declare namespace Budgets {
|
|
|
562
886
|
}
|
|
563
887
|
export type TimeUnit = "DAILY"|"MONTHLY"|"QUARTERLY"|"ANNUALLY"|string;
|
|
564
888
|
export type UnitValue = string;
|
|
889
|
+
export interface UpdateBudgetActionRequest {
|
|
890
|
+
AccountId: AccountId;
|
|
891
|
+
BudgetName: BudgetName;
|
|
892
|
+
/**
|
|
893
|
+
* A system-generated universally unique identifier (UUID) for the action.
|
|
894
|
+
*/
|
|
895
|
+
ActionId: ActionId;
|
|
896
|
+
NotificationType?: NotificationType;
|
|
897
|
+
ActionThreshold?: ActionThreshold;
|
|
898
|
+
Definition?: Definition;
|
|
899
|
+
/**
|
|
900
|
+
* The role passed for action execution and reversion. Roles and actions must be in the same account.
|
|
901
|
+
*/
|
|
902
|
+
ExecutionRoleArn?: RoleArn;
|
|
903
|
+
/**
|
|
904
|
+
* This specifies if the action needs manual or automatic approval.
|
|
905
|
+
*/
|
|
906
|
+
ApprovalModel?: ApprovalModel;
|
|
907
|
+
Subscribers?: Subscribers;
|
|
908
|
+
}
|
|
909
|
+
export interface UpdateBudgetActionResponse {
|
|
910
|
+
AccountId: AccountId;
|
|
911
|
+
BudgetName: BudgetName;
|
|
912
|
+
/**
|
|
913
|
+
* The previous action resource information.
|
|
914
|
+
*/
|
|
915
|
+
OldAction: Action;
|
|
916
|
+
/**
|
|
917
|
+
* The updated action resource information.
|
|
918
|
+
*/
|
|
919
|
+
NewAction: Action;
|
|
920
|
+
}
|
|
565
921
|
export interface UpdateBudgetRequest {
|
|
566
922
|
/**
|
|
567
923
|
* The accountId that is associated with the budget that you want to update.
|
|
@@ -618,6 +974,8 @@ declare namespace Budgets {
|
|
|
618
974
|
}
|
|
619
975
|
export interface UpdateSubscriberResponse {
|
|
620
976
|
}
|
|
977
|
+
export type User = string;
|
|
978
|
+
export type Users = User[];
|
|
621
979
|
/**
|
|
622
980
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
|
623
981
|
*/
|
|
@@ -1071,7 +1071,7 @@ declare namespace CostExplorer {
|
|
|
1071
1071
|
*/
|
|
1072
1072
|
Metrics?: MetricNames;
|
|
1073
1073
|
/**
|
|
1074
|
-
* You can group Amazon Web Services costs using up to two different groups:
|
|
1074
|
+
* You can group Amazon Web Services costs using up to two different groups: DIMENSION, TAG, COST_CATEGORY.
|
|
1075
1075
|
*/
|
|
1076
1076
|
GroupBy?: GroupDefinitions;
|
|
1077
1077
|
/**
|
package/clients/dms.d.ts
CHANGED
|
@@ -763,6 +763,10 @@ declare namespace DMS {
|
|
|
763
763
|
* Settings in JSON format for the source IBM Db2 LUW endpoint. For information about other available settings, see Extra connection attributes when using Db2 LUW as a source for AWS DMS in the AWS Database Migration Service User Guide.
|
|
764
764
|
*/
|
|
765
765
|
IBMDb2Settings?: IBMDb2Settings;
|
|
766
|
+
/**
|
|
767
|
+
* A friendly name for the resource identifier at the end of the EndpointArn response parameter that is returned in the created Endpoint object. The value for this parameter can have up to 31 characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you don't specify a ResourceIdentifier value, AWS DMS generates a default identifier value for the end of EndpointArn.
|
|
768
|
+
*/
|
|
769
|
+
ResourceIdentifier?: String;
|
|
766
770
|
}
|
|
767
771
|
export interface CreateEndpointResponse {
|
|
768
772
|
/**
|
|
@@ -863,6 +867,10 @@ declare namespace DMS {
|
|
|
863
867
|
* A list of custom DNS name servers supported for the replication instance to access your on-premise source or target database. This list overrides the default name servers supported by the replication instance. You can specify a comma-separated list of internet addresses for up to four on-premise DNS name servers. For example: "1.1.1.1,2.2.2.2,3.3.3.3,4.4.4.4"
|
|
864
868
|
*/
|
|
865
869
|
DnsNameServers?: String;
|
|
870
|
+
/**
|
|
871
|
+
* A friendly name for the resource identifier at the end of the EndpointArn response parameter that is returned in the created Endpoint object. The value for this parameter can have up to 31 characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you don't specify a ResourceIdentifier value, AWS DMS generates a default identifier value for the end of EndpointArn.
|
|
872
|
+
*/
|
|
873
|
+
ResourceIdentifier?: String;
|
|
866
874
|
}
|
|
867
875
|
export interface CreateReplicationInstanceResponse {
|
|
868
876
|
/**
|
|
@@ -943,6 +951,10 @@ declare namespace DMS {
|
|
|
943
951
|
* Supplemental information that the task requires to migrate the data for certain source and target endpoints. For more information, see Specifying Supplemental Data for Task Settings in the AWS Database Migration Service User Guide.
|
|
944
952
|
*/
|
|
945
953
|
TaskData?: String;
|
|
954
|
+
/**
|
|
955
|
+
* A friendly name for the resource identifier at the end of the EndpointArn response parameter that is returned in the created Endpoint object. The value for this parameter can have up to 31 characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you don't specify a ResourceIdentifier value, AWS DMS generates a default identifier value for the end of EndpointArn.
|
|
956
|
+
*/
|
|
957
|
+
ResourceIdentifier?: String;
|
|
946
958
|
}
|
|
947
959
|
export interface CreateReplicationTaskResponse {
|
|
948
960
|
/**
|
|
@@ -2705,6 +2717,14 @@ declare namespace DMS {
|
|
|
2705
2717
|
* The name of the intermediate S3 bucket used to store .csv files before uploading data to Redshift.
|
|
2706
2718
|
*/
|
|
2707
2719
|
BucketName?: String;
|
|
2720
|
+
/**
|
|
2721
|
+
* If Amazon Redshift is configured to support case sensitive schema names, set CaseSensitiveNames to true. The default is false.
|
|
2722
|
+
*/
|
|
2723
|
+
CaseSensitiveNames?: BooleanOptional;
|
|
2724
|
+
/**
|
|
2725
|
+
* If you set CompUpdate to true Amazon Redshift applies automatic compression if the table is empty. This applies even if the table columns already have encodings other than RAW. If you set CompUpdate to false, automatic compression is disabled and existing column encodings aren't changed. The default is true.
|
|
2726
|
+
*/
|
|
2727
|
+
CompUpdate?: BooleanOptional;
|
|
2708
2728
|
/**
|
|
2709
2729
|
* A value that sets the amount of time to wait (in milliseconds) before timing out, beginning from when you initially establish a connection.
|
|
2710
2730
|
*/
|
|
@@ -2725,6 +2745,10 @@ declare namespace DMS {
|
|
|
2725
2745
|
* The type of server-side encryption that you want to use for your data. This encryption type is part of the endpoint settings or the extra connections attributes for Amazon S3. You can choose either SSE_S3 (the default) or SSE_KMS. For the ModifyEndpoint operation, you can change the existing value of the EncryptionMode parameter from SSE_KMS to SSE_S3. But you can’t change the existing value from SSE_S3 to SSE_KMS. To use SSE_S3, create an AWS Identity and Access Management (IAM) role with a policy that allows "arn:aws:s3:::*" to use the following actions: "s3:PutObject", "s3:ListBucket"
|
|
2726
2746
|
*/
|
|
2727
2747
|
EncryptionMode?: EncryptionModeValue;
|
|
2748
|
+
/**
|
|
2749
|
+
* This setting is only valid for a full-load migration task. Set ExplicitIds to true to have tables with IDENTITY columns override their auto-generated values with explicit values loaded from the source data files used to populate the tables. The default is false.
|
|
2750
|
+
*/
|
|
2751
|
+
ExplicitIds?: BooleanOptional;
|
|
2728
2752
|
/**
|
|
2729
2753
|
* The number of threads used to upload a single file. This parameter accepts a value from 1 through 64. It defaults to 10. The number of parallel streams used to upload a single .csv file to an S3 bucket using S3 Multipart Upload. For more information, see Multipart upload overview. FileTransferUploadStreams accepts a value from 1 through 64. It defaults to 10.
|
|
2730
2754
|
*/
|
|
@@ -3357,7 +3381,7 @@ declare namespace DMS {
|
|
|
3357
3381
|
*/
|
|
3358
3382
|
DatePartitionSequence?: DatePartitionSequenceValue;
|
|
3359
3383
|
/**
|
|
3360
|
-
* Specifies a date separating delimiter to use during folder partitioning. The default value is SLASH
|
|
3384
|
+
* Specifies a date separating delimiter to use during folder partitioning. The default value is SLASH. Use this parameter when DatePartitionedEnabled is set to true.
|
|
3361
3385
|
*/
|
|
3362
3386
|
DatePartitionDelimiter?: DatePartitionDelimiterValue;
|
|
3363
3387
|
}
|
|
@@ -3428,7 +3452,7 @@ declare namespace DMS {
|
|
|
3428
3452
|
*/
|
|
3429
3453
|
ReplicationTaskArn: String;
|
|
3430
3454
|
/**
|
|
3431
|
-
*
|
|
3455
|
+
* A type of replication task.
|
|
3432
3456
|
*/
|
|
3433
3457
|
StartReplicationTaskType: StartReplicationTaskTypeValue;
|
|
3434
3458
|
/**
|
package/clients/glue.d.ts
CHANGED
|
@@ -4082,7 +4082,7 @@ declare namespace Glue {
|
|
|
4082
4082
|
*/
|
|
4083
4083
|
Language?: Language;
|
|
4084
4084
|
/**
|
|
4085
|
-
* A map to hold additional optional key-value parameters.
|
|
4085
|
+
* A map to hold additional optional key-value parameters. Currently, these key-value pairs are supported: inferSchema — Specifies whether to set inferSchema to true or false for the default script generated by an AWS Glue job. For example, to set inferSchema to true, pass the following key value pair: --additional-plan-options-map '{"inferSchema":"true"}'
|
|
4086
4086
|
*/
|
|
4087
4087
|
AdditionalPlanOptionsMap?: AdditionalPlanOptionsMap;
|
|
4088
4088
|
}
|
|
@@ -391,7 +391,7 @@ declare namespace GroundStation {
|
|
|
391
391
|
contactId?: String;
|
|
392
392
|
}
|
|
393
393
|
export type ContactList = ContactData[];
|
|
394
|
-
export type ContactStatus = "AVAILABLE"|"AWS_CANCELLED"|"CANCELLED"|"CANCELLING"|"COMPLETED"|"FAILED"|"FAILED_TO_SCHEDULE"|"PASS"|"POSTPASS"|"PREPASS"|"SCHEDULED"|"SCHEDULING"|string;
|
|
394
|
+
export type ContactStatus = "AVAILABLE"|"AWS_CANCELLED"|"AWS_FAILED"|"CANCELLED"|"CANCELLING"|"COMPLETED"|"FAILED"|"FAILED_TO_SCHEDULE"|"PASS"|"POSTPASS"|"PREPASS"|"SCHEDULED"|"SCHEDULING"|string;
|
|
395
395
|
export interface CreateConfigRequest {
|
|
396
396
|
/**
|
|
397
397
|
* Parameters of a Config.
|
|
@@ -449,6 +449,10 @@ declare namespace GroundStation {
|
|
|
449
449
|
export type Criticality = "PREFERRED"|"REMOVED"|"REQUIRED"|string;
|
|
450
450
|
export interface DataflowDetail {
|
|
451
451
|
destination?: Destination;
|
|
452
|
+
/**
|
|
453
|
+
* Error message for a dataflow.
|
|
454
|
+
*/
|
|
455
|
+
errorMessage?: String;
|
|
452
456
|
source?: Source;
|
|
453
457
|
}
|
|
454
458
|
export type DataflowEdge = ConfigArn[];
|
package/clients/iot.d.ts
CHANGED
|
@@ -3583,7 +3583,7 @@ declare namespace Iot {
|
|
|
3583
3583
|
*/
|
|
3584
3584
|
alertTargets?: AlertTargets;
|
|
3585
3585
|
/**
|
|
3586
|
-
* A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.
|
|
3586
|
+
* Please use CreateSecurityProfileRequest$additionalMetricsToRetainV2 instead. A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.
|
|
3587
3587
|
*/
|
|
3588
3588
|
additionalMetricsToRetain?: AdditionalMetricsToRetainList;
|
|
3589
3589
|
/**
|
|
@@ -4345,6 +4345,10 @@ declare namespace Iot {
|
|
|
4345
4345
|
* The type of the domain.
|
|
4346
4346
|
*/
|
|
4347
4347
|
domainType?: DomainType;
|
|
4348
|
+
/**
|
|
4349
|
+
* The date and time the domain configuration's status was last changed.
|
|
4350
|
+
*/
|
|
4351
|
+
lastStatusChangeDate?: DateType;
|
|
4348
4352
|
}
|
|
4349
4353
|
export interface DescribeEndpointRequest {
|
|
4350
4354
|
/**
|
|
@@ -4618,7 +4622,7 @@ declare namespace Iot {
|
|
|
4618
4622
|
*/
|
|
4619
4623
|
alertTargets?: AlertTargets;
|
|
4620
4624
|
/**
|
|
4621
|
-
* A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.
|
|
4625
|
+
* Please use DescribeSecurityProfileResponse$additionalMetricsToRetainV2 instead. A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.
|
|
4622
4626
|
*/
|
|
4623
4627
|
additionalMetricsToRetain?: AdditionalMetricsToRetainList;
|
|
4624
4628
|
/**
|
|
@@ -5060,11 +5064,11 @@ declare namespace Iot {
|
|
|
5060
5064
|
*/
|
|
5061
5065
|
baseRatePerMinute: RolloutRatePerMinute;
|
|
5062
5066
|
/**
|
|
5063
|
-
* The exponential factor to increase the rate of rollout for a job.
|
|
5067
|
+
* The exponential factor to increase the rate of rollout for a job. AWS IoT supports up to one digit after the decimal (for example, 1.5, but not 1.55).
|
|
5064
5068
|
*/
|
|
5065
5069
|
incrementFactor: IncrementFactor;
|
|
5066
5070
|
/**
|
|
5067
|
-
* The criteria to initiate the increase in rate of rollout for a job.
|
|
5071
|
+
* The criteria to initiate the increase in rate of rollout for a job.
|
|
5068
5072
|
*/
|
|
5069
5073
|
rateIncreaseCriteria: RateIncreaseCriteria;
|
|
5070
5074
|
}
|
|
@@ -9487,7 +9491,7 @@ declare namespace Iot {
|
|
|
9487
9491
|
*/
|
|
9488
9492
|
alertTargets?: AlertTargets;
|
|
9489
9493
|
/**
|
|
9490
|
-
* A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.
|
|
9494
|
+
* Please use UpdateSecurityProfileRequest$additionalMetricsToRetainV2 instead. A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.
|
|
9491
9495
|
*/
|
|
9492
9496
|
additionalMetricsToRetain?: AdditionalMetricsToRetainList;
|
|
9493
9497
|
/**
|
|
@@ -9533,7 +9537,7 @@ declare namespace Iot {
|
|
|
9533
9537
|
*/
|
|
9534
9538
|
alertTargets?: AlertTargets;
|
|
9535
9539
|
/**
|
|
9536
|
-
* A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the security profile's behaviors, but it is also retained for any metric specified here.
|
|
9540
|
+
* Please use UpdateSecurityProfileResponse$additionalMetricsToRetainV2 instead. A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the security profile's behaviors, but it is also retained for any metric specified here.
|
|
9537
9541
|
*/
|
|
9538
9542
|
additionalMetricsToRetain?: AdditionalMetricsToRetainList;
|
|
9539
9543
|
/**
|