Skip to content

Commit

Permalink
Updates SDK to v2.374.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Dec 11, 2018
1 parent c175cb2 commit 4e074eb
Show file tree
Hide file tree
Showing 17 changed files with 2,955 additions and 1,887 deletions.
12 changes: 12 additions & 0 deletions .changes/2.374.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "Connect",
"description": "This update adds the GetContactAttributes operation to retrieve the attributes associated with a contact."
},
{
"type": "feature",
"category": "MediaStore",
"description": "This release adds Delete Object Lifecycling to AWS MediaStore Containers."
}
]
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.373.0-->
<!--LATEST=2.374.0-->
<!--ENTRYINSERT-->

## 2.374.0
* feature: Connect: This update adds the GetContactAttributes operation to retrieve the attributes associated with a contact.
* feature: MediaStore: This release adds Delete Object Lifecycling to AWS MediaStore Containers.

## 2.373.0
* feature: AlexaForBusiness: Alexa for Business now allows IT administrators to create ad-hoc or scheduled usage reports, which help customers understand how Alexa is used in their workplace. To learn how to create usage reports, see https://docs.aws.amazon.com/a4b/latest/ag/creating-reports.html
* feature: DynamoDB: Add DynamoDB document client support for transaction operations
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ version.
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.373.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.374.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
81 changes: 56 additions & 25 deletions apis/connect-2017-08-08.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,37 @@
}
}
},
"GetContactAttributes": {
"http": {
"method": "GET",
"requestUri": "/contact/attributes/{InstanceId}/{InitialContactId}"
},
"input": {
"type": "structure",
"required": [
"InstanceId",
"InitialContactId"
],
"members": {
"InstanceId": {
"location": "uri",
"locationName": "InstanceId"
},
"InitialContactId": {
"location": "uri",
"locationName": "InitialContactId"
}
}
},
"output": {
"type": "structure",
"members": {
"Attributes": {
"shape": "S15"
}
}
}
},
"GetCurrentMetricData": {
"http": {
"requestUri": "/metrics/current/{InstanceId}"
Expand All @@ -244,15 +275,15 @@
"locationName": "InstanceId"
},
"Filters": {
"shape": "S13"
"shape": "S19"
},
"Groupings": {
"shape": "S18"
"shape": "S1e"
},
"CurrentMetrics": {
"type": "list",
"member": {
"shape": "S1b"
"shape": "S1h"
}
},
"NextToken": {},
Expand All @@ -271,15 +302,15 @@
"type": "structure",
"members": {
"Dimensions": {
"shape": "S1j"
"shape": "S1p"
},
"Collections": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Metric": {
"shape": "S1b"
"shape": "S1h"
},
"Value": {
"type": "double"
Expand Down Expand Up @@ -320,13 +351,13 @@
"type": "structure",
"members": {
"AccessToken": {
"shape": "S1s"
"shape": "S1y"
},
"AccessTokenExpiration": {
"type": "timestamp"
},
"RefreshToken": {
"shape": "S1s"
"shape": "S1y"
},
"RefreshTokenExpiration": {
"type": "timestamp"
Expand Down Expand Up @@ -361,15 +392,15 @@
"type": "timestamp"
},
"Filters": {
"shape": "S13"
"shape": "S19"
},
"Groupings": {
"shape": "S18"
"shape": "S1e"
},
"HistoricalMetrics": {
"type": "list",
"member": {
"shape": "S1v"
"shape": "S21"
}
},
"NextToken": {},
Expand All @@ -388,15 +419,15 @@
"type": "structure",
"members": {
"Dimensions": {
"shape": "S1j"
"shape": "S1p"
},
"Collections": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Metric": {
"shape": "S1v"
"shape": "S21"
},
"Value": {
"type": "double"
Expand Down Expand Up @@ -603,7 +634,7 @@
"SourcePhoneNumber": {},
"QueueId": {},
"Attributes": {
"shape": "S2r"
"shape": "S15"
}
}
},
Expand Down Expand Up @@ -649,7 +680,7 @@
"InitialContactId": {},
"InstanceId": {},
"Attributes": {
"shape": "S2r"
"shape": "S15"
}
}
},
Expand Down Expand Up @@ -829,7 +860,12 @@
"Name": {}
}
},
"S13": {
"S15": {
"type": "map",
"key": {},
"value": {}
},
"S19": {
"type": "structure",
"members": {
"Queues": {
Expand All @@ -842,18 +878,18 @@
}
}
},
"S18": {
"S1e": {
"type": "list",
"member": {}
},
"S1b": {
"S1h": {
"type": "structure",
"members": {
"Name": {},
"Unit": {}
}
},
"S1j": {
"S1p": {
"type": "structure",
"members": {
"Queue": {
Expand All @@ -866,11 +902,11 @@
"Channel": {}
}
},
"S1s": {
"S1y": {
"type": "string",
"sensitive": true
},
"S1v": {
"S21": {
"type": "structure",
"members": {
"Name": {},
Expand All @@ -886,11 +922,6 @@
"Statistic": {},
"Unit": {}
}
},
"S2r": {
"type": "map",
"key": {},
"value": {}
}
}
}
Loading

0 comments on commit 4e074eb

Please sign in to comment.