aws-sdk 2.1500.0 → 2.1501.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +9 -1
  2. package/README.md +1 -1
  3. package/apis/cloudfront-2020-05-31.examples.json +251 -0
  4. package/apis/cloudfront-2020-05-31.min.json +349 -106
  5. package/apis/cloudfront-2020-05-31.paginators.json +6 -0
  6. package/apis/cloudfront-keyvaluestore-2022-07-26.examples.json +5 -0
  7. package/apis/cloudfront-keyvaluestore-2022-07-26.min.json +359 -0
  8. package/apis/cloudfront-keyvaluestore-2022-07-26.paginators.json +10 -0
  9. package/apis/inspector-scan-2023-08-08.examples.json +174 -0
  10. package/apis/inspector-scan-2023-08-08.min.json +51 -0
  11. package/apis/inspector-scan-2023-08-08.paginators.json +4 -0
  12. package/apis/iotsitewise-2019-12-02.min.json +989 -176
  13. package/apis/iotsitewise-2019-12-02.paginators.json +24 -0
  14. package/apis/iottwinmaker-2021-11-29.min.json +729 -131
  15. package/apis/iottwinmaker-2021-11-29.paginators.json +15 -0
  16. package/apis/metadata.json +8 -0
  17. package/apis/s3-2006-03-01.examples.json +152 -152
  18. package/apis/s3-2006-03-01.min.json +109 -92
  19. package/clients/all.d.ts +2 -0
  20. package/clients/all.js +3 -1
  21. package/clients/cloudfront.d.ts +220 -2
  22. package/clients/cloudfrontkeyvaluestore.d.ts +294 -0
  23. package/clients/cloudfrontkeyvaluestore.js +18 -0
  24. package/clients/ec2.d.ts +12 -12
  25. package/clients/inspectorscan.d.ts +59 -0
  26. package/clients/inspectorscan.js +18 -0
  27. package/clients/iotsitewise.d.ts +1080 -179
  28. package/clients/iottwinmaker.d.ts +666 -9
  29. package/clients/s3.d.ts +38 -15
  30. package/dist/aws-sdk-core-react-native.js +2 -2
  31. package/dist/aws-sdk-react-native.js +85 -11
  32. package/dist/aws-sdk.js +508 -203
  33. package/dist/aws-sdk.min.js +93 -92
  34. package/lib/config_service_placeholders.d.ts +4 -0
  35. package/lib/core.js +1 -1
  36. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,7 +1,15 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.1500.0-->
2
+ <!--LATEST=2.1501.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.1501.0
6
+ * feature: CloudFront: This release adds support for CloudFront KeyValueStore, a globally managed key value datastore associated with CloudFront Functions.
7
+ * feature: CloudFrontKeyValueStore: This release adds support for CloudFront KeyValueStore, a globally managed key value datastore associated with CloudFront Functions.
8
+ * feature: InspectorScan: This release adds support for the new Amazon Inspector Scan API. The new Inspector Scan API can synchronously scan SBOMs adhering to the CycloneDX v1.5 format.
9
+ * feature: IoTSiteWise: Adds 1/ user-defined unique identifier for asset and model metadata, 2/ asset model components, and 3/ query API for asset metadata and telemetry data. Supports 4/ multi variate anomaly detection using Amazon Lookout for Equipment, 5/ warm storage tier, and 6/ buffered ingestion of time series data.
10
+ * feature: IoTTwinMaker: This release adds following support. 1. New APIs for metadata bulk operations. 2. Modify the component type API to support composite component types - nesting component types within one another. 3. New list APIs for components and properties. 4. Support the larger scope digital twin modeling.
11
+ * feature: S3: Add support for automatic date based partitioning in S3 Server Access Logs.
12
+
5
13
  ## 2.1500.0
6
14
  * feature: CodeStarconnections: This release updates a few CodeStar Connections related APIs.
7
15
  * feature: DocDB: Amazon DocumentDB updates for new cluster storage configuration: Amazon DocumentDB I/O-Optimized.
package/README.md CHANGED
@@ -71,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
71
71
  To use the SDK in the browser, simply add the following script tag to your
72
72
  HTML pages:
73
73
 
74
- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1500.0.min.js"></script>
74
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1501.0.min.js"></script>
75
75
 
76
76
  You can also build a custom browser SDK with your specified set of AWS services.
77
77
  This can allow you to reduce the SDK's size, specify different API versions of
@@ -1,5 +1,256 @@
1
1
  {
2
2
  "version": "1.0",
3
3
  "examples": {
4
+ "CreateFunction": [
5
+ {
6
+ "input": {
7
+ "FunctionCode": "function-code.js",
8
+ "FunctionConfig": {
9
+ "Comment": "my-function-comment",
10
+ "KeyValueStoreAssociations": {
11
+ "Items": [
12
+ {
13
+ "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
14
+ }
15
+ ],
16
+ "Quantity": 1
17
+ },
18
+ "Runtime": "cloudfront-js-2.0"
19
+ },
20
+ "Name": "my-function-name"
21
+ },
22
+ "output": {
23
+ "ETag": "ETVPDKIKX0DER",
24
+ "FunctionSummary": {
25
+ "FunctionConfig": {
26
+ "Comment": "my-function-comment",
27
+ "KeyValueStoreAssociations": {
28
+ "Items": [
29
+ {
30
+ "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
31
+ }
32
+ ],
33
+ "Quantity": 1
34
+ },
35
+ "Runtime": "cloudfront-js-2.0"
36
+ },
37
+ "FunctionMetadata": {
38
+ "CreatedTime": "2023-11-07T19:53:50.334Z",
39
+ "FunctionARN": "arn:aws:cloudfront::123456789012:function/my-function-name",
40
+ "LastModifiedTime": "2023-11-07T19:53:50.334Z",
41
+ "Stage": "DEVELOPMENT"
42
+ },
43
+ "Name": "my-function-name",
44
+ "Status": "UNPUBLISHED"
45
+ },
46
+ "Location": "https://cloudfront.amazonaws.com/2020-05-31/function/arn:aws:cloudfront::123456789012:function/my-function-name"
47
+ },
48
+ "comments": {
49
+ "input": {
50
+ },
51
+ "output": {
52
+ }
53
+ },
54
+ "description": "Use the following command to create a function.",
55
+ "id": "to-create-a-function-1699737558249",
56
+ "title": "To create a function"
57
+ }
58
+ ],
59
+ "CreateKeyValueStore": [
60
+ {
61
+ "input": {
62
+ "Comment": "my-key-valuestore-comment",
63
+ "ImportSource": {
64
+ "SourceARN": "arn:aws:s3:::my-bucket/validJSON.json",
65
+ "SourceType": "S3"
66
+ },
67
+ "Name": "my-keyvaluestore-name"
68
+ },
69
+ "output": {
70
+ "ETag": "ETVPDKIKX0DER",
71
+ "KeyValueStore": {
72
+ "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
73
+ "Comment": "my-key-valuestore-comment",
74
+ "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
75
+ "LastModifiedTime": "2023-11-07T18:15:52.042Z",
76
+ "Name": "my-keyvaluestore-name",
77
+ "Status": "PROVISIONING"
78
+ },
79
+ "Location": "https://cloudfront.amazonaws.com/2020-05-31/key-value-store/arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
80
+ },
81
+ "comments": {
82
+ "input": {
83
+ },
84
+ "output": {
85
+ }
86
+ },
87
+ "description": "Use the following command to create a KeyValueStore.",
88
+ "id": "to-create-a-key-value-store-1699751722467",
89
+ "title": "To create a KeyValueStore"
90
+ }
91
+ ],
92
+ "DeleteKeyValueStore": [
93
+ {
94
+ "input": {
95
+ "IfMatch": "ETVPDKIKX0DER",
96
+ "Name": "my-keyvaluestore-name"
97
+ },
98
+ "comments": {
99
+ "input": {
100
+ },
101
+ "output": {
102
+ }
103
+ },
104
+ "description": "Use the following command to delete a KeyValueStore.",
105
+ "id": "to-delete-a-key-value-store-1699751759648",
106
+ "title": "To delete a KeyValueStore"
107
+ }
108
+ ],
109
+ "DescribeKeyValueStore": [
110
+ {
111
+ "input": {
112
+ "Name": "my-keyvaluestore-name"
113
+ },
114
+ "output": {
115
+ "ETag": "ETVPDKIKX0DER",
116
+ "KeyValueStore": {
117
+ "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
118
+ "Comment": "my-key-valuestore-comment",
119
+ "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
120
+ "LastModifiedTime": "2023-11-07T18:20:33.056Z",
121
+ "Name": "my-keyvaluestore-name",
122
+ "Status": "READY"
123
+ }
124
+ },
125
+ "comments": {
126
+ "input": {
127
+ },
128
+ "output": {
129
+ }
130
+ },
131
+ "description": "Use the following command to describe a KeyValueStore.",
132
+ "id": "to-describe-a-key-value-store-1699751788152",
133
+ "title": "To describe a KeyValueStore"
134
+ }
135
+ ],
136
+ "ListKeyValueStores": [
137
+ {
138
+ "input": {
139
+ "Marker": "",
140
+ "MaxItems": "100",
141
+ "Status": "READY"
142
+ },
143
+ "output": {
144
+ "KeyValueStoreList": {
145
+ "Items": [
146
+ {
147
+ "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
148
+ "Comment": "",
149
+ "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
150
+ "LastModifiedTime": "2023-11-07T18:45:21.069Z",
151
+ "Name": "my-keyvaluestore-name",
152
+ "Status": "READY"
153
+ }
154
+ ],
155
+ "MaxItems": 100,
156
+ "NextMarker": "",
157
+ "Quantity": 1
158
+ }
159
+ },
160
+ "comments": {
161
+ "input": {
162
+ },
163
+ "output": {
164
+ }
165
+ },
166
+ "description": "The following command retrieves a list of KeyValueStores with READY status.",
167
+ "id": "to-get-a-list-of-key-value-store-1699751799198",
168
+ "title": "To get a list of KeyValueStores"
169
+ }
170
+ ],
171
+ "UpdateFunction": [
172
+ {
173
+ "input": {
174
+ "FunctionCode": "function-code-changed.js",
175
+ "FunctionConfig": {
176
+ "Comment": "my-changed-comment",
177
+ "KeyValueStoreAssociations": {
178
+ "Items": [
179
+ {
180
+ "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
181
+ }
182
+ ],
183
+ "Quantity": 1
184
+ },
185
+ "Runtime": "cloudfront-js-2.0"
186
+ },
187
+ "IfMatch": "ETVPDKIKX0DER",
188
+ "Name": "my-function-name"
189
+ },
190
+ "output": {
191
+ "ETag": "E3UN6WX5RRO2AG",
192
+ "FunctionSummary": {
193
+ "FunctionConfig": {
194
+ "Comment": "my-changed-comment",
195
+ "KeyValueStoreAssociations": {
196
+ "Items": [
197
+ {
198
+ "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
199
+ }
200
+ ],
201
+ "Quantity": 1
202
+ },
203
+ "Runtime": "cloudfront-js-2.0"
204
+ },
205
+ "FunctionMetadata": {
206
+ "CreatedTime": "2023-11-07T19:53:50.334Z",
207
+ "FunctionARN": "arn:aws:cloudfront::123456789012:function/my-function-name",
208
+ "LastModifiedTime": "2023-11-07T20:01:37.174Z",
209
+ "Stage": "DEVELOPMENT"
210
+ },
211
+ "Name": "my-function-name",
212
+ "Status": "UNPUBLISHED"
213
+ }
214
+ },
215
+ "comments": {
216
+ "input": {
217
+ },
218
+ "output": {
219
+ }
220
+ },
221
+ "description": "Use the following command to update a function.",
222
+ "id": "to-update-a-function-1699751865053",
223
+ "title": "To update a function"
224
+ }
225
+ ],
226
+ "UpdateKeyValueStore": [
227
+ {
228
+ "input": {
229
+ "Comment": "my-changed-comment",
230
+ "IfMatch": "ETVPDKIKX0DER",
231
+ "Name": "my-keyvaluestore-name"
232
+ },
233
+ "output": {
234
+ "ETag": "E3UN6WX5RRO2AG",
235
+ "KeyValueStore": {
236
+ "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
237
+ "Comment": "my-changed-comment",
238
+ "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
239
+ "LastModifiedTime": "2023-11-07T18:45:21.069Z",
240
+ "Name": "my-keyvaluestore-name",
241
+ "Status": "READY"
242
+ }
243
+ },
244
+ "comments": {
245
+ "input": {
246
+ },
247
+ "output": {
248
+ }
249
+ },
250
+ "description": "Use the following command to update a KeyValueStore.",
251
+ "id": "to-update-a-key-value-store-1699751822090",
252
+ "title": "To update a KeyValueStore"
253
+ }
254
+ ]
4
255
  }
5
256
  }