Skip to content

Commit

Permalink
Updates SDK to v2.1283.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Dec 27, 2022
1 parent 5ac0a5e commit eef9d58
Show file tree
Hide file tree
Showing 14 changed files with 797 additions and 17 deletions.
12 changes: 12 additions & 0 deletions .changes/2.1283.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "MemoryDB",
"description": "This release adds support for MemoryDB Reserved nodes which provides a significant discount compared to on-demand node pricing. Reserved nodes are not physical nodes, but rather a billing discount applied to the use of on-demand nodes in your account."
},
{
"type": "feature",
"category": "Transfer",
"description": "Add additional operations to throw ThrottlingExceptions"
}
]
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1282.0-->
<!--LATEST=2.1283.0-->
<!--ENTRYINSERT-->

## 2.1283.0
* feature: MemoryDB: This release adds support for MemoryDB Reserved nodes which provides a significant discount compared to on-demand node pricing. Reserved nodes are not physical nodes, but rather a billing discount applied to the use of on-demand nodes in your account.
* feature: Transfer: Add additional operations to throw ThrottlingExceptions

## 2.1282.0
* feature: Connect: Support for Routing Profile filter, SortCriteria, and grouping by Routing Profiles for GetCurrentMetricData API. Support for RoutingProfiles, UserHierarchyGroups, and Agents as filters, NextStatus and AgentStatusName for GetCurrentUserData. Adds ApproximateTotalCount to both APIs.
* feature: ConnectParticipant: Amazon Connect Chat introduces the Message Receipts feature. This feature allows agents and customers to receive message delivered and read receipts after they send a chat message.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ for further details.
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1282.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1283.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
139 changes: 136 additions & 3 deletions apis/memorydb-2021-01-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,75 @@
}
}
},
"DescribeReservedNodes": {
"input": {
"type": "structure",
"members": {
"ReservationId": {},
"ReservedNodesOfferingId": {},
"NodeType": {},
"Duration": {},
"OfferingType": {},
"MaxResults": {
"type": "integer"
},
"NextToken": {}
}
},
"output": {
"type": "structure",
"members": {
"NextToken": {},
"ReservedNodes": {
"type": "list",
"member": {
"shape": "S36"
}
}
}
}
},
"DescribeReservedNodesOfferings": {
"input": {
"type": "structure",
"members": {
"ReservedNodesOfferingId": {},
"NodeType": {},
"Duration": {},
"OfferingType": {},
"MaxResults": {
"type": "integer"
},
"NextToken": {}
}
},
"output": {
"type": "structure",
"members": {
"NextToken": {},
"ReservedNodesOfferings": {
"type": "list",
"member": {
"type": "structure",
"members": {
"ReservedNodesOfferingId": {},
"NodeType": {},
"Duration": {
"type": "integer"
},
"FixedPrice": {
"type": "double"
},
"OfferingType": {},
"RecurringCharges": {
"shape": "S37"
}
}
}
}
}
}
},
"DescribeServiceUpdates": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -742,10 +811,10 @@
"type": "structure",
"members": {
"ScaleUpNodeTypes": {
"shape": "S3r"
"shape": "S41"
},
"ScaleDownNodeTypes": {
"shape": "S3r"
"shape": "S41"
}
}
}
Expand All @@ -769,6 +838,32 @@
}
}
},
"PurchaseReservedNodesOffering": {
"input": {
"type": "structure",
"required": [
"ReservedNodesOfferingId"
],
"members": {
"ReservedNodesOfferingId": {},
"ReservationId": {},
"NodeCount": {
"type": "integer"
},
"Tags": {
"shape": "Sz"
}
}
},
"output": {
"type": "structure",
"members": {
"ReservedNode": {
"shape": "S36"
}
}
}
},
"ResetParameterGroup": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -1303,7 +1398,45 @@
"ARN": {}
}
},
"S3r": {
"S36": {
"type": "structure",
"members": {
"ReservationId": {},
"ReservedNodesOfferingId": {},
"NodeType": {},
"StartTime": {
"type": "timestamp"
},
"Duration": {
"type": "integer"
},
"FixedPrice": {
"type": "double"
},
"NodeCount": {
"type": "integer"
},
"OfferingType": {},
"State": {},
"RecurringCharges": {
"shape": "S37"
},
"ARN": {}
}
},
"S37": {
"type": "list",
"member": {
"type": "structure",
"members": {
"RecurringChargeAmount": {
"type": "double"
},
"RecurringChargeFrequency": {}
}
}
},
"S41": {
"type": "list",
"member": {}
}
Expand Down
Loading

0 comments on commit eef9d58

Please sign in to comment.