Skip to content

Commit 83175ff

Browse files
author
awstools
committed
Updates SDK to v2.1112.0
1 parent f312e82 commit 83175ff

18 files changed

+836
-123
lines changed

Diff for: .changes/2.1112.0.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "AmplifyUIBuilder",
5+
"description": "In this release, we have added the ability to bind events to component level actions."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "AppRunner",
10+
"description": "This release adds tracing for App Runner services with X-Ray using AWS Distro for OpenTelemetry. New APIs: CreateObservabilityConfiguration, DescribeObservabilityConfiguration, ListObservabilityConfigurations, and DeleteObservabilityConfiguration. Updated APIs: CreateService and UpdateService."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "WorkSpaces",
15+
"description": "Added API support that allows customers to create GPU-enabled WorkSpaces using EC2 G4dn instances."
16+
}
17+
]

Diff for: CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1111.0-->
2+
<!--LATEST=2.1112.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1112.0
6+
* feature: AmplifyUIBuilder: In this release, we have added the ability to bind events to component level actions.
7+
* feature: AppRunner: This release adds tracing for App Runner services with X-Ray using AWS Distro for OpenTelemetry. New APIs: CreateObservabilityConfiguration, DescribeObservabilityConfiguration, ListObservabilityConfigurations, and DeleteObservabilityConfiguration. Updated APIs: CreateService and UpdateService.
8+
* feature: WorkSpaces: Added API support that allows customers to create GPU-enabled WorkSpaces using EC2 G4dn instances.
9+
510
## 2.1111.0
611
* feature: MediaConvert: AWS Elemental MediaConvert SDK has added support for the pass-through of WebVTT styling to WebVTT outputs, pass-through of KLV metadata to supported formats, and improved filter support for processing 444/RGB content.
712
* feature: MediaPackageVod: This release adds ScteMarkersSource as an available field for Dash Packaging Configurations. When set to MANIFEST, MediaPackage will source the SCTE-35 markers from the manifest. When set to SEGMENTS, MediaPackage will source the SCTE-35 markers from the segments.

Diff for: README.md

+1-1
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.1111.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1112.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

Diff for: apis/amplifyuibuilder-2021-08-11.min.json

+9-10
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,7 @@
236236
],
237237
"members": {
238238
"code": {
239-
"type": "string",
240-
"sensitive": true
239+
"shape": "S1k"
241240
},
242241
"redirectUri": {}
243242
}
@@ -254,13 +253,13 @@
254253
],
255254
"members": {
256255
"accessToken": {
257-
"shape": "S1m"
256+
"shape": "S1k"
258257
},
259258
"expiresIn": {
260259
"type": "integer"
261260
},
262261
"refreshToken": {
263-
"shape": "S1m"
262+
"shape": "S1k"
264263
}
265264
}
266265
}
@@ -572,8 +571,7 @@
572571
],
573572
"members": {
574573
"token": {
575-
"type": "string",
576-
"sensitive": true
574+
"shape": "S1k"
577575
}
578576
}
579577
}
@@ -588,8 +586,7 @@
588586
],
589587
"members": {
590588
"accessToken": {
591-
"type": "string",
592-
"sensitive": true
589+
"shape": "S1k"
593590
},
594591
"expiresIn": {
595592
"type": "integer"
@@ -803,7 +800,8 @@
803800
"name": {},
804801
"properties": {
805802
"shape": "Sl"
806-
}
803+
},
804+
"sourceId": {}
807805
}
808806
}
809807
},
@@ -814,6 +812,7 @@
814812
"type": "structure",
815813
"members": {
816814
"action": {},
815+
"bindingEvent": {},
817816
"parameters": {
818817
"type": "structure",
819818
"members": {
@@ -1108,7 +1107,7 @@
11081107
}
11091108
}
11101109
},
1111-
"S1m": {
1110+
"S1k": {
11121111
"type": "string",
11131112
"sensitive": true
11141113
}

Diff for: apis/amplifyuibuilder-2021-08-11.normal.json

+17-21
Original file line numberDiff line numberDiff line change
@@ -580,6 +580,10 @@
580580
"properties": {
581581
"shape": "ComponentProperties",
582582
"documentation": "<p>Describes the properties of the child component. You can't specify <code>tags</code> as a valid property for <code>properties</code>.</p>"
583+
},
584+
"sourceId": {
585+
"shape": "String",
586+
"documentation": "<p>The unique ID of the child component in its original source system, such as Figma.</p>"
583587
}
584588
},
585589
"documentation": "<p>A nested UI configuration within a parent <code>Component</code>.</p>"
@@ -665,6 +669,10 @@
665669
"shape": "String",
666670
"documentation": "<p>The action to perform when a specific event is raised.</p>"
667671
},
672+
"bindingEvent": {
673+
"shape": "String",
674+
"documentation": "<p>Binds an event to an action on a component. When you specify a <code>bindingEvent</code>, the event is called when the action is performed.</p>"
675+
},
668676
"parameters": {
669677
"shape": "ActionParameters",
670678
"documentation": "<p>Describes information about the action.</p>"
@@ -1141,7 +1149,7 @@
11411149
],
11421150
"members": {
11431151
"code": {
1144-
"shape": "SyntheticExchangeCodeForTokenRequestBodyString",
1152+
"shape": "SensitiveString",
11451153
"documentation": "<p>The access code to send in the request.</p>"
11461154
},
11471155
"redirectUri": {
@@ -1160,15 +1168,15 @@
11601168
],
11611169
"members": {
11621170
"accessToken": {
1163-
"shape": "SyntheticExchangeCodeForTokenResponseString",
1171+
"shape": "SensitiveString",
11641172
"documentation": "<p>The access token.</p>"
11651173
},
11661174
"expiresIn": {
11671175
"shape": "Integer",
11681176
"documentation": "<p>The date and time when the new access token expires.</p>"
11691177
},
11701178
"refreshToken": {
1171-
"shape": "SyntheticExchangeCodeForTokenResponseString",
1179+
"shape": "SensitiveString",
11721180
"documentation": "<p>The token to use to refresh a previously issued access token that might have expired.</p>"
11731181
}
11741182
}
@@ -1562,7 +1570,7 @@
15621570
],
15631571
"members": {
15641572
"token": {
1565-
"shape": "SyntheticRefreshTokenRequestBodyString",
1573+
"shape": "SensitiveString",
15661574
"documentation": "<p>The token to use to refresh a previously issued access token that might have expired.</p>"
15671575
}
15681576
},
@@ -1576,7 +1584,7 @@
15761584
],
15771585
"members": {
15781586
"accessToken": {
1579-
"shape": "SyntheticRefreshTokenResponseString",
1587+
"shape": "SensitiveString",
15801588
"documentation": "<p>The access token.</p>"
15811589
},
15821590
"expiresIn": {
@@ -1585,6 +1593,10 @@
15851593
}
15861594
}
15871595
},
1596+
"SensitiveString": {
1597+
"type": "string",
1598+
"sensitive": true
1599+
},
15881600
"SortDirection": {
15891601
"type": "string",
15901602
"enum": [
@@ -1619,22 +1631,6 @@
16191631
"String": {
16201632
"type": "string"
16211633
},
1622-
"SyntheticExchangeCodeForTokenRequestBodyString": {
1623-
"type": "string",
1624-
"sensitive": true
1625-
},
1626-
"SyntheticExchangeCodeForTokenResponseString": {
1627-
"type": "string",
1628-
"sensitive": true
1629-
},
1630-
"SyntheticRefreshTokenRequestBodyString": {
1631-
"type": "string",
1632-
"sensitive": true
1633-
},
1634-
"SyntheticRefreshTokenResponseString": {
1635-
"type": "string",
1636-
"sensitive": true
1637-
},
16381634
"SyntheticTimestamp_date_time": {
16391635
"type": "timestamp",
16401636
"timestampFormat": "iso8601"

0 commit comments

Comments
 (0)