Skip to content

Commit 6fce545

Browse files
author
awstools
committed
Updates SDK to v2.1077.0
1 parent a231b94 commit 6fce545

18 files changed

+688
-470
lines changed

.changes/2.1077.0.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Budgets",
5+
"description": "This change introduces DescribeBudgetNotificationsForAccount API which returns budget notifications for the specified account"
6+
},
7+
{
8+
"type": "feature",
9+
"category": "Transfer",
10+
"description": "Properties for Transfer Family used with SFTP, FTP, and FTPS protocols. Display Banners are bodies of text that can be displayed before and/or after a user authenticates onto a server using one of the previously mentioned protocols."
11+
}
12+
]

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1076.0-->
2+
<!--LATEST=2.1077.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1077.0
6+
* feature: Budgets: This change introduces DescribeBudgetNotificationsForAccount API which returns budget notifications for the specified account
7+
* feature: Transfer: Properties for Transfer Family used with SFTP, FTP, and FTPS protocols. Display Banners are bodies of text that can be displayed before and/or after a user authenticates onto a server using one of the previously mentioned protocols.
8+
59
## 2.1076.0
610
* feature: Backup: AWS Backup add new S3_BACKUP_OBJECT_FAILED and S3_RESTORE_OBJECT_FAILED event types in BackupVaultNotifications events list.
711
* feature: Evidently: Add support for filtering list of experiments and launches by status

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

32-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1076.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1077.0.min.js"></script>
3333

3434
You can also build a custom browser SDK with your specified set of AWS services.
3535
This can allow you to reduce the SDK's size, specify different API versions of

apis/budgets-2016-10-20.min.json

Lines changed: 40 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,39 @@
409409
}
410410
}
411411
},
412+
"DescribeBudgetNotificationsForAccount": {
413+
"input": {
414+
"type": "structure",
415+
"required": [
416+
"AccountId"
417+
],
418+
"members": {
419+
"AccountId": {},
420+
"MaxResults": {
421+
"type": "integer"
422+
},
423+
"NextToken": {}
424+
}
425+
},
426+
"output": {
427+
"type": "structure",
428+
"members": {
429+
"BudgetNotificationsForAccount": {
430+
"type": "list",
431+
"member": {
432+
"type": "structure",
433+
"members": {
434+
"Notifications": {
435+
"shape": "S2o"
436+
},
437+
"BudgetName": {}
438+
}
439+
}
440+
},
441+
"NextToken": {}
442+
}
443+
}
444+
},
412445
"DescribeBudgetPerformanceHistory": {
413446
"input": {
414447
"type": "structure",
@@ -513,10 +546,7 @@
513546
"type": "structure",
514547
"members": {
515548
"Notifications": {
516-
"type": "list",
517-
"member": {
518-
"shape": "Sp"
519-
}
549+
"shape": "S2o"
520550
},
521551
"NextToken": {}
522552
}
@@ -992,6 +1022,12 @@
9921022
"member": {
9931023
"shape": "S1x"
9941024
}
1025+
},
1026+
"S2o": {
1027+
"type": "list",
1028+
"member": {
1029+
"shape": "Sp"
1030+
}
9951031
}
9961032
}
9971033
}

apis/budgets-2016-10-20.normal.json

Lines changed: 90 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,40 @@
407407
],
408408
"documentation": "<p> Describes all of the budget actions for a budget. </p>"
409409
},
410+
"DescribeBudgetNotificationsForAccount": {
411+
"name": "DescribeBudgetNotificationsForAccount",
412+
"http": {
413+
"method": "POST",
414+
"requestUri": "/"
415+
},
416+
"input": {
417+
"shape": "DescribeBudgetNotificationsForAccountRequest"
418+
},
419+
"output": {
420+
"shape": "DescribeBudgetNotificationsForAccountResponse"
421+
},
422+
"errors": [
423+
{
424+
"shape": "InternalErrorException"
425+
},
426+
{
427+
"shape": "InvalidParameterException"
428+
},
429+
{
430+
"shape": "NotFoundException"
431+
},
432+
{
433+
"shape": "InvalidNextTokenException"
434+
},
435+
{
436+
"shape": "ExpiredNextTokenException"
437+
},
438+
{
439+
"shape": "AccessDeniedException"
440+
}
441+
],
442+
"documentation": "<p> Lists the budget names and notifications that are associated with an account. </p>"
443+
},
410444
"DescribeBudgetPerformanceHistory": {
411445
"name": "DescribeBudgetPerformanceHistory",
412446
"http": {
@@ -974,6 +1008,25 @@
9741008
"min": 1,
9751009
"pattern": "[^:\\\\]+"
9761010
},
1011+
"BudgetNotificationsForAccount": {
1012+
"type": "structure",
1013+
"members": {
1014+
"Notifications": {
1015+
"shape": "Notifications"
1016+
},
1017+
"BudgetName": {
1018+
"shape": "BudgetName"
1019+
}
1020+
},
1021+
"documentation": "<p> The budget name and associated notifications for an account. </p>"
1022+
},
1023+
"BudgetNotificationsForAccountList": {
1024+
"type": "list",
1025+
"member": {
1026+
"shape": "BudgetNotificationsForAccount"
1027+
},
1028+
"max": 50
1029+
},
9771030
"BudgetPerformanceHistory": {
9781031
"type": "structure",
9791032
"members": {
@@ -1582,6 +1635,36 @@
15821635
}
15831636
}
15841637
},
1638+
"DescribeBudgetNotificationsForAccountRequest": {
1639+
"type": "structure",
1640+
"required": [
1641+
"AccountId"
1642+
],
1643+
"members": {
1644+
"AccountId": {
1645+
"shape": "AccountId"
1646+
},
1647+
"MaxResults": {
1648+
"shape": "MaxResultsBudgetNotifications",
1649+
"documentation": "<p> An integer that shows how many budget name entries a paginated response contains. </p>"
1650+
},
1651+
"NextToken": {
1652+
"shape": "GenericString"
1653+
}
1654+
}
1655+
},
1656+
"DescribeBudgetNotificationsForAccountResponse": {
1657+
"type": "structure",
1658+
"members": {
1659+
"BudgetNotificationsForAccount": {
1660+
"shape": "BudgetNotificationsForAccountList",
1661+
"documentation": "<p> A list of budget names and associated notifications for an account. </p>"
1662+
},
1663+
"NextToken": {
1664+
"shape": "GenericString"
1665+
}
1666+
}
1667+
},
15851668
"DescribeBudgetPerformanceHistoryRequest": {
15861669
"type": "structure",
15871670
"required": [
@@ -1930,6 +2013,12 @@
19302013
"max": 100,
19312014
"min": 1
19322015
},
2016+
"MaxResultsBudgetNotifications": {
2017+
"type": "integer",
2018+
"box": true,
2019+
"max": 50,
2020+
"min": 1
2021+
},
19332022
"Notification": {
19342023
"type": "structure",
19352024
"required": [
@@ -1971,7 +2060,7 @@
19712060
"NotificationThreshold": {
19722061
"type": "double",
19732062
"documentation": "<p> The threshold of a notification.</p>",
1974-
"max": 40000000000,
2063+
"max": 15000000000000,
19752064
"min": 0
19762065
},
19772066
"NotificationType": {

apis/budgets-2016-10-20.paginators.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@
1818
"output_token": "NextToken",
1919
"result_key": "Actions"
2020
},
21+
"DescribeBudgetNotificationsForAccount": {
22+
"input_token": "NextToken",
23+
"limit_key": "MaxResults",
24+
"output_token": "NextToken",
25+
"result_key": "BudgetNotificationsForAccount"
26+
},
2127
"DescribeBudgetPerformanceHistory": {
2228
"input_token": "NextToken",
2329
"limit_key": "MaxResults",

0 commit comments

Comments
 (0)