aws-sdk-core 2.11.290 → 2.11.291

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "pagination": {
3
+ "DescribeMergeConflicts": {
4
+ "input_token": "nextToken",
5
+ "limit_key": "maxMergeHunks",
6
+ "output_token": "nextToken"
7
+ },
3
8
  "DescribePullRequestEvents": {
4
9
  "input_token": "nextToken",
5
10
  "limit_key": "maxResults",
@@ -20,6 +25,11 @@
20
25
  "limit_key": "MaxResults",
21
26
  "output_token": "NextToken"
22
27
  },
28
+ "GetMergeConflicts": {
29
+ "input_token": "nextToken",
30
+ "limit_key": "maxConflictFiles",
31
+ "output_token": "nextToken"
32
+ },
23
33
  "ListBranches": {
24
34
  "input_token": "nextToken",
25
35
  "output_token": "nextToken",
@@ -0,0 +1,91 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2018-03-22",
5
+ "endpointPrefix":"personalize-events",
6
+ "jsonVersion":"1.1",
7
+ "protocol":"rest-json",
8
+ "serviceFullName":"Amazon Personalize Events",
9
+ "serviceId":"Personalize Events",
10
+ "signatureVersion":"v4",
11
+ "signingName":"personalize",
12
+ "uid":"personalize-events-2018-03-22"
13
+ },
14
+ "operations":{
15
+ "PutEvents":{
16
+ "name":"PutEvents",
17
+ "http":{
18
+ "method":"POST",
19
+ "requestUri":"/events"
20
+ },
21
+ "input":{"shape":"PutEventsRequest"},
22
+ "errors":[
23
+ {"shape":"InvalidInputException"}
24
+ ]
25
+ }
26
+ },
27
+ "shapes":{
28
+ "Date":{"type":"timestamp"},
29
+ "ErrorMessage":{"type":"string"},
30
+ "Event":{
31
+ "type":"structure",
32
+ "required":[
33
+ "eventType",
34
+ "properties",
35
+ "sentAt"
36
+ ],
37
+ "members":{
38
+ "eventId":{"shape":"StringType"},
39
+ "eventType":{"shape":"StringType"},
40
+ "properties":{
41
+ "shape":"EventPropertiesJSON",
42
+ "jsonvalue":true
43
+ },
44
+ "sentAt":{"shape":"Date"}
45
+ }
46
+ },
47
+ "EventList":{
48
+ "type":"list",
49
+ "member":{"shape":"Event"},
50
+ "max":10,
51
+ "min":1
52
+ },
53
+ "EventPropertiesJSON":{
54
+ "type":"string",
55
+ "max":1024,
56
+ "min":1
57
+ },
58
+ "InvalidInputException":{
59
+ "type":"structure",
60
+ "members":{
61
+ "message":{"shape":"ErrorMessage"}
62
+ },
63
+ "error":{"httpStatusCode":400},
64
+ "exception":true
65
+ },
66
+ "PutEventsRequest":{
67
+ "type":"structure",
68
+ "required":[
69
+ "trackingId",
70
+ "sessionId",
71
+ "eventList"
72
+ ],
73
+ "members":{
74
+ "trackingId":{"shape":"StringType"},
75
+ "userId":{"shape":"UserId"},
76
+ "sessionId":{"shape":"StringType"},
77
+ "eventList":{"shape":"EventList"}
78
+ }
79
+ },
80
+ "StringType":{
81
+ "type":"string",
82
+ "max":256,
83
+ "min":1
84
+ },
85
+ "UserId":{
86
+ "type":"string",
87
+ "max":256,
88
+ "min":1
89
+ }
90
+ }
91
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -0,0 +1,132 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2018-05-22",
5
+ "endpointPrefix":"personalize-runtime",
6
+ "jsonVersion":"1.1",
7
+ "protocol":"rest-json",
8
+ "serviceFullName":"Amazon Personalize Runtime",
9
+ "serviceId":"Personalize Runtime",
10
+ "signatureVersion":"v4",
11
+ "signingName":"personalize",
12
+ "uid":"personalize-runtime-2018-05-22"
13
+ },
14
+ "operations":{
15
+ "GetPersonalizedRanking":{
16
+ "name":"GetPersonalizedRanking",
17
+ "http":{
18
+ "method":"POST",
19
+ "requestUri":"/personalize-ranking"
20
+ },
21
+ "input":{"shape":"GetPersonalizedRankingRequest"},
22
+ "output":{"shape":"GetPersonalizedRankingResponse"},
23
+ "errors":[
24
+ {"shape":"InvalidInputException"},
25
+ {"shape":"ResourceNotFoundException"}
26
+ ],
27
+ "idempotent":true
28
+ },
29
+ "GetRecommendations":{
30
+ "name":"GetRecommendations",
31
+ "http":{
32
+ "method":"POST",
33
+ "requestUri":"/recommendations"
34
+ },
35
+ "input":{"shape":"GetRecommendationsRequest"},
36
+ "output":{"shape":"GetRecommendationsResponse"},
37
+ "errors":[
38
+ {"shape":"InvalidInputException"},
39
+ {"shape":"ResourceNotFoundException"}
40
+ ],
41
+ "idempotent":true
42
+ }
43
+ },
44
+ "shapes":{
45
+ "Arn":{
46
+ "type":"string",
47
+ "max":256,
48
+ "pattern":"arn:([a-z\\d-]+):personalize:.*:.*:.+"
49
+ },
50
+ "ErrorMessage":{"type":"string"},
51
+ "GetPersonalizedRankingRequest":{
52
+ "type":"structure",
53
+ "required":[
54
+ "campaignArn",
55
+ "inputList",
56
+ "userId"
57
+ ],
58
+ "members":{
59
+ "campaignArn":{"shape":"Arn"},
60
+ "inputList":{"shape":"InputList"},
61
+ "userId":{"shape":"UserID"}
62
+ }
63
+ },
64
+ "GetPersonalizedRankingResponse":{
65
+ "type":"structure",
66
+ "members":{
67
+ "personalizedRanking":{"shape":"ItemList"}
68
+ }
69
+ },
70
+ "GetRecommendationsRequest":{
71
+ "type":"structure",
72
+ "required":["campaignArn"],
73
+ "members":{
74
+ "campaignArn":{"shape":"Arn"},
75
+ "itemId":{"shape":"ItemID"},
76
+ "userId":{"shape":"UserID"},
77
+ "numResults":{"shape":"NumResults"}
78
+ }
79
+ },
80
+ "GetRecommendationsResponse":{
81
+ "type":"structure",
82
+ "members":{
83
+ "itemList":{"shape":"ItemList"}
84
+ }
85
+ },
86
+ "InputList":{
87
+ "type":"list",
88
+ "member":{"shape":"ItemID"},
89
+ "max":100
90
+ },
91
+ "InvalidInputException":{
92
+ "type":"structure",
93
+ "members":{
94
+ "message":{"shape":"ErrorMessage"}
95
+ },
96
+ "error":{"httpStatusCode":400},
97
+ "exception":true
98
+ },
99
+ "ItemID":{
100
+ "type":"string",
101
+ "max":256
102
+ },
103
+ "ItemList":{
104
+ "type":"list",
105
+ "member":{"shape":"PredictedItem"},
106
+ "max":100
107
+ },
108
+ "NumResults":{
109
+ "type":"integer",
110
+ "max":100,
111
+ "min":0
112
+ },
113
+ "PredictedItem":{
114
+ "type":"structure",
115
+ "members":{
116
+ "itemId":{"shape":"ItemID"}
117
+ }
118
+ },
119
+ "ResourceNotFoundException":{
120
+ "type":"structure",
121
+ "members":{
122
+ "message":{"shape":"ErrorMessage"}
123
+ },
124
+ "error":{"httpStatusCode":404},
125
+ "exception":true
126
+ },
127
+ "UserID":{
128
+ "type":"string",
129
+ "max":256
130
+ }
131
+ }
132
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -0,0 +1,1695 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2018-05-22",
5
+ "endpointPrefix":"personalize",
6
+ "jsonVersion":"1.1",
7
+ "protocol":"json",
8
+ "serviceFullName":"Amazon Personalize",
9
+ "serviceId":"Personalize",
10
+ "signatureVersion":"v4",
11
+ "signingName":"personalize",
12
+ "targetPrefix":"AmazonPersonalize",
13
+ "uid":"personalize-2018-05-22"
14
+ },
15
+ "operations":{
16
+ "CreateCampaign":{
17
+ "name":"CreateCampaign",
18
+ "http":{
19
+ "method":"POST",
20
+ "requestUri":"/"
21
+ },
22
+ "input":{"shape":"CreateCampaignRequest"},
23
+ "output":{"shape":"CreateCampaignResponse"},
24
+ "errors":[
25
+ {"shape":"InvalidInputException"},
26
+ {"shape":"ResourceNotFoundException"},
27
+ {"shape":"ResourceAlreadyExistsException"},
28
+ {"shape":"LimitExceededException"},
29
+ {"shape":"ResourceInUseException"}
30
+ ],
31
+ "idempotent":true
32
+ },
33
+ "CreateDataset":{
34
+ "name":"CreateDataset",
35
+ "http":{
36
+ "method":"POST",
37
+ "requestUri":"/"
38
+ },
39
+ "input":{"shape":"CreateDatasetRequest"},
40
+ "output":{"shape":"CreateDatasetResponse"},
41
+ "errors":[
42
+ {"shape":"InvalidInputException"},
43
+ {"shape":"ResourceNotFoundException"},
44
+ {"shape":"ResourceAlreadyExistsException"},
45
+ {"shape":"LimitExceededException"},
46
+ {"shape":"ResourceInUseException"}
47
+ ],
48
+ "idempotent":true
49
+ },
50
+ "CreateDatasetGroup":{
51
+ "name":"CreateDatasetGroup",
52
+ "http":{
53
+ "method":"POST",
54
+ "requestUri":"/"
55
+ },
56
+ "input":{"shape":"CreateDatasetGroupRequest"},
57
+ "output":{"shape":"CreateDatasetGroupResponse"},
58
+ "errors":[
59
+ {"shape":"InvalidInputException"},
60
+ {"shape":"ResourceAlreadyExistsException"},
61
+ {"shape":"LimitExceededException"}
62
+ ]
63
+ },
64
+ "CreateDatasetImportJob":{
65
+ "name":"CreateDatasetImportJob",
66
+ "http":{
67
+ "method":"POST",
68
+ "requestUri":"/"
69
+ },
70
+ "input":{"shape":"CreateDatasetImportJobRequest"},
71
+ "output":{"shape":"CreateDatasetImportJobResponse"},
72
+ "errors":[
73
+ {"shape":"InvalidInputException"},
74
+ {"shape":"ResourceNotFoundException"},
75
+ {"shape":"ResourceAlreadyExistsException"},
76
+ {"shape":"LimitExceededException"}
77
+ ]
78
+ },
79
+ "CreateEventTracker":{
80
+ "name":"CreateEventTracker",
81
+ "http":{
82
+ "method":"POST",
83
+ "requestUri":"/"
84
+ },
85
+ "input":{"shape":"CreateEventTrackerRequest"},
86
+ "output":{"shape":"CreateEventTrackerResponse"},
87
+ "errors":[
88
+ {"shape":"InvalidInputException"},
89
+ {"shape":"ResourceAlreadyExistsException"},
90
+ {"shape":"ResourceNotFoundException"},
91
+ {"shape":"LimitExceededException"},
92
+ {"shape":"ResourceInUseException"}
93
+ ],
94
+ "idempotent":true
95
+ },
96
+ "CreateSchema":{
97
+ "name":"CreateSchema",
98
+ "http":{
99
+ "method":"POST",
100
+ "requestUri":"/"
101
+ },
102
+ "input":{"shape":"CreateSchemaRequest"},
103
+ "output":{"shape":"CreateSchemaResponse"},
104
+ "errors":[
105
+ {"shape":"InvalidInputException"},
106
+ {"shape":"ResourceAlreadyExistsException"},
107
+ {"shape":"LimitExceededException"}
108
+ ],
109
+ "idempotent":true
110
+ },
111
+ "CreateSolution":{
112
+ "name":"CreateSolution",
113
+ "http":{
114
+ "method":"POST",
115
+ "requestUri":"/"
116
+ },
117
+ "input":{"shape":"CreateSolutionRequest"},
118
+ "output":{"shape":"CreateSolutionResponse"},
119
+ "errors":[
120
+ {"shape":"InvalidInputException"},
121
+ {"shape":"ResourceAlreadyExistsException"},
122
+ {"shape":"ResourceNotFoundException"},
123
+ {"shape":"LimitExceededException"},
124
+ {"shape":"ResourceInUseException"}
125
+ ]
126
+ },
127
+ "CreateSolutionVersion":{
128
+ "name":"CreateSolutionVersion",
129
+ "http":{
130
+ "method":"POST",
131
+ "requestUri":"/"
132
+ },
133
+ "input":{"shape":"CreateSolutionVersionRequest"},
134
+ "output":{"shape":"CreateSolutionVersionResponse"},
135
+ "errors":[
136
+ {"shape":"InvalidInputException"},
137
+ {"shape":"ResourceNotFoundException"},
138
+ {"shape":"ResourceInUseException"}
139
+ ]
140
+ },
141
+ "DeleteCampaign":{
142
+ "name":"DeleteCampaign",
143
+ "http":{
144
+ "method":"POST",
145
+ "requestUri":"/"
146
+ },
147
+ "input":{"shape":"DeleteCampaignRequest"},
148
+ "errors":[
149
+ {"shape":"InvalidInputException"},
150
+ {"shape":"ResourceNotFoundException"},
151
+ {"shape":"ResourceInUseException"}
152
+ ],
153
+ "idempotent":true
154
+ },
155
+ "DeleteDataset":{
156
+ "name":"DeleteDataset",
157
+ "http":{
158
+ "method":"POST",
159
+ "requestUri":"/"
160
+ },
161
+ "input":{"shape":"DeleteDatasetRequest"},
162
+ "errors":[
163
+ {"shape":"InvalidInputException"},
164
+ {"shape":"ResourceNotFoundException"},
165
+ {"shape":"ResourceInUseException"}
166
+ ],
167
+ "idempotent":true
168
+ },
169
+ "DeleteDatasetGroup":{
170
+ "name":"DeleteDatasetGroup",
171
+ "http":{
172
+ "method":"POST",
173
+ "requestUri":"/"
174
+ },
175
+ "input":{"shape":"DeleteDatasetGroupRequest"},
176
+ "errors":[
177
+ {"shape":"InvalidInputException"},
178
+ {"shape":"ResourceNotFoundException"},
179
+ {"shape":"ResourceInUseException"}
180
+ ],
181
+ "idempotent":true
182
+ },
183
+ "DeleteEventTracker":{
184
+ "name":"DeleteEventTracker",
185
+ "http":{
186
+ "method":"POST",
187
+ "requestUri":"/"
188
+ },
189
+ "input":{"shape":"DeleteEventTrackerRequest"},
190
+ "errors":[
191
+ {"shape":"InvalidInputException"},
192
+ {"shape":"ResourceNotFoundException"},
193
+ {"shape":"ResourceInUseException"}
194
+ ],
195
+ "idempotent":true
196
+ },
197
+ "DeleteSchema":{
198
+ "name":"DeleteSchema",
199
+ "http":{
200
+ "method":"POST",
201
+ "requestUri":"/"
202
+ },
203
+ "input":{"shape":"DeleteSchemaRequest"},
204
+ "errors":[
205
+ {"shape":"InvalidInputException"},
206
+ {"shape":"ResourceNotFoundException"},
207
+ {"shape":"ResourceInUseException"}
208
+ ],
209
+ "idempotent":true
210
+ },
211
+ "DeleteSolution":{
212
+ "name":"DeleteSolution",
213
+ "http":{
214
+ "method":"POST",
215
+ "requestUri":"/"
216
+ },
217
+ "input":{"shape":"DeleteSolutionRequest"},
218
+ "errors":[
219
+ {"shape":"InvalidInputException"},
220
+ {"shape":"ResourceNotFoundException"},
221
+ {"shape":"ResourceInUseException"}
222
+ ],
223
+ "idempotent":true
224
+ },
225
+ "DescribeAlgorithm":{
226
+ "name":"DescribeAlgorithm",
227
+ "http":{
228
+ "method":"POST",
229
+ "requestUri":"/"
230
+ },
231
+ "input":{"shape":"DescribeAlgorithmRequest"},
232
+ "output":{"shape":"DescribeAlgorithmResponse"},
233
+ "errors":[
234
+ {"shape":"InvalidInputException"},
235
+ {"shape":"ResourceNotFoundException"}
236
+ ],
237
+ "idempotent":true
238
+ },
239
+ "DescribeCampaign":{
240
+ "name":"DescribeCampaign",
241
+ "http":{
242
+ "method":"POST",
243
+ "requestUri":"/"
244
+ },
245
+ "input":{"shape":"DescribeCampaignRequest"},
246
+ "output":{"shape":"DescribeCampaignResponse"},
247
+ "errors":[
248
+ {"shape":"InvalidInputException"},
249
+ {"shape":"ResourceNotFoundException"}
250
+ ],
251
+ "idempotent":true
252
+ },
253
+ "DescribeDataset":{
254
+ "name":"DescribeDataset",
255
+ "http":{
256
+ "method":"POST",
257
+ "requestUri":"/"
258
+ },
259
+ "input":{"shape":"DescribeDatasetRequest"},
260
+ "output":{"shape":"DescribeDatasetResponse"},
261
+ "errors":[
262
+ {"shape":"InvalidInputException"},
263
+ {"shape":"ResourceNotFoundException"}
264
+ ],
265
+ "idempotent":true
266
+ },
267
+ "DescribeDatasetGroup":{
268
+ "name":"DescribeDatasetGroup",
269
+ "http":{
270
+ "method":"POST",
271
+ "requestUri":"/"
272
+ },
273
+ "input":{"shape":"DescribeDatasetGroupRequest"},
274
+ "output":{"shape":"DescribeDatasetGroupResponse"},
275
+ "errors":[
276
+ {"shape":"InvalidInputException"},
277
+ {"shape":"ResourceNotFoundException"}
278
+ ],
279
+ "idempotent":true
280
+ },
281
+ "DescribeDatasetImportJob":{
282
+ "name":"DescribeDatasetImportJob",
283
+ "http":{
284
+ "method":"POST",
285
+ "requestUri":"/"
286
+ },
287
+ "input":{"shape":"DescribeDatasetImportJobRequest"},
288
+ "output":{"shape":"DescribeDatasetImportJobResponse"},
289
+ "errors":[
290
+ {"shape":"InvalidInputException"},
291
+ {"shape":"ResourceNotFoundException"}
292
+ ],
293
+ "idempotent":true
294
+ },
295
+ "DescribeEventTracker":{
296
+ "name":"DescribeEventTracker",
297
+ "http":{
298
+ "method":"POST",
299
+ "requestUri":"/"
300
+ },
301
+ "input":{"shape":"DescribeEventTrackerRequest"},
302
+ "output":{"shape":"DescribeEventTrackerResponse"},
303
+ "errors":[
304
+ {"shape":"InvalidInputException"},
305
+ {"shape":"ResourceNotFoundException"}
306
+ ],
307
+ "idempotent":true
308
+ },
309
+ "DescribeFeatureTransformation":{
310
+ "name":"DescribeFeatureTransformation",
311
+ "http":{
312
+ "method":"POST",
313
+ "requestUri":"/"
314
+ },
315
+ "input":{"shape":"DescribeFeatureTransformationRequest"},
316
+ "output":{"shape":"DescribeFeatureTransformationResponse"},
317
+ "errors":[
318
+ {"shape":"InvalidInputException"},
319
+ {"shape":"ResourceNotFoundException"}
320
+ ],
321
+ "idempotent":true
322
+ },
323
+ "DescribeRecipe":{
324
+ "name":"DescribeRecipe",
325
+ "http":{
326
+ "method":"POST",
327
+ "requestUri":"/"
328
+ },
329
+ "input":{"shape":"DescribeRecipeRequest"},
330
+ "output":{"shape":"DescribeRecipeResponse"},
331
+ "errors":[
332
+ {"shape":"InvalidInputException"},
333
+ {"shape":"ResourceNotFoundException"}
334
+ ],
335
+ "idempotent":true
336
+ },
337
+ "DescribeSchema":{
338
+ "name":"DescribeSchema",
339
+ "http":{
340
+ "method":"POST",
341
+ "requestUri":"/"
342
+ },
343
+ "input":{"shape":"DescribeSchemaRequest"},
344
+ "output":{"shape":"DescribeSchemaResponse"},
345
+ "errors":[
346
+ {"shape":"InvalidInputException"},
347
+ {"shape":"ResourceNotFoundException"}
348
+ ],
349
+ "idempotent":true
350
+ },
351
+ "DescribeSolution":{
352
+ "name":"DescribeSolution",
353
+ "http":{
354
+ "method":"POST",
355
+ "requestUri":"/"
356
+ },
357
+ "input":{"shape":"DescribeSolutionRequest"},
358
+ "output":{"shape":"DescribeSolutionResponse"},
359
+ "errors":[
360
+ {"shape":"InvalidInputException"},
361
+ {"shape":"ResourceNotFoundException"}
362
+ ],
363
+ "idempotent":true
364
+ },
365
+ "DescribeSolutionVersion":{
366
+ "name":"DescribeSolutionVersion",
367
+ "http":{
368
+ "method":"POST",
369
+ "requestUri":"/"
370
+ },
371
+ "input":{"shape":"DescribeSolutionVersionRequest"},
372
+ "output":{"shape":"DescribeSolutionVersionResponse"},
373
+ "errors":[
374
+ {"shape":"InvalidInputException"},
375
+ {"shape":"ResourceNotFoundException"}
376
+ ],
377
+ "idempotent":true
378
+ },
379
+ "GetSolutionMetrics":{
380
+ "name":"GetSolutionMetrics",
381
+ "http":{
382
+ "method":"POST",
383
+ "requestUri":"/"
384
+ },
385
+ "input":{"shape":"GetSolutionMetricsRequest"},
386
+ "output":{"shape":"GetSolutionMetricsResponse"},
387
+ "errors":[
388
+ {"shape":"InvalidInputException"},
389
+ {"shape":"ResourceNotFoundException"},
390
+ {"shape":"ResourceInUseException"}
391
+ ]
392
+ },
393
+ "ListCampaigns":{
394
+ "name":"ListCampaigns",
395
+ "http":{
396
+ "method":"POST",
397
+ "requestUri":"/"
398
+ },
399
+ "input":{"shape":"ListCampaignsRequest"},
400
+ "output":{"shape":"ListCampaignsResponse"},
401
+ "errors":[
402
+ {"shape":"InvalidInputException"},
403
+ {"shape":"InvalidNextTokenException"}
404
+ ],
405
+ "idempotent":true
406
+ },
407
+ "ListDatasetGroups":{
408
+ "name":"ListDatasetGroups",
409
+ "http":{
410
+ "method":"POST",
411
+ "requestUri":"/"
412
+ },
413
+ "input":{"shape":"ListDatasetGroupsRequest"},
414
+ "output":{"shape":"ListDatasetGroupsResponse"},
415
+ "errors":[
416
+ {"shape":"InvalidNextTokenException"}
417
+ ],
418
+ "idempotent":true
419
+ },
420
+ "ListDatasetImportJobs":{
421
+ "name":"ListDatasetImportJobs",
422
+ "http":{
423
+ "method":"POST",
424
+ "requestUri":"/"
425
+ },
426
+ "input":{"shape":"ListDatasetImportJobsRequest"},
427
+ "output":{"shape":"ListDatasetImportJobsResponse"},
428
+ "errors":[
429
+ {"shape":"InvalidInputException"},
430
+ {"shape":"InvalidNextTokenException"}
431
+ ],
432
+ "idempotent":true
433
+ },
434
+ "ListDatasets":{
435
+ "name":"ListDatasets",
436
+ "http":{
437
+ "method":"POST",
438
+ "requestUri":"/"
439
+ },
440
+ "input":{"shape":"ListDatasetsRequest"},
441
+ "output":{"shape":"ListDatasetsResponse"},
442
+ "errors":[
443
+ {"shape":"InvalidInputException"},
444
+ {"shape":"InvalidNextTokenException"}
445
+ ],
446
+ "idempotent":true
447
+ },
448
+ "ListEventTrackers":{
449
+ "name":"ListEventTrackers",
450
+ "http":{
451
+ "method":"POST",
452
+ "requestUri":"/"
453
+ },
454
+ "input":{"shape":"ListEventTrackersRequest"},
455
+ "output":{"shape":"ListEventTrackersResponse"},
456
+ "errors":[
457
+ {"shape":"InvalidInputException"},
458
+ {"shape":"InvalidNextTokenException"}
459
+ ],
460
+ "idempotent":true
461
+ },
462
+ "ListRecipes":{
463
+ "name":"ListRecipes",
464
+ "http":{
465
+ "method":"POST",
466
+ "requestUri":"/"
467
+ },
468
+ "input":{"shape":"ListRecipesRequest"},
469
+ "output":{"shape":"ListRecipesResponse"},
470
+ "errors":[
471
+ {"shape":"InvalidNextTokenException"}
472
+ ],
473
+ "idempotent":true
474
+ },
475
+ "ListSchemas":{
476
+ "name":"ListSchemas",
477
+ "http":{
478
+ "method":"POST",
479
+ "requestUri":"/"
480
+ },
481
+ "input":{"shape":"ListSchemasRequest"},
482
+ "output":{"shape":"ListSchemasResponse"},
483
+ "errors":[
484
+ {"shape":"InvalidNextTokenException"}
485
+ ],
486
+ "idempotent":true
487
+ },
488
+ "ListSolutionVersions":{
489
+ "name":"ListSolutionVersions",
490
+ "http":{
491
+ "method":"POST",
492
+ "requestUri":"/"
493
+ },
494
+ "input":{"shape":"ListSolutionVersionsRequest"},
495
+ "output":{"shape":"ListSolutionVersionsResponse"},
496
+ "errors":[
497
+ {"shape":"InvalidInputException"},
498
+ {"shape":"ResourceNotFoundException"}
499
+ ],
500
+ "idempotent":true
501
+ },
502
+ "ListSolutions":{
503
+ "name":"ListSolutions",
504
+ "http":{
505
+ "method":"POST",
506
+ "requestUri":"/"
507
+ },
508
+ "input":{"shape":"ListSolutionsRequest"},
509
+ "output":{"shape":"ListSolutionsResponse"},
510
+ "errors":[
511
+ {"shape":"InvalidInputException"},
512
+ {"shape":"InvalidNextTokenException"}
513
+ ],
514
+ "idempotent":true
515
+ },
516
+ "UpdateCampaign":{
517
+ "name":"UpdateCampaign",
518
+ "http":{
519
+ "method":"POST",
520
+ "requestUri":"/"
521
+ },
522
+ "input":{"shape":"UpdateCampaignRequest"},
523
+ "output":{"shape":"UpdateCampaignResponse"},
524
+ "errors":[
525
+ {"shape":"InvalidInputException"},
526
+ {"shape":"ResourceNotFoundException"},
527
+ {"shape":"ResourceInUseException"}
528
+ ],
529
+ "idempotent":true
530
+ }
531
+ },
532
+ "shapes":{
533
+ "AccountId":{
534
+ "type":"string",
535
+ "max":256
536
+ },
537
+ "Algorithm":{
538
+ "type":"structure",
539
+ "members":{
540
+ "name":{"shape":"Name"},
541
+ "algorithmArn":{"shape":"Arn"},
542
+ "algorithmImage":{"shape":"AlgorithmImage"},
543
+ "defaultHyperParameters":{"shape":"HyperParameters"},
544
+ "defaultHyperParameterRanges":{"shape":"DefaultHyperParameterRanges"},
545
+ "defaultResourceConfig":{"shape":"ResourceConfig"},
546
+ "trainingInputMode":{"shape":"TrainingInputMode"},
547
+ "roleArn":{"shape":"Arn"},
548
+ "creationDateTime":{"shape":"Date"},
549
+ "lastUpdatedDateTime":{"shape":"Date"}
550
+ }
551
+ },
552
+ "AlgorithmImage":{
553
+ "type":"structure",
554
+ "required":["dockerURI"],
555
+ "members":{
556
+ "name":{"shape":"Name"},
557
+ "dockerURI":{"shape":"DockerURI"}
558
+ }
559
+ },
560
+ "Arn":{
561
+ "type":"string",
562
+ "max":256,
563
+ "pattern":"arn:([a-z\\d-]+):personalize:.*:.*:.+"
564
+ },
565
+ "ArnList":{
566
+ "type":"list",
567
+ "member":{"shape":"Arn"},
568
+ "max":100
569
+ },
570
+ "AutoMLConfig":{
571
+ "type":"structure",
572
+ "members":{
573
+ "metricName":{"shape":"MetricName"},
574
+ "recipeList":{"shape":"ArnList"}
575
+ }
576
+ },
577
+ "AutoMLResult":{
578
+ "type":"structure",
579
+ "members":{
580
+ "bestRecipeArn":{"shape":"Arn"}
581
+ }
582
+ },
583
+ "AvroSchema":{
584
+ "type":"string",
585
+ "max":10000
586
+ },
587
+ "Campaign":{
588
+ "type":"structure",
589
+ "members":{
590
+ "name":{"shape":"Name"},
591
+ "campaignArn":{"shape":"Arn"},
592
+ "solutionVersionArn":{"shape":"Arn"},
593
+ "minProvisionedTPS":{"shape":"TransactionsPerSecond"},
594
+ "status":{"shape":"Status"},
595
+ "failureReason":{"shape":"FailureReason"},
596
+ "creationDateTime":{"shape":"Date"},
597
+ "lastUpdatedDateTime":{"shape":"Date"},
598
+ "latestCampaignUpdate":{"shape":"CampaignUpdateSummary"}
599
+ }
600
+ },
601
+ "CampaignSummary":{
602
+ "type":"structure",
603
+ "members":{
604
+ "name":{"shape":"Name"},
605
+ "campaignArn":{"shape":"Arn"},
606
+ "status":{"shape":"Status"},
607
+ "creationDateTime":{"shape":"Date"},
608
+ "lastUpdatedDateTime":{"shape":"Date"},
609
+ "failureReason":{"shape":"FailureReason"}
610
+ }
611
+ },
612
+ "CampaignUpdateSummary":{
613
+ "type":"structure",
614
+ "members":{
615
+ "solutionVersionArn":{"shape":"Arn"},
616
+ "minProvisionedTPS":{"shape":"TransactionsPerSecond"},
617
+ "status":{"shape":"Status"},
618
+ "failureReason":{"shape":"FailureReason"},
619
+ "creationDateTime":{"shape":"Date"},
620
+ "lastUpdatedDateTime":{"shape":"Date"}
621
+ }
622
+ },
623
+ "Campaigns":{
624
+ "type":"list",
625
+ "member":{"shape":"CampaignSummary"},
626
+ "max":100
627
+ },
628
+ "CategoricalHyperParameterRange":{
629
+ "type":"structure",
630
+ "members":{
631
+ "name":{"shape":"ParameterName"},
632
+ "values":{"shape":"CategoricalValues"}
633
+ }
634
+ },
635
+ "CategoricalHyperParameterRanges":{
636
+ "type":"list",
637
+ "member":{"shape":"CategoricalHyperParameterRange"},
638
+ "max":100
639
+ },
640
+ "CategoricalValue":{
641
+ "type":"string",
642
+ "max":1000
643
+ },
644
+ "CategoricalValues":{
645
+ "type":"list",
646
+ "member":{"shape":"CategoricalValue"},
647
+ "max":100
648
+ },
649
+ "ContinuousHyperParameterRange":{
650
+ "type":"structure",
651
+ "members":{
652
+ "name":{"shape":"ParameterName"},
653
+ "minValue":{"shape":"ContinuousMinValue"},
654
+ "maxValue":{"shape":"ContinuousMaxValue"}
655
+ }
656
+ },
657
+ "ContinuousHyperParameterRanges":{
658
+ "type":"list",
659
+ "member":{"shape":"ContinuousHyperParameterRange"},
660
+ "max":100
661
+ },
662
+ "ContinuousMaxValue":{
663
+ "type":"double",
664
+ "min":-1000000
665
+ },
666
+ "ContinuousMinValue":{
667
+ "type":"double",
668
+ "min":-1000000
669
+ },
670
+ "CreateCampaignRequest":{
671
+ "type":"structure",
672
+ "required":[
673
+ "name",
674
+ "solutionVersionArn",
675
+ "minProvisionedTPS"
676
+ ],
677
+ "members":{
678
+ "name":{"shape":"Name"},
679
+ "solutionVersionArn":{"shape":"Arn"},
680
+ "minProvisionedTPS":{"shape":"TransactionsPerSecond"}
681
+ }
682
+ },
683
+ "CreateCampaignResponse":{
684
+ "type":"structure",
685
+ "members":{
686
+ "campaignArn":{"shape":"Arn"}
687
+ }
688
+ },
689
+ "CreateDatasetGroupRequest":{
690
+ "type":"structure",
691
+ "required":["name"],
692
+ "members":{
693
+ "name":{"shape":"Name"},
694
+ "roleArn":{"shape":"RoleArn"},
695
+ "kmsKeyArn":{"shape":"KmsKeyArn"}
696
+ }
697
+ },
698
+ "CreateDatasetGroupResponse":{
699
+ "type":"structure",
700
+ "members":{
701
+ "datasetGroupArn":{"shape":"Arn"}
702
+ }
703
+ },
704
+ "CreateDatasetImportJobRequest":{
705
+ "type":"structure",
706
+ "required":[
707
+ "jobName",
708
+ "datasetArn",
709
+ "dataSource",
710
+ "roleArn"
711
+ ],
712
+ "members":{
713
+ "jobName":{"shape":"Name"},
714
+ "datasetArn":{"shape":"Arn"},
715
+ "dataSource":{"shape":"DataSource"},
716
+ "roleArn":{"shape":"RoleArn"}
717
+ }
718
+ },
719
+ "CreateDatasetImportJobResponse":{
720
+ "type":"structure",
721
+ "members":{
722
+ "datasetImportJobArn":{"shape":"Arn"}
723
+ }
724
+ },
725
+ "CreateDatasetRequest":{
726
+ "type":"structure",
727
+ "required":[
728
+ "name",
729
+ "schemaArn",
730
+ "datasetGroupArn",
731
+ "datasetType"
732
+ ],
733
+ "members":{
734
+ "name":{"shape":"Name"},
735
+ "schemaArn":{"shape":"Arn"},
736
+ "datasetGroupArn":{"shape":"Arn"},
737
+ "datasetType":{"shape":"DatasetType"}
738
+ }
739
+ },
740
+ "CreateDatasetResponse":{
741
+ "type":"structure",
742
+ "members":{
743
+ "datasetArn":{"shape":"Arn"}
744
+ }
745
+ },
746
+ "CreateEventTrackerRequest":{
747
+ "type":"structure",
748
+ "required":[
749
+ "name",
750
+ "datasetGroupArn"
751
+ ],
752
+ "members":{
753
+ "name":{"shape":"Name"},
754
+ "datasetGroupArn":{"shape":"Arn"}
755
+ }
756
+ },
757
+ "CreateEventTrackerResponse":{
758
+ "type":"structure",
759
+ "members":{
760
+ "eventTrackerArn":{"shape":"Arn"},
761
+ "trackingId":{"shape":"TrackingId"}
762
+ }
763
+ },
764
+ "CreateSchemaRequest":{
765
+ "type":"structure",
766
+ "required":[
767
+ "name",
768
+ "schema"
769
+ ],
770
+ "members":{
771
+ "name":{"shape":"Name"},
772
+ "schema":{"shape":"AvroSchema"}
773
+ }
774
+ },
775
+ "CreateSchemaResponse":{
776
+ "type":"structure",
777
+ "members":{
778
+ "schemaArn":{"shape":"Arn"}
779
+ }
780
+ },
781
+ "CreateSolutionRequest":{
782
+ "type":"structure",
783
+ "required":[
784
+ "name",
785
+ "datasetGroupArn"
786
+ ],
787
+ "members":{
788
+ "name":{"shape":"Name"},
789
+ "performHPO":{"shape":"PerformHPO"},
790
+ "performAutoML":{"shape":"PerformAutoML"},
791
+ "recipeArn":{"shape":"Arn"},
792
+ "datasetGroupArn":{"shape":"Arn"},
793
+ "eventType":{"shape":"EventType"},
794
+ "solutionConfig":{"shape":"SolutionConfig"}
795
+ }
796
+ },
797
+ "CreateSolutionResponse":{
798
+ "type":"structure",
799
+ "members":{
800
+ "solutionArn":{"shape":"Arn"}
801
+ }
802
+ },
803
+ "CreateSolutionVersionRequest":{
804
+ "type":"structure",
805
+ "required":["solutionArn"],
806
+ "members":{
807
+ "solutionArn":{"shape":"Arn"}
808
+ }
809
+ },
810
+ "CreateSolutionVersionResponse":{
811
+ "type":"structure",
812
+ "members":{
813
+ "solutionVersionArn":{"shape":"Arn"}
814
+ }
815
+ },
816
+ "DataSource":{
817
+ "type":"structure",
818
+ "members":{
819
+ "dataLocation":{"shape":"S3Location"}
820
+ }
821
+ },
822
+ "Dataset":{
823
+ "type":"structure",
824
+ "members":{
825
+ "name":{"shape":"Name"},
826
+ "datasetArn":{"shape":"Arn"},
827
+ "datasetGroupArn":{"shape":"Arn"},
828
+ "datasetType":{"shape":"DatasetType"},
829
+ "schemaArn":{"shape":"Arn"},
830
+ "status":{"shape":"Status"},
831
+ "creationDateTime":{"shape":"Date"},
832
+ "lastUpdatedDateTime":{"shape":"Date"}
833
+ }
834
+ },
835
+ "DatasetGroup":{
836
+ "type":"structure",
837
+ "members":{
838
+ "name":{"shape":"Name"},
839
+ "datasetGroupArn":{"shape":"Arn"},
840
+ "status":{"shape":"Status"},
841
+ "roleArn":{"shape":"RoleArn"},
842
+ "kmsKeyArn":{"shape":"KmsKeyArn"},
843
+ "creationDateTime":{"shape":"Date"},
844
+ "lastUpdatedDateTime":{"shape":"Date"},
845
+ "failureReason":{"shape":"FailureReason"}
846
+ }
847
+ },
848
+ "DatasetGroupSummary":{
849
+ "type":"structure",
850
+ "members":{
851
+ "name":{"shape":"Name"},
852
+ "datasetGroupArn":{"shape":"Arn"},
853
+ "status":{"shape":"Status"},
854
+ "creationDateTime":{"shape":"Date"},
855
+ "lastUpdatedDateTime":{"shape":"Date"},
856
+ "failureReason":{"shape":"FailureReason"}
857
+ }
858
+ },
859
+ "DatasetGroups":{
860
+ "type":"list",
861
+ "member":{"shape":"DatasetGroupSummary"},
862
+ "max":100
863
+ },
864
+ "DatasetImportJob":{
865
+ "type":"structure",
866
+ "members":{
867
+ "jobName":{"shape":"Name"},
868
+ "datasetImportJobArn":{"shape":"Arn"},
869
+ "datasetArn":{"shape":"Arn"},
870
+ "dataSource":{"shape":"DataSource"},
871
+ "roleArn":{"shape":"Arn"},
872
+ "status":{"shape":"Status"},
873
+ "creationDateTime":{"shape":"Date"},
874
+ "lastUpdatedDateTime":{"shape":"Date"},
875
+ "failureReason":{"shape":"FailureReason"}
876
+ }
877
+ },
878
+ "DatasetImportJobSummary":{
879
+ "type":"structure",
880
+ "members":{
881
+ "datasetImportJobArn":{"shape":"Arn"},
882
+ "jobName":{"shape":"Name"},
883
+ "status":{"shape":"Status"},
884
+ "creationDateTime":{"shape":"Date"},
885
+ "lastUpdatedDateTime":{"shape":"Date"},
886
+ "failureReason":{"shape":"FailureReason"}
887
+ }
888
+ },
889
+ "DatasetImportJobs":{
890
+ "type":"list",
891
+ "member":{"shape":"DatasetImportJobSummary"},
892
+ "max":100
893
+ },
894
+ "DatasetSchema":{
895
+ "type":"structure",
896
+ "members":{
897
+ "name":{"shape":"Name"},
898
+ "schemaArn":{"shape":"Arn"},
899
+ "schema":{"shape":"AvroSchema"},
900
+ "creationDateTime":{"shape":"Date"},
901
+ "lastUpdatedDateTime":{"shape":"Date"}
902
+ }
903
+ },
904
+ "DatasetSchemaSummary":{
905
+ "type":"structure",
906
+ "members":{
907
+ "name":{"shape":"Name"},
908
+ "schemaArn":{"shape":"Arn"},
909
+ "creationDateTime":{"shape":"Date"},
910
+ "lastUpdatedDateTime":{"shape":"Date"}
911
+ }
912
+ },
913
+ "DatasetSummary":{
914
+ "type":"structure",
915
+ "members":{
916
+ "name":{"shape":"Name"},
917
+ "datasetArn":{"shape":"Arn"},
918
+ "datasetType":{"shape":"DatasetType"},
919
+ "status":{"shape":"Status"},
920
+ "creationDateTime":{"shape":"Date"},
921
+ "lastUpdatedDateTime":{"shape":"Date"}
922
+ }
923
+ },
924
+ "DatasetType":{
925
+ "type":"string",
926
+ "max":256
927
+ },
928
+ "Datasets":{
929
+ "type":"list",
930
+ "member":{"shape":"DatasetSummary"},
931
+ "max":100
932
+ },
933
+ "Date":{"type":"timestamp"},
934
+ "DefaultCategoricalHyperParameterRange":{
935
+ "type":"structure",
936
+ "members":{
937
+ "name":{"shape":"ParameterName"},
938
+ "values":{"shape":"CategoricalValues"},
939
+ "isTunable":{"shape":"Tunable"}
940
+ }
941
+ },
942
+ "DefaultCategoricalHyperParameterRanges":{
943
+ "type":"list",
944
+ "member":{"shape":"DefaultCategoricalHyperParameterRange"},
945
+ "max":100
946
+ },
947
+ "DefaultContinuousHyperParameterRange":{
948
+ "type":"structure",
949
+ "members":{
950
+ "name":{"shape":"ParameterName"},
951
+ "minValue":{"shape":"ContinuousMinValue"},
952
+ "maxValue":{"shape":"ContinuousMaxValue"},
953
+ "isTunable":{"shape":"Tunable"}
954
+ }
955
+ },
956
+ "DefaultContinuousHyperParameterRanges":{
957
+ "type":"list",
958
+ "member":{"shape":"DefaultContinuousHyperParameterRange"},
959
+ "max":100
960
+ },
961
+ "DefaultHyperParameterRanges":{
962
+ "type":"structure",
963
+ "members":{
964
+ "integerHyperParameterRanges":{"shape":"DefaultIntegerHyperParameterRanges"},
965
+ "continuousHyperParameterRanges":{"shape":"DefaultContinuousHyperParameterRanges"},
966
+ "categoricalHyperParameterRanges":{"shape":"DefaultCategoricalHyperParameterRanges"}
967
+ }
968
+ },
969
+ "DefaultIntegerHyperParameterRange":{
970
+ "type":"structure",
971
+ "members":{
972
+ "name":{"shape":"ParameterName"},
973
+ "minValue":{"shape":"IntegerMinValue"},
974
+ "maxValue":{"shape":"IntegerMaxValue"},
975
+ "isTunable":{"shape":"Tunable"}
976
+ }
977
+ },
978
+ "DefaultIntegerHyperParameterRanges":{
979
+ "type":"list",
980
+ "member":{"shape":"DefaultIntegerHyperParameterRange"},
981
+ "max":100
982
+ },
983
+ "DeleteCampaignRequest":{
984
+ "type":"structure",
985
+ "required":["campaignArn"],
986
+ "members":{
987
+ "campaignArn":{"shape":"Arn"}
988
+ }
989
+ },
990
+ "DeleteDatasetGroupRequest":{
991
+ "type":"structure",
992
+ "required":["datasetGroupArn"],
993
+ "members":{
994
+ "datasetGroupArn":{"shape":"Arn"}
995
+ }
996
+ },
997
+ "DeleteDatasetRequest":{
998
+ "type":"structure",
999
+ "required":["datasetArn"],
1000
+ "members":{
1001
+ "datasetArn":{"shape":"Arn"}
1002
+ }
1003
+ },
1004
+ "DeleteEventTrackerRequest":{
1005
+ "type":"structure",
1006
+ "required":["eventTrackerArn"],
1007
+ "members":{
1008
+ "eventTrackerArn":{"shape":"Arn"}
1009
+ }
1010
+ },
1011
+ "DeleteSchemaRequest":{
1012
+ "type":"structure",
1013
+ "required":["schemaArn"],
1014
+ "members":{
1015
+ "schemaArn":{"shape":"Arn"}
1016
+ }
1017
+ },
1018
+ "DeleteSolutionRequest":{
1019
+ "type":"structure",
1020
+ "required":["solutionArn"],
1021
+ "members":{
1022
+ "solutionArn":{"shape":"Arn"}
1023
+ }
1024
+ },
1025
+ "DescribeAlgorithmRequest":{
1026
+ "type":"structure",
1027
+ "required":["algorithmArn"],
1028
+ "members":{
1029
+ "algorithmArn":{"shape":"Arn"}
1030
+ }
1031
+ },
1032
+ "DescribeAlgorithmResponse":{
1033
+ "type":"structure",
1034
+ "members":{
1035
+ "algorithm":{"shape":"Algorithm"}
1036
+ }
1037
+ },
1038
+ "DescribeCampaignRequest":{
1039
+ "type":"structure",
1040
+ "required":["campaignArn"],
1041
+ "members":{
1042
+ "campaignArn":{"shape":"Arn"}
1043
+ }
1044
+ },
1045
+ "DescribeCampaignResponse":{
1046
+ "type":"structure",
1047
+ "members":{
1048
+ "campaign":{"shape":"Campaign"}
1049
+ }
1050
+ },
1051
+ "DescribeDatasetGroupRequest":{
1052
+ "type":"structure",
1053
+ "required":["datasetGroupArn"],
1054
+ "members":{
1055
+ "datasetGroupArn":{"shape":"Arn"}
1056
+ }
1057
+ },
1058
+ "DescribeDatasetGroupResponse":{
1059
+ "type":"structure",
1060
+ "members":{
1061
+ "datasetGroup":{"shape":"DatasetGroup"}
1062
+ }
1063
+ },
1064
+ "DescribeDatasetImportJobRequest":{
1065
+ "type":"structure",
1066
+ "required":["datasetImportJobArn"],
1067
+ "members":{
1068
+ "datasetImportJobArn":{"shape":"Arn"}
1069
+ }
1070
+ },
1071
+ "DescribeDatasetImportJobResponse":{
1072
+ "type":"structure",
1073
+ "members":{
1074
+ "datasetImportJob":{"shape":"DatasetImportJob"}
1075
+ }
1076
+ },
1077
+ "DescribeDatasetRequest":{
1078
+ "type":"structure",
1079
+ "required":["datasetArn"],
1080
+ "members":{
1081
+ "datasetArn":{"shape":"Arn"}
1082
+ }
1083
+ },
1084
+ "DescribeDatasetResponse":{
1085
+ "type":"structure",
1086
+ "members":{
1087
+ "dataset":{"shape":"Dataset"}
1088
+ }
1089
+ },
1090
+ "DescribeEventTrackerRequest":{
1091
+ "type":"structure",
1092
+ "required":["eventTrackerArn"],
1093
+ "members":{
1094
+ "eventTrackerArn":{"shape":"Arn"}
1095
+ }
1096
+ },
1097
+ "DescribeEventTrackerResponse":{
1098
+ "type":"structure",
1099
+ "members":{
1100
+ "eventTracker":{"shape":"EventTracker"}
1101
+ }
1102
+ },
1103
+ "DescribeFeatureTransformationRequest":{
1104
+ "type":"structure",
1105
+ "required":["featureTransformationArn"],
1106
+ "members":{
1107
+ "featureTransformationArn":{"shape":"Arn"}
1108
+ }
1109
+ },
1110
+ "DescribeFeatureTransformationResponse":{
1111
+ "type":"structure",
1112
+ "members":{
1113
+ "featureTransformation":{"shape":"FeatureTransformation"}
1114
+ }
1115
+ },
1116
+ "DescribeRecipeRequest":{
1117
+ "type":"structure",
1118
+ "required":["recipeArn"],
1119
+ "members":{
1120
+ "recipeArn":{"shape":"Arn"}
1121
+ }
1122
+ },
1123
+ "DescribeRecipeResponse":{
1124
+ "type":"structure",
1125
+ "members":{
1126
+ "recipe":{"shape":"Recipe"}
1127
+ }
1128
+ },
1129
+ "DescribeSchemaRequest":{
1130
+ "type":"structure",
1131
+ "required":["schemaArn"],
1132
+ "members":{
1133
+ "schemaArn":{"shape":"Arn"}
1134
+ }
1135
+ },
1136
+ "DescribeSchemaResponse":{
1137
+ "type":"structure",
1138
+ "members":{
1139
+ "schema":{"shape":"DatasetSchema"}
1140
+ }
1141
+ },
1142
+ "DescribeSolutionRequest":{
1143
+ "type":"structure",
1144
+ "required":["solutionArn"],
1145
+ "members":{
1146
+ "solutionArn":{"shape":"Arn"}
1147
+ }
1148
+ },
1149
+ "DescribeSolutionResponse":{
1150
+ "type":"structure",
1151
+ "members":{
1152
+ "solution":{"shape":"Solution"}
1153
+ }
1154
+ },
1155
+ "DescribeSolutionVersionRequest":{
1156
+ "type":"structure",
1157
+ "required":["solutionVersionArn"],
1158
+ "members":{
1159
+ "solutionVersionArn":{"shape":"Arn"}
1160
+ }
1161
+ },
1162
+ "DescribeSolutionVersionResponse":{
1163
+ "type":"structure",
1164
+ "members":{
1165
+ "solutionVersion":{"shape":"SolutionVersion"}
1166
+ }
1167
+ },
1168
+ "Description":{"type":"string"},
1169
+ "DockerURI":{
1170
+ "type":"string",
1171
+ "max":256
1172
+ },
1173
+ "ErrorMessage":{"type":"string"},
1174
+ "EventTracker":{
1175
+ "type":"structure",
1176
+ "members":{
1177
+ "name":{"shape":"Name"},
1178
+ "eventTrackerArn":{"shape":"Arn"},
1179
+ "accountId":{"shape":"AccountId"},
1180
+ "trackingId":{"shape":"TrackingId"},
1181
+ "datasetGroupArn":{"shape":"Arn"},
1182
+ "status":{"shape":"Status"},
1183
+ "creationDateTime":{"shape":"Date"},
1184
+ "lastUpdatedDateTime":{"shape":"Date"}
1185
+ }
1186
+ },
1187
+ "EventTrackerSummary":{
1188
+ "type":"structure",
1189
+ "members":{
1190
+ "name":{"shape":"Name"},
1191
+ "eventTrackerArn":{"shape":"Arn"},
1192
+ "status":{"shape":"Status"},
1193
+ "creationDateTime":{"shape":"Date"},
1194
+ "lastUpdatedDateTime":{"shape":"Date"}
1195
+ }
1196
+ },
1197
+ "EventTrackers":{
1198
+ "type":"list",
1199
+ "member":{"shape":"EventTrackerSummary"},
1200
+ "max":100
1201
+ },
1202
+ "EventType":{
1203
+ "type":"string",
1204
+ "max":256
1205
+ },
1206
+ "EventValueThreshold":{
1207
+ "type":"string",
1208
+ "max":256
1209
+ },
1210
+ "FailureReason":{"type":"string"},
1211
+ "FeatureTransformation":{
1212
+ "type":"structure",
1213
+ "members":{
1214
+ "name":{"shape":"Name"},
1215
+ "featureTransformationArn":{"shape":"Arn"},
1216
+ "defaultParameters":{"shape":"FeaturizationParameters"},
1217
+ "creationDateTime":{"shape":"Date"},
1218
+ "lastUpdatedDateTime":{"shape":"Date"},
1219
+ "status":{"shape":"Status"}
1220
+ }
1221
+ },
1222
+ "FeatureTransformationParameters":{
1223
+ "type":"map",
1224
+ "key":{"shape":"ParameterName"},
1225
+ "value":{"shape":"ParameterValue"},
1226
+ "max":100
1227
+ },
1228
+ "FeaturizationParameters":{
1229
+ "type":"map",
1230
+ "key":{"shape":"ParameterName"},
1231
+ "value":{"shape":"ParameterValue"},
1232
+ "max":100
1233
+ },
1234
+ "GetSolutionMetricsRequest":{
1235
+ "type":"structure",
1236
+ "required":["solutionVersionArn"],
1237
+ "members":{
1238
+ "solutionVersionArn":{"shape":"Arn"}
1239
+ }
1240
+ },
1241
+ "GetSolutionMetricsResponse":{
1242
+ "type":"structure",
1243
+ "members":{
1244
+ "solutionVersionArn":{"shape":"Arn"},
1245
+ "metrics":{"shape":"Metrics"}
1246
+ }
1247
+ },
1248
+ "HPOConfig":{
1249
+ "type":"structure",
1250
+ "members":{
1251
+ "hpoObjective":{"shape":"HPOObjective"},
1252
+ "hpoResourceConfig":{"shape":"HPOResourceConfig"},
1253
+ "algorithmHyperParameterRanges":{"shape":"HyperParameterRanges"}
1254
+ }
1255
+ },
1256
+ "HPOObjective":{
1257
+ "type":"structure",
1258
+ "members":{
1259
+ "type":{"shape":"HPOObjectiveType"},
1260
+ "metricName":{"shape":"MetricName"},
1261
+ "metricRegex":{"shape":"MetricRegex"}
1262
+ }
1263
+ },
1264
+ "HPOObjectiveType":{
1265
+ "type":"string",
1266
+ "max":256
1267
+ },
1268
+ "HPOResource":{
1269
+ "type":"string",
1270
+ "max":256
1271
+ },
1272
+ "HPOResourceConfig":{
1273
+ "type":"structure",
1274
+ "members":{
1275
+ "maxNumberOfTrainingJobs":{"shape":"HPOResource"},
1276
+ "maxParallelTrainingJobs":{"shape":"HPOResource"}
1277
+ }
1278
+ },
1279
+ "HyperParameterRanges":{
1280
+ "type":"structure",
1281
+ "members":{
1282
+ "integerHyperParameterRanges":{"shape":"IntegerHyperParameterRanges"},
1283
+ "continuousHyperParameterRanges":{"shape":"ContinuousHyperParameterRanges"},
1284
+ "categoricalHyperParameterRanges":{"shape":"CategoricalHyperParameterRanges"}
1285
+ }
1286
+ },
1287
+ "HyperParameters":{
1288
+ "type":"map",
1289
+ "key":{"shape":"ParameterName"},
1290
+ "value":{"shape":"ParameterValue"},
1291
+ "max":100
1292
+ },
1293
+ "IntegerHyperParameterRange":{
1294
+ "type":"structure",
1295
+ "members":{
1296
+ "name":{"shape":"ParameterName"},
1297
+ "minValue":{"shape":"IntegerMinValue"},
1298
+ "maxValue":{"shape":"IntegerMaxValue"}
1299
+ }
1300
+ },
1301
+ "IntegerHyperParameterRanges":{
1302
+ "type":"list",
1303
+ "member":{"shape":"IntegerHyperParameterRange"},
1304
+ "max":100
1305
+ },
1306
+ "IntegerMaxValue":{
1307
+ "type":"integer",
1308
+ "max":1000000
1309
+ },
1310
+ "IntegerMinValue":{
1311
+ "type":"integer",
1312
+ "min":-1000000
1313
+ },
1314
+ "InvalidInputException":{
1315
+ "type":"structure",
1316
+ "members":{
1317
+ "message":{"shape":"ErrorMessage"}
1318
+ },
1319
+ "exception":true
1320
+ },
1321
+ "InvalidNextTokenException":{
1322
+ "type":"structure",
1323
+ "members":{
1324
+ "message":{"shape":"ErrorMessage"}
1325
+ },
1326
+ "exception":true
1327
+ },
1328
+ "KmsKeyArn":{"type":"string"},
1329
+ "LimitExceededException":{
1330
+ "type":"structure",
1331
+ "members":{
1332
+ "message":{"shape":"ErrorMessage"}
1333
+ },
1334
+ "exception":true
1335
+ },
1336
+ "ListCampaignsRequest":{
1337
+ "type":"structure",
1338
+ "members":{
1339
+ "solutionArn":{"shape":"Arn"},
1340
+ "nextToken":{"shape":"NextToken"},
1341
+ "maxResults":{"shape":"MaxResults"}
1342
+ }
1343
+ },
1344
+ "ListCampaignsResponse":{
1345
+ "type":"structure",
1346
+ "members":{
1347
+ "campaigns":{"shape":"Campaigns"},
1348
+ "nextToken":{"shape":"NextToken"}
1349
+ }
1350
+ },
1351
+ "ListDatasetGroupsRequest":{
1352
+ "type":"structure",
1353
+ "members":{
1354
+ "nextToken":{"shape":"NextToken"},
1355
+ "maxResults":{"shape":"MaxResults"}
1356
+ }
1357
+ },
1358
+ "ListDatasetGroupsResponse":{
1359
+ "type":"structure",
1360
+ "members":{
1361
+ "datasetGroups":{"shape":"DatasetGroups"},
1362
+ "nextToken":{"shape":"NextToken"}
1363
+ }
1364
+ },
1365
+ "ListDatasetImportJobsRequest":{
1366
+ "type":"structure",
1367
+ "members":{
1368
+ "datasetArn":{"shape":"Arn"},
1369
+ "nextToken":{"shape":"NextToken"},
1370
+ "maxResults":{"shape":"MaxResults"}
1371
+ }
1372
+ },
1373
+ "ListDatasetImportJobsResponse":{
1374
+ "type":"structure",
1375
+ "members":{
1376
+ "datasetImportJobs":{"shape":"DatasetImportJobs"},
1377
+ "nextToken":{"shape":"NextToken"}
1378
+ }
1379
+ },
1380
+ "ListDatasetsRequest":{
1381
+ "type":"structure",
1382
+ "members":{
1383
+ "datasetGroupArn":{"shape":"Arn"},
1384
+ "nextToken":{"shape":"NextToken"},
1385
+ "maxResults":{"shape":"MaxResults"}
1386
+ }
1387
+ },
1388
+ "ListDatasetsResponse":{
1389
+ "type":"structure",
1390
+ "members":{
1391
+ "datasets":{"shape":"Datasets"},
1392
+ "nextToken":{"shape":"NextToken"}
1393
+ }
1394
+ },
1395
+ "ListEventTrackersRequest":{
1396
+ "type":"structure",
1397
+ "members":{
1398
+ "datasetGroupArn":{"shape":"Arn"},
1399
+ "nextToken":{"shape":"NextToken"},
1400
+ "maxResults":{"shape":"MaxResults"}
1401
+ }
1402
+ },
1403
+ "ListEventTrackersResponse":{
1404
+ "type":"structure",
1405
+ "members":{
1406
+ "eventTrackers":{"shape":"EventTrackers"},
1407
+ "nextToken":{"shape":"NextToken"}
1408
+ }
1409
+ },
1410
+ "ListRecipesRequest":{
1411
+ "type":"structure",
1412
+ "members":{
1413
+ "recipeProvider":{"shape":"RecipeProvider"},
1414
+ "nextToken":{"shape":"NextToken"},
1415
+ "maxResults":{"shape":"MaxResults"}
1416
+ }
1417
+ },
1418
+ "ListRecipesResponse":{
1419
+ "type":"structure",
1420
+ "members":{
1421
+ "recipes":{"shape":"Recipes"},
1422
+ "nextToken":{"shape":"NextToken"}
1423
+ }
1424
+ },
1425
+ "ListSchemasRequest":{
1426
+ "type":"structure",
1427
+ "members":{
1428
+ "nextToken":{"shape":"NextToken"},
1429
+ "maxResults":{"shape":"MaxResults"}
1430
+ }
1431
+ },
1432
+ "ListSchemasResponse":{
1433
+ "type":"structure",
1434
+ "members":{
1435
+ "schemas":{"shape":"Schemas"},
1436
+ "nextToken":{"shape":"NextToken"}
1437
+ }
1438
+ },
1439
+ "ListSolutionVersionsRequest":{
1440
+ "type":"structure",
1441
+ "members":{
1442
+ "solutionArn":{"shape":"Arn"},
1443
+ "nextToken":{"shape":"NextToken"},
1444
+ "maxResults":{"shape":"MaxResults"}
1445
+ }
1446
+ },
1447
+ "ListSolutionVersionsResponse":{
1448
+ "type":"structure",
1449
+ "members":{
1450
+ "solutionVersions":{"shape":"SolutionVersions"},
1451
+ "nextToken":{"shape":"NextToken"}
1452
+ }
1453
+ },
1454
+ "ListSolutionsRequest":{
1455
+ "type":"structure",
1456
+ "members":{
1457
+ "datasetGroupArn":{"shape":"Arn"},
1458
+ "nextToken":{"shape":"NextToken"},
1459
+ "maxResults":{"shape":"MaxResults"}
1460
+ }
1461
+ },
1462
+ "ListSolutionsResponse":{
1463
+ "type":"structure",
1464
+ "members":{
1465
+ "solutions":{"shape":"Solutions"},
1466
+ "nextToken":{"shape":"NextToken"}
1467
+ }
1468
+ },
1469
+ "MaxResults":{
1470
+ "type":"integer",
1471
+ "max":100,
1472
+ "min":1
1473
+ },
1474
+ "MetricName":{
1475
+ "type":"string",
1476
+ "max":256
1477
+ },
1478
+ "MetricRegex":{
1479
+ "type":"string",
1480
+ "max":256
1481
+ },
1482
+ "MetricValue":{"type":"double"},
1483
+ "Metrics":{
1484
+ "type":"map",
1485
+ "key":{"shape":"MetricName"},
1486
+ "value":{"shape":"MetricValue"},
1487
+ "max":100
1488
+ },
1489
+ "Name":{
1490
+ "type":"string",
1491
+ "max":63,
1492
+ "min":1,
1493
+ "pattern":"^[a-zA-Z0-9][a-zA-Z0-9\\-_]*"
1494
+ },
1495
+ "NextToken":{
1496
+ "type":"string",
1497
+ "max":1300
1498
+ },
1499
+ "ParameterName":{
1500
+ "type":"string",
1501
+ "max":256
1502
+ },
1503
+ "ParameterValue":{
1504
+ "type":"string",
1505
+ "max":1000
1506
+ },
1507
+ "PerformAutoML":{"type":"boolean"},
1508
+ "PerformHPO":{"type":"boolean"},
1509
+ "Recipe":{
1510
+ "type":"structure",
1511
+ "members":{
1512
+ "name":{"shape":"Name"},
1513
+ "recipeArn":{"shape":"Arn"},
1514
+ "algorithmArn":{"shape":"Arn"},
1515
+ "featureTransformationArn":{"shape":"Arn"},
1516
+ "status":{"shape":"Status"},
1517
+ "description":{"shape":"Description"},
1518
+ "creationDateTime":{"shape":"Date"},
1519
+ "recipeType":{"shape":"RecipeType"},
1520
+ "lastUpdatedDateTime":{"shape":"Date"}
1521
+ }
1522
+ },
1523
+ "RecipeProvider":{
1524
+ "type":"string",
1525
+ "enum":["SERVICE"]
1526
+ },
1527
+ "RecipeSummary":{
1528
+ "type":"structure",
1529
+ "members":{
1530
+ "name":{"shape":"Name"},
1531
+ "recipeArn":{"shape":"Arn"},
1532
+ "status":{"shape":"Status"},
1533
+ "creationDateTime":{"shape":"Date"},
1534
+ "lastUpdatedDateTime":{"shape":"Date"}
1535
+ }
1536
+ },
1537
+ "RecipeType":{
1538
+ "type":"string",
1539
+ "max":256
1540
+ },
1541
+ "Recipes":{
1542
+ "type":"list",
1543
+ "member":{"shape":"RecipeSummary"},
1544
+ "max":100
1545
+ },
1546
+ "ResourceAlreadyExistsException":{
1547
+ "type":"structure",
1548
+ "members":{
1549
+ "message":{"shape":"ErrorMessage"}
1550
+ },
1551
+ "exception":true
1552
+ },
1553
+ "ResourceConfig":{
1554
+ "type":"map",
1555
+ "key":{"shape":"ParameterName"},
1556
+ "value":{"shape":"ParameterValue"},
1557
+ "max":100
1558
+ },
1559
+ "ResourceInUseException":{
1560
+ "type":"structure",
1561
+ "members":{
1562
+ "message":{"shape":"ErrorMessage"}
1563
+ },
1564
+ "exception":true
1565
+ },
1566
+ "ResourceNotFoundException":{
1567
+ "type":"structure",
1568
+ "members":{
1569
+ "message":{"shape":"ErrorMessage"}
1570
+ },
1571
+ "exception":true
1572
+ },
1573
+ "RoleArn":{
1574
+ "type":"string",
1575
+ "max":256,
1576
+ "pattern":"arn:([a-z\\d-]+):iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+"
1577
+ },
1578
+ "S3Location":{
1579
+ "type":"string",
1580
+ "max":256
1581
+ },
1582
+ "Schemas":{
1583
+ "type":"list",
1584
+ "member":{"shape":"DatasetSchemaSummary"},
1585
+ "max":100
1586
+ },
1587
+ "Solution":{
1588
+ "type":"structure",
1589
+ "members":{
1590
+ "name":{"shape":"Name"},
1591
+ "solutionArn":{"shape":"Arn"},
1592
+ "performHPO":{"shape":"PerformHPO"},
1593
+ "performAutoML":{"shape":"PerformAutoML"},
1594
+ "recipeArn":{"shape":"Arn"},
1595
+ "datasetGroupArn":{"shape":"Arn"},
1596
+ "eventType":{"shape":"EventType"},
1597
+ "solutionConfig":{"shape":"SolutionConfig"},
1598
+ "autoMLResult":{"shape":"AutoMLResult"},
1599
+ "status":{"shape":"Status"},
1600
+ "creationDateTime":{"shape":"Date"},
1601
+ "lastUpdatedDateTime":{"shape":"Date"},
1602
+ "latestSolutionVersion":{"shape":"SolutionVersionSummary"}
1603
+ }
1604
+ },
1605
+ "SolutionConfig":{
1606
+ "type":"structure",
1607
+ "members":{
1608
+ "eventValueThreshold":{"shape":"EventValueThreshold"},
1609
+ "hpoConfig":{"shape":"HPOConfig"},
1610
+ "algorithmHyperParameters":{"shape":"HyperParameters"},
1611
+ "featureTransformationParameters":{"shape":"FeatureTransformationParameters"},
1612
+ "autoMLConfig":{"shape":"AutoMLConfig"}
1613
+ }
1614
+ },
1615
+ "SolutionSummary":{
1616
+ "type":"structure",
1617
+ "members":{
1618
+ "name":{"shape":"Name"},
1619
+ "solutionArn":{"shape":"Arn"},
1620
+ "status":{"shape":"Status"},
1621
+ "creationDateTime":{"shape":"Date"},
1622
+ "lastUpdatedDateTime":{"shape":"Date"}
1623
+ }
1624
+ },
1625
+ "SolutionVersion":{
1626
+ "type":"structure",
1627
+ "members":{
1628
+ "solutionVersionArn":{"shape":"Arn"},
1629
+ "solutionArn":{"shape":"Arn"},
1630
+ "performHPO":{"shape":"PerformHPO"},
1631
+ "performAutoML":{"shape":"PerformAutoML"},
1632
+ "recipeArn":{"shape":"Arn"},
1633
+ "eventType":{"shape":"EventType"},
1634
+ "datasetGroupArn":{"shape":"Arn"},
1635
+ "solutionConfig":{"shape":"SolutionConfig"},
1636
+ "status":{"shape":"Status"},
1637
+ "failureReason":{"shape":"FailureReason"},
1638
+ "creationDateTime":{"shape":"Date"},
1639
+ "lastUpdatedDateTime":{"shape":"Date"}
1640
+ }
1641
+ },
1642
+ "SolutionVersionSummary":{
1643
+ "type":"structure",
1644
+ "members":{
1645
+ "solutionVersionArn":{"shape":"Arn"},
1646
+ "status":{"shape":"Status"},
1647
+ "creationDateTime":{"shape":"Date"},
1648
+ "lastUpdatedDateTime":{"shape":"Date"},
1649
+ "failureReason":{"shape":"FailureReason"}
1650
+ }
1651
+ },
1652
+ "SolutionVersions":{
1653
+ "type":"list",
1654
+ "member":{"shape":"SolutionVersionSummary"},
1655
+ "max":100
1656
+ },
1657
+ "Solutions":{
1658
+ "type":"list",
1659
+ "member":{"shape":"SolutionSummary"},
1660
+ "max":100
1661
+ },
1662
+ "Status":{
1663
+ "type":"string",
1664
+ "max":256
1665
+ },
1666
+ "TrackingId":{
1667
+ "type":"string",
1668
+ "max":256
1669
+ },
1670
+ "TrainingInputMode":{
1671
+ "type":"string",
1672
+ "max":256
1673
+ },
1674
+ "TransactionsPerSecond":{
1675
+ "type":"integer",
1676
+ "min":1
1677
+ },
1678
+ "Tunable":{"type":"boolean"},
1679
+ "UpdateCampaignRequest":{
1680
+ "type":"structure",
1681
+ "required":["campaignArn"],
1682
+ "members":{
1683
+ "campaignArn":{"shape":"Arn"},
1684
+ "solutionVersionArn":{"shape":"Arn"},
1685
+ "minProvisionedTPS":{"shape":"TransactionsPerSecond"}
1686
+ }
1687
+ },
1688
+ "UpdateCampaignResponse":{
1689
+ "type":"structure",
1690
+ "members":{
1691
+ "campaignArn":{"shape":"Arn"}
1692
+ }
1693
+ }
1694
+ }
1695
+ }