aws-sdk 2.1008.0 → 2.1012.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 +21 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +43 -37
- package/apis/chime-sdk-messaging-2021-05-15.min.json +601 -88
- package/apis/chime-sdk-messaging-2021-05-15.paginators.json +10 -0
- package/apis/dataexchange-2017-07-25.min.json +65 -13
- package/apis/directconnect-2012-10-25.min.json +119 -35
- package/apis/glue-2017-03-31.min.json +341 -339
- package/apis/ivs-2020-07-14.min.json +127 -100
- package/apis/ivs-2020-07-14.paginators.json +4 -14
- package/apis/mediaconvert-2017-08-29.min.json +137 -134
- package/apis/mediapackage-2017-10-12.min.json +4 -0
- package/apis/mediapackage-vod-2018-11-07.min.json +4 -0
- package/apis/metadata.json +3 -0
- package/apis/panorama-2019-07-24.examples.json +5 -0
- package/apis/panorama-2019-07-24.min.json +1622 -0
- package/apis/panorama-2019-07-24.paginators.json +49 -0
- package/apis/quicksight-2018-04-01.min.json +237 -159
- package/apis/securityhub-2018-10-26.min.json +282 -137
- package/apis/securityhub-2018-10-26.paginators.json +6 -0
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/appflow.d.ts +8 -0
- package/clients/chimesdkmessaging.d.ts +475 -2
- package/clients/dataexchange.d.ts +110 -20
- package/clients/directconnect.d.ts +186 -49
- package/clients/efs.d.ts +10 -10
- package/clients/glue.d.ts +11 -2
- package/clients/ivs.d.ts +158 -133
- package/clients/mediaconvert.d.ts +57 -58
- package/clients/mediapackage.d.ts +4 -0
- package/clients/mediapackagevod.d.ts +4 -0
- package/clients/panorama.d.ts +1926 -0
- package/clients/panorama.js +18 -0
- package/clients/quicksight.d.ts +158 -75
- package/clients/securityhub.d.ts +161 -2
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +55 -18
- package/dist/aws-sdk.js +125 -38
- package/dist/aws-sdk.min.js +68 -68
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -1483,6 +1483,10 @@
|
|
|
1483
1483
|
],
|
|
1484
1484
|
"type": "structure"
|
|
1485
1485
|
},
|
|
1486
|
+
"IncludeDvbSubtitles": {
|
|
1487
|
+
"locationName": "includeDvbSubtitles",
|
|
1488
|
+
"type": "boolean"
|
|
1489
|
+
},
|
|
1486
1490
|
"IncludeIframeOnlyStream": {
|
|
1487
1491
|
"locationName": "includeIframeOnlyStream",
|
|
1488
1492
|
"type": "boolean"
|
|
@@ -1044,6 +1044,10 @@
|
|
|
1044
1044
|
"locationName": "hlsManifests",
|
|
1045
1045
|
"shape": "Sg"
|
|
1046
1046
|
},
|
|
1047
|
+
"IncludeDvbSubtitles": {
|
|
1048
|
+
"locationName": "includeDvbSubtitles",
|
|
1049
|
+
"type": "boolean"
|
|
1050
|
+
},
|
|
1047
1051
|
"SegmentDurationSeconds": {
|
|
1048
1052
|
"locationName": "segmentDurationSeconds",
|
|
1049
1053
|
"type": "integer"
|
package/apis/metadata.json
CHANGED