aws-sdk 2.1457.0 → 2.1458.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 CHANGED
@@ -1,7 +1,12 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.1457.0-->
2
+ <!--LATEST=2.1458.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.1458.0
6
+ * feature: AppStream: This release introduces multi-session fleets, allowing customers to provision more than one user session on a single fleet instance.
7
+ * feature: EntityResolution: Changed "ResolutionTechniques" and "MappedInputFields" in workflow and schema mapping operations to be required fields.
8
+ * feature: LookoutEquipment: This release adds APIs for the new scheduled retraining feature.
9
+
5
10
  ## 2.1457.0
6
11
  * feature: Drs: Updated existing APIs and added new ones to support using AWS Elastic Disaster Recovery post-launch actions. Added support for new regions.
7
12
  * feature: Firehose: DocumentIdOptions has been added for the Amazon OpenSearch destination.
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.1457.0.min.js"></script>
74
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1458.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
@@ -401,6 +401,9 @@
401
401
  },
402
402
  "SessionScriptS3Location": {
403
403
  "shape": "Sw"
404
+ },
405
+ "MaxSessionsPerInstance": {
406
+ "type": "integer"
404
407
  }
405
408
  }
406
409
  },
@@ -1129,7 +1132,8 @@
1129
1132
  "Limit": {
1130
1133
  "type": "integer"
1131
1134
  },
1132
- "AuthenticationType": {}
1135
+ "AuthenticationType": {},
1136
+ "InstanceId": {}
1133
1137
  }
1134
1138
  },
1135
1139
  "output": {
@@ -1162,7 +1166,8 @@
1162
1166
  "AuthenticationType": {},
1163
1167
  "NetworkAccessConfiguration": {
1164
1168
  "shape": "S33"
1165
- }
1169
+ },
1170
+ "InstanceId": {}
1166
1171
  }
1167
1172
  }
1168
1173
  },
@@ -1846,6 +1851,9 @@
1846
1851
  },
1847
1852
  "SessionScriptS3Location": {
1848
1853
  "shape": "Sw"
1854
+ },
1855
+ "MaxSessionsPerInstance": {
1856
+ "type": "integer"
1849
1857
  }
1850
1858
  }
1851
1859
  },
@@ -2276,12 +2284,12 @@
2276
2284
  },
2277
2285
  "S2l": {
2278
2286
  "type": "structure",
2279
- "required": [
2280
- "DesiredInstances"
2281
- ],
2282
2287
  "members": {
2283
2288
  "DesiredInstances": {
2284
2289
  "type": "integer"
2290
+ },
2291
+ "DesiredSessions": {
2292
+ "type": "integer"
2285
2293
  }
2286
2294
  }
2287
2295
  },
@@ -2331,6 +2339,18 @@
2331
2339
  },
2332
2340
  "Available": {
2333
2341
  "type": "integer"
2342
+ },
2343
+ "DesiredUserSessions": {
2344
+ "type": "integer"
2345
+ },
2346
+ "AvailableUserSessions": {
2347
+ "type": "integer"
2348
+ },
2349
+ "ActiveUserSessions": {
2350
+ "type": "integer"
2351
+ },
2352
+ "ActualUserSessions": {
2353
+ "type": "integer"
2334
2354
  }
2335
2355
  }
2336
2356
  },
@@ -2377,6 +2397,9 @@
2377
2397
  },
2378
2398
  "SessionScriptS3Location": {
2379
2399
  "shape": "Sw"
2400
+ },
2401
+ "MaxSessionsPerInstance": {
2402
+ "type": "integer"
2380
2403
  }
2381
2404
  }
2382
2405
  },
@@ -10,19 +10,19 @@
10
10
  "state": "success",
11
11
  "matcher": "pathAll",
12
12
  "argument": "Fleets[].State",
13
- "expected": "RUNNING"
13
+ "expected": "ACTIVE"
14
14
  },
15
15
  {
16
16
  "state": "failure",
17
17
  "matcher": "pathAny",
18
18
  "argument": "Fleets[].State",
19
- "expected": "STOPPING"
19
+ "expected": "PENDING_DEACTIVATE"
20
20
  },
21
21
  {
22
22
  "state": "failure",
23
23
  "matcher": "pathAny",
24
24
  "argument": "Fleets[].State",
25
- "expected": "STOPPED"
25
+ "expected": "INACTIVE"
26
26
  }
27
27
  ]
28
28
  },
@@ -35,19 +35,19 @@
35
35
  "state": "success",
36
36
  "matcher": "pathAll",
37
37
  "argument": "Fleets[].State",
38
- "expected": "STOPPED"
38
+ "expected": "INACTIVE"
39
39
  },
40
40
  {
41
41
  "state": "failure",
42
42
  "matcher": "pathAny",
43
43
  "argument": "Fleets[].State",
44
- "expected": "STARTING"
44
+ "expected": "PENDING_ACTIVATE"
45
45
  },
46
46
  {
47
47
  "state": "failure",
48
48
  "matcher": "pathAny",
49
49
  "argument": "Fleets[].State",
50
- "expected": "RUNNING"
50
+ "expected": "ACTIVE"
51
51
  }
52
52
  ]
53
53
  }
@@ -86,6 +86,7 @@
86
86
  "input": {
87
87
  "type": "structure",
88
88
  "required": [
89
+ "mappedInputFields",
89
90
  "schemaName"
90
91
  ],
91
92
  "members": {
@@ -767,6 +768,9 @@
767
768
  },
768
769
  "Sh": {
769
770
  "type": "structure",
771
+ "required": [
772
+ "resolutionType"
773
+ ],
770
774
  "members": {
771
775
  "resolutionType": {},
772
776
  "ruleBasedProperties": {
@@ -1,5 +1,219 @@
1
1
  {
2
2
  "version": "1.0",
3
3
  "examples": {
4
+ "CreateRetrainingScheduler": [
5
+ {
6
+ "input": {
7
+ "ClientToken": "sample-client-token",
8
+ "LookbackWindow": "P360D",
9
+ "ModelName": "sample-model",
10
+ "PromoteMode": "MANUAL",
11
+ "RetrainingFrequency": "P1M"
12
+ },
13
+ "output": {
14
+ "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
15
+ "ModelName": "sample-model",
16
+ "Status": "PENDING"
17
+ },
18
+ "comments": {
19
+ "input": {
20
+ },
21
+ "output": {
22
+ }
23
+ },
24
+ "description": "",
25
+ "id": "creates-a-retraining-scheduler-with-manual-promote-mode-1694018486212",
26
+ "title": "Creates a retraining scheduler with manual promote mode"
27
+ },
28
+ {
29
+ "input": {
30
+ "ClientToken": "sample-client-token",
31
+ "LookbackWindow": "P360D",
32
+ "ModelName": "sample-model",
33
+ "RetrainingFrequency": "P1M",
34
+ "RetrainingStartDate": "2024-01-01T00:00:00Z"
35
+ },
36
+ "output": {
37
+ "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
38
+ "ModelName": "sample-model",
39
+ "Status": "PENDING"
40
+ },
41
+ "comments": {
42
+ "input": {
43
+ },
44
+ "output": {
45
+ }
46
+ },
47
+ "description": "",
48
+ "id": "creates-a-retraining-scheduler-with-a-specific-start-date-1694018790519",
49
+ "title": "Creates a retraining scheduler with a specific start date"
50
+ }
51
+ ],
52
+ "DeleteRetrainingScheduler": [
53
+ {
54
+ "input": {
55
+ "ModelName": "sample-model"
56
+ },
57
+ "comments": {
58
+ "input": {
59
+ },
60
+ "output": {
61
+ }
62
+ },
63
+ "description": "",
64
+ "id": "deletes-a-retraining-scheduler-1694019240097",
65
+ "title": "Deletes a retraining scheduler"
66
+ }
67
+ ],
68
+ "DescribeRetrainingScheduler": [
69
+ {
70
+ "input": {
71
+ "ModelName": "sample-model"
72
+ },
73
+ "output": {
74
+ "CreatedAt": "2023-10-01T15:00:00Z",
75
+ "LookbackWindow": "P360D",
76
+ "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
77
+ "ModelName": "sample-model",
78
+ "PromoteMode": "MANAGED",
79
+ "RetrainingFrequency": "P1M",
80
+ "RetrainingStartDate": "2023-11-01T00:00:00Z",
81
+ "Status": "RUNNING",
82
+ "UpdatedAt": "2023-10-01T15:00:00Z"
83
+ },
84
+ "comments": {
85
+ "input": {
86
+ },
87
+ "output": {
88
+ }
89
+ },
90
+ "description": "",
91
+ "id": "describes-a-retraining-scheduler-1694019344252",
92
+ "title": "Describes a retraining scheduler"
93
+ }
94
+ ],
95
+ "ListRetrainingSchedulers": [
96
+ {
97
+ "input": {
98
+ "MaxResults": 50
99
+ },
100
+ "output": {
101
+ "RetrainingSchedulerSummaries": [
102
+ {
103
+ "LookbackWindow": "P180D",
104
+ "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model-1/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
105
+ "ModelName": "sample-model-1",
106
+ "RetrainingFrequency": "P1M",
107
+ "RetrainingStartDate": "2023-06-01T00:00:00Z",
108
+ "Status": "RUNNING"
109
+ },
110
+ {
111
+ "LookbackWindow": "P180D",
112
+ "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model-2/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
113
+ "ModelName": "sample-model-2",
114
+ "RetrainingFrequency": "P30D",
115
+ "RetrainingStartDate": "2023-08-15T00:00:00Z",
116
+ "Status": "RUNNING"
117
+ },
118
+ {
119
+ "LookbackWindow": "P360D",
120
+ "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model-3/a1b2c3d4-5678-90ab-cdef-EXAMPLE33333",
121
+ "ModelName": "sample-model-3",
122
+ "RetrainingFrequency": "P1M",
123
+ "RetrainingStartDate": "2023-09-01T00:00:00Z",
124
+ "Status": "STOPPED"
125
+ }
126
+ ]
127
+ },
128
+ "comments": {
129
+ "input": {
130
+ },
131
+ "output": {
132
+ }
133
+ },
134
+ "description": "",
135
+ "id": "listing-retraining-schedulers-1694016740503",
136
+ "title": "Listing retraining schedulers"
137
+ }
138
+ ],
139
+ "StartRetrainingScheduler": [
140
+ {
141
+ "input": {
142
+ "ModelName": "sample-model"
143
+ },
144
+ "output": {
145
+ "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
146
+ "ModelName": "sample-model",
147
+ "Status": "PENDING"
148
+ },
149
+ "comments": {
150
+ "input": {
151
+ },
152
+ "output": {
153
+ }
154
+ },
155
+ "description": "",
156
+ "id": "starts-a-retraining-scheduler-1694019629413",
157
+ "title": "Starts a retraining scheduler"
158
+ }
159
+ ],
160
+ "StopRetrainingScheduler": [
161
+ {
162
+ "input": {
163
+ "ModelName": "sample-model"
164
+ },
165
+ "output": {
166
+ "ModelArn": "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
167
+ "ModelName": "sample-model",
168
+ "Status": "STOPPING"
169
+ },
170
+ "comments": {
171
+ "input": {
172
+ },
173
+ "output": {
174
+ }
175
+ },
176
+ "description": "",
177
+ "id": "stops-a-retraining-scheduler-1694019734149",
178
+ "title": "Stops a retraining scheduler"
179
+ }
180
+ ],
181
+ "UpdateModel": [
182
+ {
183
+ "input": {
184
+ "LabelsInputConfiguration": {
185
+ "LabelGroupName": "sample-label-group"
186
+ },
187
+ "ModelName": "sample-model"
188
+ },
189
+ "comments": {
190
+ "input": {
191
+ },
192
+ "output": {
193
+ }
194
+ },
195
+ "description": "",
196
+ "id": "updates-a-model-1694020683458",
197
+ "title": "Updates a model"
198
+ }
199
+ ],
200
+ "UpdateRetrainingScheduler": [
201
+ {
202
+ "input": {
203
+ "ModelName": "sample-model",
204
+ "RetrainingFrequency": "P1Y",
205
+ "RetrainingStartDate": "2024-01-01T00:00:00Z"
206
+ },
207
+ "comments": {
208
+ "input": {
209
+ },
210
+ "output": {
211
+ }
212
+ },
213
+ "description": "",
214
+ "id": "updates-a-retraining-scheduler-1694019840918",
215
+ "title": "Updates a retraining scheduler"
216
+ }
217
+ ]
4
218
  }
5
219
  }