aws-sdk 2.1686.0 → 2.1688.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/README.md +1 -1
- package/apis/backup-2018-11-15.min.json +10 -1
- package/apis/connect-2017-08-08.min.json +268 -250
- package/apis/datazone-2018-05-10.min.json +1478 -646
- package/apis/datazone-2018-05-10.paginators.json +18 -0
- package/apis/elasticloadbalancingv2-2015-12-01.examples.json +18 -0
- package/apis/elasticloadbalancingv2-2015-12-01.min.json +65 -11
- package/apis/logs-2014-03-28.min.json +28 -4
- package/apis/mediaconnect-2018-11-14.min.json +116 -42
- package/apis/medialive-2017-10-14.min.json +349 -341
- package/apis/redshift-data-2019-12-20.min.json +32 -9
- package/apis/sagemaker-2017-07-24.min.json +814 -813
- package/apis/timestream-influxdb-2023-01-27.min.json +3 -1
- package/clients/backup.d.ts +280 -268
- package/clients/cloudwatchlogs.d.ts +41 -10
- package/clients/connect.d.ts +38 -2
- package/clients/datazone.d.ts +848 -1
- package/clients/elbv2.d.ts +59 -2
- package/clients/mediaconnect.d.ts +49 -0
- package/clients/medialive.d.ts +11 -0
- package/clients/redshiftdata.d.ts +62 -20
- package/clients/sagemaker.d.ts +7 -2
- package/clients/timestreaminfluxdb.d.ts +9 -1
- package/dist/aws-sdk-core-react-native.js +2 -1
- package/dist/aws-sdk-react-native.js +14 -12
- package/dist/aws-sdk.js +365 -268
- package/dist/aws-sdk.min.js +85 -85
- package/lib/core.js +1 -1
- package/lib/region_config.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
64
64
|
To use the SDK in the browser, simply add the following script tag to your
|
65
65
|
HTML pages:
|
66
66
|
|
67
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
67
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1688.0.min.js"></script>
|
68
68
|
|
69
69
|
You can also build a custom browser SDK with your specified set of AWS services.
|
70
70
|
This can allow you to reduce the SDK's size, specify different API versions of
|
@@ -5,10 +5,16 @@
|
|
5
5
|
"endpointPrefix": "backup",
|
6
6
|
"jsonVersion": "1.1",
|
7
7
|
"protocol": "rest-json",
|
8
|
+
"protocols": [
|
9
|
+
"rest-json"
|
10
|
+
],
|
8
11
|
"serviceFullName": "AWS Backup",
|
9
12
|
"serviceId": "Backup",
|
10
13
|
"signatureVersion": "v4",
|
11
|
-
"uid": "backup-2018-11-15"
|
14
|
+
"uid": "backup-2018-11-15",
|
15
|
+
"auth": [
|
16
|
+
"aws.auth#sigv4"
|
17
|
+
]
|
12
18
|
},
|
13
19
|
"operations": {
|
14
20
|
"CancelLegalHold": {
|
@@ -761,6 +767,7 @@
|
|
761
767
|
"BackupVaultName": {},
|
762
768
|
"BackupVaultArn": {},
|
763
769
|
"VaultType": {},
|
770
|
+
"VaultState": {},
|
764
771
|
"EncryptionKeyArn": {},
|
765
772
|
"CreationDate": {
|
766
773
|
"type": "timestamp"
|
@@ -2056,6 +2063,8 @@
|
|
2056
2063
|
"members": {
|
2057
2064
|
"BackupVaultName": {},
|
2058
2065
|
"BackupVaultArn": {},
|
2066
|
+
"VaultType": {},
|
2067
|
+
"VaultState": {},
|
2059
2068
|
"CreationDate": {
|
2060
2069
|
"type": "timestamp"
|
2061
2070
|
},
|