aws-sdk-core 2.11.89 → 2.11.90
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/apis/comprehend/2017-11-27/api-2.json +136 -4
- data/apis/polly/2016-06-10/api-2.json +218 -0
- data/apis/polly/2016-06-10/paginators-1.json +5 -0
- data/apis/polly/2016-06-10/smoke.json +11 -0
- data/apis/sagemaker/2017-07-24/api-2.json +319 -0
- data/apis/sagemaker/2017-07-24/paginators-1.json +5 -0
- data/apis/snowball/2016-06-30/api-2.json +76 -6
- data/apis/snowball/2016-06-30/smoke.json +11 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da85305b1132cd3b8cfed102ecef22cbb54e0186
|
4
|
+
data.tar.gz: 18517656300710c127270f454249e58efd01dc97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61eb0cf1835ec36d9d2b8200388e7adf91622f37dd8e5e49c519646db3833304532a12b42a09bb99fe8f1cc54627052248daa7fe1a0661373a196c17f7491048
|
7
|
+
data.tar.gz: d51247ad769a78d60db6291ba9628737d51268db040e251cff84cdfe7ad350edbb22618fba250cebc45059e1af44fff0f91e129e98d69f57dee08f010767e579
|
@@ -76,6 +76,22 @@
|
|
76
76
|
{"shape":"InternalServerException"}
|
77
77
|
]
|
78
78
|
},
|
79
|
+
"BatchDetectSyntax":{
|
80
|
+
"name":"BatchDetectSyntax",
|
81
|
+
"http":{
|
82
|
+
"method":"POST",
|
83
|
+
"requestUri":"/"
|
84
|
+
},
|
85
|
+
"input":{"shape":"BatchDetectSyntaxRequest"},
|
86
|
+
"output":{"shape":"BatchDetectSyntaxResponse"},
|
87
|
+
"errors":[
|
88
|
+
{"shape":"InvalidRequestException"},
|
89
|
+
{"shape":"TextSizeLimitExceededException"},
|
90
|
+
{"shape":"UnsupportedLanguageException"},
|
91
|
+
{"shape":"BatchSizeLimitExceededException"},
|
92
|
+
{"shape":"InternalServerException"}
|
93
|
+
]
|
94
|
+
},
|
79
95
|
"DescribeDominantLanguageDetectionJob":{
|
80
96
|
"name":"DescribeDominantLanguageDetectionJob",
|
81
97
|
"http":{
|
@@ -210,6 +226,21 @@
|
|
210
226
|
{"shape":"InternalServerException"}
|
211
227
|
]
|
212
228
|
},
|
229
|
+
"DetectSyntax":{
|
230
|
+
"name":"DetectSyntax",
|
231
|
+
"http":{
|
232
|
+
"method":"POST",
|
233
|
+
"requestUri":"/"
|
234
|
+
},
|
235
|
+
"input":{"shape":"DetectSyntaxRequest"},
|
236
|
+
"output":{"shape":"DetectSyntaxResponse"},
|
237
|
+
"errors":[
|
238
|
+
{"shape":"InvalidRequestException"},
|
239
|
+
{"shape":"TextSizeLimitExceededException"},
|
240
|
+
{"shape":"UnsupportedLanguageException"},
|
241
|
+
{"shape":"InternalServerException"}
|
242
|
+
]
|
243
|
+
},
|
213
244
|
"ListDominantLanguageDetectionJobs":{
|
214
245
|
"name":"ListDominantLanguageDetectionJobs",
|
215
246
|
"http":{
|
@@ -527,6 +558,35 @@
|
|
527
558
|
"ErrorList":{"shape":"BatchItemErrorList"}
|
528
559
|
}
|
529
560
|
},
|
561
|
+
"BatchDetectSyntaxItemResult":{
|
562
|
+
"type":"structure",
|
563
|
+
"members":{
|
564
|
+
"Index":{"shape":"Integer"},
|
565
|
+
"SyntaxTokens":{"shape":"ListOfSyntaxTokens"}
|
566
|
+
}
|
567
|
+
},
|
568
|
+
"BatchDetectSyntaxRequest":{
|
569
|
+
"type":"structure",
|
570
|
+
"required":[
|
571
|
+
"TextList",
|
572
|
+
"LanguageCode"
|
573
|
+
],
|
574
|
+
"members":{
|
575
|
+
"TextList":{"shape":"StringList"},
|
576
|
+
"LanguageCode":{"shape":"SyntaxLanguageCode"}
|
577
|
+
}
|
578
|
+
},
|
579
|
+
"BatchDetectSyntaxResponse":{
|
580
|
+
"type":"structure",
|
581
|
+
"required":[
|
582
|
+
"ResultList",
|
583
|
+
"ErrorList"
|
584
|
+
],
|
585
|
+
"members":{
|
586
|
+
"ResultList":{"shape":"ListOfDetectSyntaxResult"},
|
587
|
+
"ErrorList":{"shape":"BatchItemErrorList"}
|
588
|
+
}
|
589
|
+
},
|
530
590
|
"BatchItemError":{
|
531
591
|
"type":"structure",
|
532
592
|
"members":{
|
@@ -682,6 +742,23 @@
|
|
682
742
|
"SentimentScore":{"shape":"SentimentScore"}
|
683
743
|
}
|
684
744
|
},
|
745
|
+
"DetectSyntaxRequest":{
|
746
|
+
"type":"structure",
|
747
|
+
"required":[
|
748
|
+
"Text",
|
749
|
+
"LanguageCode"
|
750
|
+
],
|
751
|
+
"members":{
|
752
|
+
"Text":{"shape":"String"},
|
753
|
+
"LanguageCode":{"shape":"SyntaxLanguageCode"}
|
754
|
+
}
|
755
|
+
},
|
756
|
+
"DetectSyntaxResponse":{
|
757
|
+
"type":"structure",
|
758
|
+
"members":{
|
759
|
+
"SyntaxTokens":{"shape":"ListOfSyntaxTokens"}
|
760
|
+
}
|
761
|
+
},
|
685
762
|
"DominantLanguage":{
|
686
763
|
"type":"structure",
|
687
764
|
"members":{
|
@@ -708,7 +785,8 @@
|
|
708
785
|
"SubmitTime":{"shape":"Timestamp"},
|
709
786
|
"EndTime":{"shape":"Timestamp"},
|
710
787
|
"InputDataConfig":{"shape":"InputDataConfig"},
|
711
|
-
"OutputDataConfig":{"shape":"OutputDataConfig"}
|
788
|
+
"OutputDataConfig":{"shape":"OutputDataConfig"},
|
789
|
+
"DataAccessRoleArn":{"shape":"IamRoleArn"}
|
712
790
|
}
|
713
791
|
},
|
714
792
|
"DominantLanguageDetectionJobPropertiesList":{
|
@@ -735,7 +813,8 @@
|
|
735
813
|
"EndTime":{"shape":"Timestamp"},
|
736
814
|
"InputDataConfig":{"shape":"InputDataConfig"},
|
737
815
|
"OutputDataConfig":{"shape":"OutputDataConfig"},
|
738
|
-
"LanguageCode":{"shape":"LanguageCode"}
|
816
|
+
"LanguageCode":{"shape":"LanguageCode"},
|
817
|
+
"DataAccessRoleArn":{"shape":"IamRoleArn"}
|
739
818
|
}
|
740
819
|
},
|
741
820
|
"EntitiesDetectionJobPropertiesList":{
|
@@ -867,7 +946,8 @@
|
|
867
946
|
"EndTime":{"shape":"Timestamp"},
|
868
947
|
"InputDataConfig":{"shape":"InputDataConfig"},
|
869
948
|
"OutputDataConfig":{"shape":"OutputDataConfig"},
|
870
|
-
"LanguageCode":{"shape":"LanguageCode"}
|
949
|
+
"LanguageCode":{"shape":"LanguageCode"},
|
950
|
+
"DataAccessRoleArn":{"shape":"IamRoleArn"}
|
871
951
|
}
|
872
952
|
},
|
873
953
|
"KeyPhrasesDetectionJobPropertiesList":{
|
@@ -942,6 +1022,10 @@
|
|
942
1022
|
"type":"list",
|
943
1023
|
"member":{"shape":"BatchDetectSentimentItemResult"}
|
944
1024
|
},
|
1025
|
+
"ListOfDetectSyntaxResult":{
|
1026
|
+
"type":"list",
|
1027
|
+
"member":{"shape":"BatchDetectSyntaxItemResult"}
|
1028
|
+
},
|
945
1029
|
"ListOfDominantLanguages":{
|
946
1030
|
"type":"list",
|
947
1031
|
"member":{"shape":"DominantLanguage"}
|
@@ -954,6 +1038,10 @@
|
|
954
1038
|
"type":"list",
|
955
1039
|
"member":{"shape":"KeyPhrase"}
|
956
1040
|
},
|
1041
|
+
"ListOfSyntaxTokens":{
|
1042
|
+
"type":"list",
|
1043
|
+
"member":{"shape":"SyntaxToken"}
|
1044
|
+
},
|
957
1045
|
"ListSentimentDetectionJobsRequest":{
|
958
1046
|
"type":"structure",
|
959
1047
|
"members":{
|
@@ -1001,6 +1089,35 @@
|
|
1001
1089
|
"S3Uri":{"shape":"S3Uri"}
|
1002
1090
|
}
|
1003
1091
|
},
|
1092
|
+
"PartOfSpeechTag":{
|
1093
|
+
"type":"structure",
|
1094
|
+
"members":{
|
1095
|
+
"Tag":{"shape":"PartOfSpeechTagType"},
|
1096
|
+
"Score":{"shape":"Float"}
|
1097
|
+
}
|
1098
|
+
},
|
1099
|
+
"PartOfSpeechTagType":{
|
1100
|
+
"type":"string",
|
1101
|
+
"enum":[
|
1102
|
+
"ADJ",
|
1103
|
+
"ADP",
|
1104
|
+
"ADV",
|
1105
|
+
"AUX",
|
1106
|
+
"CONJ",
|
1107
|
+
"DET",
|
1108
|
+
"INTJ",
|
1109
|
+
"NOUN",
|
1110
|
+
"NUM",
|
1111
|
+
"O",
|
1112
|
+
"PART",
|
1113
|
+
"PRON",
|
1114
|
+
"PROPN",
|
1115
|
+
"PUNCT",
|
1116
|
+
"SCONJ",
|
1117
|
+
"SYM",
|
1118
|
+
"VERB"
|
1119
|
+
]
|
1120
|
+
},
|
1004
1121
|
"S3Uri":{
|
1005
1122
|
"type":"string",
|
1006
1123
|
"max":1024,
|
@@ -1026,7 +1143,8 @@
|
|
1026
1143
|
"EndTime":{"shape":"Timestamp"},
|
1027
1144
|
"InputDataConfig":{"shape":"InputDataConfig"},
|
1028
1145
|
"OutputDataConfig":{"shape":"OutputDataConfig"},
|
1029
|
-
"LanguageCode":{"shape":"LanguageCode"}
|
1146
|
+
"LanguageCode":{"shape":"LanguageCode"},
|
1147
|
+
"DataAccessRoleArn":{"shape":"IamRoleArn"}
|
1030
1148
|
}
|
1031
1149
|
},
|
1032
1150
|
"SentimentDetectionJobPropertiesList":{
|
@@ -1247,6 +1365,20 @@
|
|
1247
1365
|
"type":"list",
|
1248
1366
|
"member":{"shape":"String"}
|
1249
1367
|
},
|
1368
|
+
"SyntaxLanguageCode":{
|
1369
|
+
"type":"string",
|
1370
|
+
"enum":["en"]
|
1371
|
+
},
|
1372
|
+
"SyntaxToken":{
|
1373
|
+
"type":"structure",
|
1374
|
+
"members":{
|
1375
|
+
"TokenId":{"shape":"Integer"},
|
1376
|
+
"Text":{"shape":"String"},
|
1377
|
+
"BeginOffset":{"shape":"Integer"},
|
1378
|
+
"EndOffset":{"shape":"Integer"},
|
1379
|
+
"PartOfSpeech":{"shape":"PartOfSpeechTag"}
|
1380
|
+
}
|
1381
|
+
},
|
1250
1382
|
"TextSizeLimitExceededException":{
|
1251
1383
|
"type":"structure",
|
1252
1384
|
"members":{
|
@@ -52,6 +52,21 @@
|
|
52
52
|
{"shape":"ServiceFailureException"}
|
53
53
|
]
|
54
54
|
},
|
55
|
+
"GetSpeechSynthesisTask":{
|
56
|
+
"name":"GetSpeechSynthesisTask",
|
57
|
+
"http":{
|
58
|
+
"method":"GET",
|
59
|
+
"requestUri":"/v1/synthesisTasks/{TaskId}",
|
60
|
+
"responseCode":200
|
61
|
+
},
|
62
|
+
"input":{"shape":"GetSpeechSynthesisTaskInput"},
|
63
|
+
"output":{"shape":"GetSpeechSynthesisTaskOutput"},
|
64
|
+
"errors":[
|
65
|
+
{"shape":"InvalidTaskIdException"},
|
66
|
+
{"shape":"ServiceFailureException"},
|
67
|
+
{"shape":"SynthesisTaskNotFoundException"}
|
68
|
+
]
|
69
|
+
},
|
55
70
|
"ListLexicons":{
|
56
71
|
"name":"ListLexicons",
|
57
72
|
"http":{
|
@@ -66,6 +81,20 @@
|
|
66
81
|
{"shape":"ServiceFailureException"}
|
67
82
|
]
|
68
83
|
},
|
84
|
+
"ListSpeechSynthesisTasks":{
|
85
|
+
"name":"ListSpeechSynthesisTasks",
|
86
|
+
"http":{
|
87
|
+
"method":"GET",
|
88
|
+
"requestUri":"/v1/synthesisTasks",
|
89
|
+
"responseCode":200
|
90
|
+
},
|
91
|
+
"input":{"shape":"ListSpeechSynthesisTasksInput"},
|
92
|
+
"output":{"shape":"ListSpeechSynthesisTasksOutput"},
|
93
|
+
"errors":[
|
94
|
+
{"shape":"InvalidNextTokenException"},
|
95
|
+
{"shape":"ServiceFailureException"}
|
96
|
+
]
|
97
|
+
},
|
69
98
|
"PutLexicon":{
|
70
99
|
"name":"PutLexicon",
|
71
100
|
"http":{
|
@@ -85,6 +114,28 @@
|
|
85
114
|
{"shape":"ServiceFailureException"}
|
86
115
|
]
|
87
116
|
},
|
117
|
+
"StartSpeechSynthesisTask":{
|
118
|
+
"name":"StartSpeechSynthesisTask",
|
119
|
+
"http":{
|
120
|
+
"method":"POST",
|
121
|
+
"requestUri":"/v1/synthesisTasks",
|
122
|
+
"responseCode":200
|
123
|
+
},
|
124
|
+
"input":{"shape":"StartSpeechSynthesisTaskInput"},
|
125
|
+
"output":{"shape":"StartSpeechSynthesisTaskOutput"},
|
126
|
+
"errors":[
|
127
|
+
{"shape":"TextLengthExceededException"},
|
128
|
+
{"shape":"InvalidS3BucketException"},
|
129
|
+
{"shape":"InvalidS3KeyException"},
|
130
|
+
{"shape":"InvalidSampleRateException"},
|
131
|
+
{"shape":"InvalidSnsTopicArnException"},
|
132
|
+
{"shape":"InvalidSsmlException"},
|
133
|
+
{"shape":"LexiconNotFoundException"},
|
134
|
+
{"shape":"ServiceFailureException"},
|
135
|
+
{"shape":"MarksNotSupportedForFormatException"},
|
136
|
+
{"shape":"SsmlMarksNotSupportedForTextTypeException"}
|
137
|
+
]
|
138
|
+
},
|
88
139
|
"SynthesizeSpeech":{
|
89
140
|
"name":"SynthesizeSpeech",
|
90
141
|
"http":{
|
@@ -112,6 +163,7 @@
|
|
112
163
|
"streaming":true
|
113
164
|
},
|
114
165
|
"ContentType":{"type":"string"},
|
166
|
+
"DateTime":{"type":"timestamp"},
|
115
167
|
"DeleteLexiconInput":{
|
116
168
|
"type":"structure",
|
117
169
|
"required":["Name"],
|
@@ -176,6 +228,23 @@
|
|
176
228
|
"LexiconAttributes":{"shape":"LexiconAttributes"}
|
177
229
|
}
|
178
230
|
},
|
231
|
+
"GetSpeechSynthesisTaskInput":{
|
232
|
+
"type":"structure",
|
233
|
+
"required":["TaskId"],
|
234
|
+
"members":{
|
235
|
+
"TaskId":{
|
236
|
+
"shape":"TaskId",
|
237
|
+
"location":"uri",
|
238
|
+
"locationName":"TaskId"
|
239
|
+
}
|
240
|
+
}
|
241
|
+
},
|
242
|
+
"GetSpeechSynthesisTaskOutput":{
|
243
|
+
"type":"structure",
|
244
|
+
"members":{
|
245
|
+
"SynthesisTask":{"shape":"SynthesisTask"}
|
246
|
+
}
|
247
|
+
},
|
179
248
|
"InvalidLexiconException":{
|
180
249
|
"type":"structure",
|
181
250
|
"members":{
|
@@ -192,6 +261,22 @@
|
|
192
261
|
"error":{"httpStatusCode":400},
|
193
262
|
"exception":true
|
194
263
|
},
|
264
|
+
"InvalidS3BucketException":{
|
265
|
+
"type":"structure",
|
266
|
+
"members":{
|
267
|
+
"message":{"shape":"ErrorMessage"}
|
268
|
+
},
|
269
|
+
"error":{"httpStatusCode":400},
|
270
|
+
"exception":true
|
271
|
+
},
|
272
|
+
"InvalidS3KeyException":{
|
273
|
+
"type":"structure",
|
274
|
+
"members":{
|
275
|
+
"message":{"shape":"ErrorMessage"}
|
276
|
+
},
|
277
|
+
"error":{"httpStatusCode":400},
|
278
|
+
"exception":true
|
279
|
+
},
|
195
280
|
"InvalidSampleRateException":{
|
196
281
|
"type":"structure",
|
197
282
|
"members":{
|
@@ -200,6 +285,14 @@
|
|
200
285
|
"error":{"httpStatusCode":400},
|
201
286
|
"exception":true
|
202
287
|
},
|
288
|
+
"InvalidSnsTopicArnException":{
|
289
|
+
"type":"structure",
|
290
|
+
"members":{
|
291
|
+
"message":{"shape":"ErrorMessage"}
|
292
|
+
},
|
293
|
+
"error":{"httpStatusCode":400},
|
294
|
+
"exception":true
|
295
|
+
},
|
203
296
|
"InvalidSsmlException":{
|
204
297
|
"type":"structure",
|
205
298
|
"members":{
|
@@ -208,6 +301,14 @@
|
|
208
301
|
"error":{"httpStatusCode":400},
|
209
302
|
"exception":true
|
210
303
|
},
|
304
|
+
"InvalidTaskIdException":{
|
305
|
+
"type":"structure",
|
306
|
+
"members":{
|
307
|
+
"message":{"shape":"ErrorMessage"}
|
308
|
+
},
|
309
|
+
"error":{"httpStatusCode":400},
|
310
|
+
"exception":true
|
311
|
+
},
|
211
312
|
"LanguageCode":{
|
212
313
|
"type":"string",
|
213
314
|
"enum":[
|
@@ -315,6 +416,33 @@
|
|
315
416
|
"NextToken":{"shape":"NextToken"}
|
316
417
|
}
|
317
418
|
},
|
419
|
+
"ListSpeechSynthesisTasksInput":{
|
420
|
+
"type":"structure",
|
421
|
+
"members":{
|
422
|
+
"MaxResults":{
|
423
|
+
"shape":"MaxResults",
|
424
|
+
"location":"querystring",
|
425
|
+
"locationName":"MaxResults"
|
426
|
+
},
|
427
|
+
"NextToken":{
|
428
|
+
"shape":"NextToken",
|
429
|
+
"location":"querystring",
|
430
|
+
"locationName":"NextToken"
|
431
|
+
},
|
432
|
+
"Status":{
|
433
|
+
"shape":"TaskStatus",
|
434
|
+
"location":"querystring",
|
435
|
+
"locationName":"Status"
|
436
|
+
}
|
437
|
+
}
|
438
|
+
},
|
439
|
+
"ListSpeechSynthesisTasksOutput":{
|
440
|
+
"type":"structure",
|
441
|
+
"members":{
|
442
|
+
"NextToken":{"shape":"NextToken"},
|
443
|
+
"SynthesisTasks":{"shape":"SynthesisTasks"}
|
444
|
+
}
|
445
|
+
},
|
318
446
|
"MarksNotSupportedForFormatException":{
|
319
447
|
"type":"structure",
|
320
448
|
"members":{
|
@@ -339,6 +467,11 @@
|
|
339
467
|
"error":{"httpStatusCode":400},
|
340
468
|
"exception":true
|
341
469
|
},
|
470
|
+
"MaxResults":{
|
471
|
+
"type":"integer",
|
472
|
+
"max":100,
|
473
|
+
"min":1
|
474
|
+
},
|
342
475
|
"NextToken":{"type":"string"},
|
343
476
|
"OutputFormat":{
|
344
477
|
"type":"string",
|
@@ -349,6 +482,15 @@
|
|
349
482
|
"pcm"
|
350
483
|
]
|
351
484
|
},
|
485
|
+
"OutputS3BucketName":{
|
486
|
+
"type":"string",
|
487
|
+
"pattern":"^[a-z0-9][\\.\\-a-z0-9]{1,61}[a-z0-9]$"
|
488
|
+
},
|
489
|
+
"OutputS3KeyPrefix":{
|
490
|
+
"type":"string",
|
491
|
+
"pattern":"^[0-9a-zA-Z\\/\\!\\-_\\.\\*\\'\\(\\)]{0,800}$"
|
492
|
+
},
|
493
|
+
"OutputUri":{"type":"string"},
|
352
494
|
"PutLexiconInput":{
|
353
495
|
"type":"structure",
|
354
496
|
"required":[
|
@@ -381,6 +523,10 @@
|
|
381
523
|
"fault":true
|
382
524
|
},
|
383
525
|
"Size":{"type":"integer"},
|
526
|
+
"SnsTopicArn":{
|
527
|
+
"type":"string",
|
528
|
+
"pattern":"^arn:aws(-(cn|iso(-b)?|us-gov))?:sns:.*:\\w{12}:.+$"
|
529
|
+
},
|
384
530
|
"SpeechMarkType":{
|
385
531
|
"type":"string",
|
386
532
|
"enum":[
|
@@ -403,6 +549,63 @@
|
|
403
549
|
"error":{"httpStatusCode":400},
|
404
550
|
"exception":true
|
405
551
|
},
|
552
|
+
"StartSpeechSynthesisTaskInput":{
|
553
|
+
"type":"structure",
|
554
|
+
"required":[
|
555
|
+
"OutputFormat",
|
556
|
+
"OutputS3BucketName",
|
557
|
+
"Text",
|
558
|
+
"VoiceId"
|
559
|
+
],
|
560
|
+
"members":{
|
561
|
+
"LexiconNames":{"shape":"LexiconNameList"},
|
562
|
+
"OutputFormat":{"shape":"OutputFormat"},
|
563
|
+
"OutputS3BucketName":{"shape":"OutputS3BucketName"},
|
564
|
+
"OutputS3KeyPrefix":{"shape":"OutputS3KeyPrefix"},
|
565
|
+
"SampleRate":{"shape":"SampleRate"},
|
566
|
+
"SnsTopicArn":{"shape":"SnsTopicArn"},
|
567
|
+
"SpeechMarkTypes":{"shape":"SpeechMarkTypeList"},
|
568
|
+
"Text":{"shape":"Text"},
|
569
|
+
"TextType":{"shape":"TextType"},
|
570
|
+
"VoiceId":{"shape":"VoiceId"}
|
571
|
+
}
|
572
|
+
},
|
573
|
+
"StartSpeechSynthesisTaskOutput":{
|
574
|
+
"type":"structure",
|
575
|
+
"members":{
|
576
|
+
"SynthesisTask":{"shape":"SynthesisTask"}
|
577
|
+
}
|
578
|
+
},
|
579
|
+
"SynthesisTask":{
|
580
|
+
"type":"structure",
|
581
|
+
"members":{
|
582
|
+
"TaskId":{"shape":"TaskId"},
|
583
|
+
"TaskStatus":{"shape":"TaskStatus"},
|
584
|
+
"TaskStatusReason":{"shape":"TaskStatusReason"},
|
585
|
+
"OutputUri":{"shape":"OutputUri"},
|
586
|
+
"CreationTime":{"shape":"DateTime"},
|
587
|
+
"RequestCharacters":{"shape":"RequestCharacters"},
|
588
|
+
"SnsTopicArn":{"shape":"SnsTopicArn"},
|
589
|
+
"LexiconNames":{"shape":"LexiconNameList"},
|
590
|
+
"OutputFormat":{"shape":"OutputFormat"},
|
591
|
+
"SampleRate":{"shape":"SampleRate"},
|
592
|
+
"SpeechMarkTypes":{"shape":"SpeechMarkTypeList"},
|
593
|
+
"TextType":{"shape":"TextType"},
|
594
|
+
"VoiceId":{"shape":"VoiceId"}
|
595
|
+
}
|
596
|
+
},
|
597
|
+
"SynthesisTaskNotFoundException":{
|
598
|
+
"type":"structure",
|
599
|
+
"members":{
|
600
|
+
"message":{"shape":"ErrorMessage"}
|
601
|
+
},
|
602
|
+
"error":{"httpStatusCode":400},
|
603
|
+
"exception":true
|
604
|
+
},
|
605
|
+
"SynthesisTasks":{
|
606
|
+
"type":"list",
|
607
|
+
"member":{"shape":"SynthesisTask"}
|
608
|
+
},
|
406
609
|
"SynthesizeSpeechInput":{
|
407
610
|
"type":"structure",
|
408
611
|
"required":[
|
@@ -437,6 +640,21 @@
|
|
437
640
|
},
|
438
641
|
"payload":"AudioStream"
|
439
642
|
},
|
643
|
+
"TaskId":{
|
644
|
+
"type":"string",
|
645
|
+
"max":128,
|
646
|
+
"min":1
|
647
|
+
},
|
648
|
+
"TaskStatus":{
|
649
|
+
"type":"string",
|
650
|
+
"enum":[
|
651
|
+
"scheduled",
|
652
|
+
"inProgress",
|
653
|
+
"completed",
|
654
|
+
"failed"
|
655
|
+
]
|
656
|
+
},
|
657
|
+
"TaskStatusReason":{"type":"string"},
|
440
658
|
"Text":{"type":"string"},
|
441
659
|
"TextLengthExceededException":{
|
442
660
|
"type":"structure",
|
@@ -118,6 +118,19 @@
|
|
118
118
|
{"shape":"ResourceLimitExceeded"}
|
119
119
|
]
|
120
120
|
},
|
121
|
+
"CreateTransformJob":{
|
122
|
+
"name":"CreateTransformJob",
|
123
|
+
"http":{
|
124
|
+
"method":"POST",
|
125
|
+
"requestUri":"/"
|
126
|
+
},
|
127
|
+
"input":{"shape":"CreateTransformJobRequest"},
|
128
|
+
"output":{"shape":"CreateTransformJobResponse"},
|
129
|
+
"errors":[
|
130
|
+
{"shape":"ResourceInUse"},
|
131
|
+
{"shape":"ResourceLimitExceeded"}
|
132
|
+
]
|
133
|
+
},
|
121
134
|
"DeleteEndpoint":{
|
122
135
|
"name":"DeleteEndpoint",
|
123
136
|
"http":{
|
@@ -236,6 +249,18 @@
|
|
236
249
|
{"shape":"ResourceNotFound"}
|
237
250
|
]
|
238
251
|
},
|
252
|
+
"DescribeTransformJob":{
|
253
|
+
"name":"DescribeTransformJob",
|
254
|
+
"http":{
|
255
|
+
"method":"POST",
|
256
|
+
"requestUri":"/"
|
257
|
+
},
|
258
|
+
"input":{"shape":"DescribeTransformJobRequest"},
|
259
|
+
"output":{"shape":"DescribeTransformJobResponse"},
|
260
|
+
"errors":[
|
261
|
+
{"shape":"ResourceNotFound"}
|
262
|
+
]
|
263
|
+
},
|
239
264
|
"ListEndpointConfigs":{
|
240
265
|
"name":"ListEndpointConfigs",
|
241
266
|
"http":{
|
@@ -320,6 +345,15 @@
|
|
320
345
|
{"shape":"ResourceNotFound"}
|
321
346
|
]
|
322
347
|
},
|
348
|
+
"ListTransformJobs":{
|
349
|
+
"name":"ListTransformJobs",
|
350
|
+
"http":{
|
351
|
+
"method":"POST",
|
352
|
+
"requestUri":"/"
|
353
|
+
},
|
354
|
+
"input":{"shape":"ListTransformJobsRequest"},
|
355
|
+
"output":{"shape":"ListTransformJobsResponse"}
|
356
|
+
},
|
323
357
|
"StartNotebookInstance":{
|
324
358
|
"name":"StartNotebookInstance",
|
325
359
|
"http":{
|
@@ -361,6 +395,17 @@
|
|
361
395
|
{"shape":"ResourceNotFound"}
|
362
396
|
]
|
363
397
|
},
|
398
|
+
"StopTransformJob":{
|
399
|
+
"name":"StopTransformJob",
|
400
|
+
"http":{
|
401
|
+
"method":"POST",
|
402
|
+
"requestUri":"/"
|
403
|
+
},
|
404
|
+
"input":{"shape":"StopTransformJobRequest"},
|
405
|
+
"errors":[
|
406
|
+
{"shape":"ResourceNotFound"}
|
407
|
+
]
|
408
|
+
},
|
364
409
|
"UpdateEndpoint":{
|
365
410
|
"name":"UpdateEndpoint",
|
366
411
|
"http":{
|
@@ -411,6 +456,10 @@
|
|
411
456
|
}
|
412
457
|
},
|
413
458
|
"shapes":{
|
459
|
+
"Accept":{
|
460
|
+
"type":"string",
|
461
|
+
"max":256
|
462
|
+
},
|
414
463
|
"AddTagsInput":{
|
415
464
|
"type":"structure",
|
416
465
|
"required":[
|
@@ -443,6 +492,20 @@
|
|
443
492
|
"TrainingInputMode":{"shape":"TrainingInputMode"}
|
444
493
|
}
|
445
494
|
},
|
495
|
+
"AssemblyType":{
|
496
|
+
"type":"string",
|
497
|
+
"enum":[
|
498
|
+
"None",
|
499
|
+
"Line"
|
500
|
+
]
|
501
|
+
},
|
502
|
+
"BatchStrategy":{
|
503
|
+
"type":"string",
|
504
|
+
"enum":[
|
505
|
+
"MultiRecord",
|
506
|
+
"SingleRecord"
|
507
|
+
]
|
508
|
+
},
|
446
509
|
"CategoricalParameterRange":{
|
447
510
|
"type":"structure",
|
448
511
|
"required":[
|
@@ -692,6 +755,35 @@
|
|
692
755
|
"TrainingJobArn":{"shape":"TrainingJobArn"}
|
693
756
|
}
|
694
757
|
},
|
758
|
+
"CreateTransformJobRequest":{
|
759
|
+
"type":"structure",
|
760
|
+
"required":[
|
761
|
+
"TransformJobName",
|
762
|
+
"ModelName",
|
763
|
+
"TransformInput",
|
764
|
+
"TransformOutput",
|
765
|
+
"TransformResources"
|
766
|
+
],
|
767
|
+
"members":{
|
768
|
+
"TransformJobName":{"shape":"TransformJobName"},
|
769
|
+
"ModelName":{"shape":"ModelName"},
|
770
|
+
"MaxConcurrentTransforms":{"shape":"MaxConcurrentTransforms"},
|
771
|
+
"MaxPayloadInMB":{"shape":"MaxPayloadInMB"},
|
772
|
+
"BatchStrategy":{"shape":"BatchStrategy"},
|
773
|
+
"Environment":{"shape":"TransformEnvironmentMap"},
|
774
|
+
"TransformInput":{"shape":"TransformInput"},
|
775
|
+
"TransformOutput":{"shape":"TransformOutput"},
|
776
|
+
"TransformResources":{"shape":"TransformResources"},
|
777
|
+
"Tags":{"shape":"TagList"}
|
778
|
+
}
|
779
|
+
},
|
780
|
+
"CreateTransformJobResponse":{
|
781
|
+
"type":"structure",
|
782
|
+
"required":["TransformJobArn"],
|
783
|
+
"members":{
|
784
|
+
"TransformJobArn":{"shape":"TransformJobArn"}
|
785
|
+
}
|
786
|
+
},
|
695
787
|
"CreationTime":{"type":"timestamp"},
|
696
788
|
"DataSource":{
|
697
789
|
"type":"structure",
|
@@ -961,6 +1053,42 @@
|
|
961
1053
|
"LastModifiedTime":{"shape":"Timestamp"}
|
962
1054
|
}
|
963
1055
|
},
|
1056
|
+
"DescribeTransformJobRequest":{
|
1057
|
+
"type":"structure",
|
1058
|
+
"required":["TransformJobName"],
|
1059
|
+
"members":{
|
1060
|
+
"TransformJobName":{"shape":"TransformJobName"}
|
1061
|
+
}
|
1062
|
+
},
|
1063
|
+
"DescribeTransformJobResponse":{
|
1064
|
+
"type":"structure",
|
1065
|
+
"required":[
|
1066
|
+
"TransformJobName",
|
1067
|
+
"TransformJobArn",
|
1068
|
+
"TransformJobStatus",
|
1069
|
+
"ModelName",
|
1070
|
+
"TransformInput",
|
1071
|
+
"TransformResources",
|
1072
|
+
"CreationTime"
|
1073
|
+
],
|
1074
|
+
"members":{
|
1075
|
+
"TransformJobName":{"shape":"TransformJobName"},
|
1076
|
+
"TransformJobArn":{"shape":"TransformJobArn"},
|
1077
|
+
"TransformJobStatus":{"shape":"TransformJobStatus"},
|
1078
|
+
"FailureReason":{"shape":"FailureReason"},
|
1079
|
+
"ModelName":{"shape":"ModelName"},
|
1080
|
+
"MaxConcurrentTransforms":{"shape":"MaxConcurrentTransforms"},
|
1081
|
+
"MaxPayloadInMB":{"shape":"MaxPayloadInMB"},
|
1082
|
+
"BatchStrategy":{"shape":"BatchStrategy"},
|
1083
|
+
"Environment":{"shape":"TransformEnvironmentMap"},
|
1084
|
+
"TransformInput":{"shape":"TransformInput"},
|
1085
|
+
"TransformOutput":{"shape":"TransformOutput"},
|
1086
|
+
"TransformResources":{"shape":"TransformResources"},
|
1087
|
+
"CreationTime":{"shape":"Timestamp"},
|
1088
|
+
"TransformStartTime":{"shape":"Timestamp"},
|
1089
|
+
"TransformEndTime":{"shape":"Timestamp"}
|
1090
|
+
}
|
1091
|
+
},
|
964
1092
|
"DesiredWeightAndCapacity":{
|
965
1093
|
"type":"structure",
|
966
1094
|
"required":["VariantName"],
|
@@ -1520,6 +1648,36 @@
|
|
1520
1648
|
"NextToken":{"shape":"NextToken"}
|
1521
1649
|
}
|
1522
1650
|
},
|
1651
|
+
"ListTransformJobsRequest":{
|
1652
|
+
"type":"structure",
|
1653
|
+
"members":{
|
1654
|
+
"CreationTimeAfter":{"shape":"Timestamp"},
|
1655
|
+
"CreationTimeBefore":{"shape":"Timestamp"},
|
1656
|
+
"LastModifiedTimeAfter":{"shape":"Timestamp"},
|
1657
|
+
"LastModifiedTimeBefore":{"shape":"Timestamp"},
|
1658
|
+
"NameContains":{"shape":"NameContains"},
|
1659
|
+
"StatusEquals":{"shape":"TransformJobStatus"},
|
1660
|
+
"SortBy":{"shape":"SortBy"},
|
1661
|
+
"SortOrder":{"shape":"SortOrder"},
|
1662
|
+
"NextToken":{"shape":"NextToken"},
|
1663
|
+
"MaxResults":{
|
1664
|
+
"shape":"MaxResults",
|
1665
|
+
"box":true
|
1666
|
+
}
|
1667
|
+
}
|
1668
|
+
},
|
1669
|
+
"ListTransformJobsResponse":{
|
1670
|
+
"type":"structure",
|
1671
|
+
"required":["TransformJobSummaries"],
|
1672
|
+
"members":{
|
1673
|
+
"TransformJobSummaries":{"shape":"TransformJobSummaries"},
|
1674
|
+
"NextToken":{"shape":"NextToken"}
|
1675
|
+
}
|
1676
|
+
},
|
1677
|
+
"MaxConcurrentTransforms":{
|
1678
|
+
"type":"integer",
|
1679
|
+
"min":0
|
1680
|
+
},
|
1523
1681
|
"MaxNumberOfTrainingJobs":{
|
1524
1682
|
"type":"integer",
|
1525
1683
|
"min":1
|
@@ -1528,6 +1686,10 @@
|
|
1528
1686
|
"type":"integer",
|
1529
1687
|
"min":1
|
1530
1688
|
},
|
1689
|
+
"MaxPayloadInMB":{
|
1690
|
+
"type":"integer",
|
1691
|
+
"min":0
|
1692
|
+
},
|
1531
1693
|
"MaxResults":{
|
1532
1694
|
"type":"integer",
|
1533
1695
|
"max":100,
|
@@ -2016,6 +2178,14 @@
|
|
2016
2178
|
"Descending"
|
2017
2179
|
]
|
2018
2180
|
},
|
2181
|
+
"SplitType":{
|
2182
|
+
"type":"string",
|
2183
|
+
"enum":[
|
2184
|
+
"None",
|
2185
|
+
"Line",
|
2186
|
+
"RecordIO"
|
2187
|
+
]
|
2188
|
+
},
|
2019
2189
|
"StartNotebookInstanceInput":{
|
2020
2190
|
"type":"structure",
|
2021
2191
|
"required":["NotebookInstanceName"],
|
@@ -2044,6 +2214,13 @@
|
|
2044
2214
|
"TrainingJobName":{"shape":"TrainingJobName"}
|
2045
2215
|
}
|
2046
2216
|
},
|
2217
|
+
"StopTransformJobRequest":{
|
2218
|
+
"type":"structure",
|
2219
|
+
"required":["TransformJobName"],
|
2220
|
+
"members":{
|
2221
|
+
"TransformJobName":{"shape":"TransformJobName"}
|
2222
|
+
}
|
2223
|
+
},
|
2047
2224
|
"StoppingCondition":{
|
2048
2225
|
"type":"structure",
|
2049
2226
|
"members":{
|
@@ -2207,6 +2384,148 @@
|
|
2207
2384
|
"TrainingJobStatus":{"shape":"TrainingJobStatus"}
|
2208
2385
|
}
|
2209
2386
|
},
|
2387
|
+
"TransformDataSource":{
|
2388
|
+
"type":"structure",
|
2389
|
+
"required":["S3DataSource"],
|
2390
|
+
"members":{
|
2391
|
+
"S3DataSource":{"shape":"TransformS3DataSource"}
|
2392
|
+
}
|
2393
|
+
},
|
2394
|
+
"TransformEnvironmentKey":{
|
2395
|
+
"type":"string",
|
2396
|
+
"max":1024,
|
2397
|
+
"pattern":"[a-zA-Z_][a-zA-Z0-9_]*"
|
2398
|
+
},
|
2399
|
+
"TransformEnvironmentMap":{
|
2400
|
+
"type":"map",
|
2401
|
+
"key":{"shape":"TransformEnvironmentKey"},
|
2402
|
+
"value":{"shape":"TransformEnvironmentValue"},
|
2403
|
+
"max":16
|
2404
|
+
},
|
2405
|
+
"TransformEnvironmentValue":{
|
2406
|
+
"type":"string",
|
2407
|
+
"max":10240
|
2408
|
+
},
|
2409
|
+
"TransformInput":{
|
2410
|
+
"type":"structure",
|
2411
|
+
"required":["DataSource"],
|
2412
|
+
"members":{
|
2413
|
+
"DataSource":{"shape":"TransformDataSource"},
|
2414
|
+
"ContentType":{"shape":"ContentType"},
|
2415
|
+
"CompressionType":{"shape":"CompressionType"},
|
2416
|
+
"SplitType":{"shape":"SplitType"}
|
2417
|
+
}
|
2418
|
+
},
|
2419
|
+
"TransformInstanceCount":{
|
2420
|
+
"type":"integer",
|
2421
|
+
"min":1
|
2422
|
+
},
|
2423
|
+
"TransformInstanceType":{
|
2424
|
+
"type":"string",
|
2425
|
+
"enum":[
|
2426
|
+
"ml.m4.xlarge",
|
2427
|
+
"ml.m4.2xlarge",
|
2428
|
+
"ml.m4.4xlarge",
|
2429
|
+
"ml.m4.10xlarge",
|
2430
|
+
"ml.m4.16xlarge",
|
2431
|
+
"ml.c4.xlarge",
|
2432
|
+
"ml.c4.2xlarge",
|
2433
|
+
"ml.c4.4xlarge",
|
2434
|
+
"ml.c4.8xlarge",
|
2435
|
+
"ml.p2.xlarge",
|
2436
|
+
"ml.p2.8xlarge",
|
2437
|
+
"ml.p2.16xlarge",
|
2438
|
+
"ml.p3.2xlarge",
|
2439
|
+
"ml.p3.8xlarge",
|
2440
|
+
"ml.p3.16xlarge",
|
2441
|
+
"ml.c5.xlarge",
|
2442
|
+
"ml.c5.2xlarge",
|
2443
|
+
"ml.c5.4xlarge",
|
2444
|
+
"ml.c5.9xlarge",
|
2445
|
+
"ml.c5.18xlarge",
|
2446
|
+
"ml.m5.large",
|
2447
|
+
"ml.m5.xlarge",
|
2448
|
+
"ml.m5.2xlarge",
|
2449
|
+
"ml.m5.4xlarge",
|
2450
|
+
"ml.m5.12xlarge",
|
2451
|
+
"ml.m5.24xlarge"
|
2452
|
+
]
|
2453
|
+
},
|
2454
|
+
"TransformJobArn":{
|
2455
|
+
"type":"string",
|
2456
|
+
"max":256,
|
2457
|
+
"pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:transform-job/.*"
|
2458
|
+
},
|
2459
|
+
"TransformJobName":{
|
2460
|
+
"type":"string",
|
2461
|
+
"max":63,
|
2462
|
+
"min":1,
|
2463
|
+
"pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*"
|
2464
|
+
},
|
2465
|
+
"TransformJobStatus":{
|
2466
|
+
"type":"string",
|
2467
|
+
"enum":[
|
2468
|
+
"InProgress",
|
2469
|
+
"Completed",
|
2470
|
+
"Failed",
|
2471
|
+
"Stopping",
|
2472
|
+
"Stopped"
|
2473
|
+
]
|
2474
|
+
},
|
2475
|
+
"TransformJobSummaries":{
|
2476
|
+
"type":"list",
|
2477
|
+
"member":{"shape":"TransformJobSummary"}
|
2478
|
+
},
|
2479
|
+
"TransformJobSummary":{
|
2480
|
+
"type":"structure",
|
2481
|
+
"required":[
|
2482
|
+
"TransformJobName",
|
2483
|
+
"TransformJobArn",
|
2484
|
+
"CreationTime",
|
2485
|
+
"TransformJobStatus"
|
2486
|
+
],
|
2487
|
+
"members":{
|
2488
|
+
"TransformJobName":{"shape":"TransformJobName"},
|
2489
|
+
"TransformJobArn":{"shape":"TransformJobArn"},
|
2490
|
+
"CreationTime":{"shape":"Timestamp"},
|
2491
|
+
"TransformEndTime":{"shape":"Timestamp"},
|
2492
|
+
"LastModifiedTime":{"shape":"Timestamp"},
|
2493
|
+
"TransformJobStatus":{"shape":"TransformJobStatus"},
|
2494
|
+
"FailureReason":{"shape":"FailureReason"}
|
2495
|
+
}
|
2496
|
+
},
|
2497
|
+
"TransformOutput":{
|
2498
|
+
"type":"structure",
|
2499
|
+
"required":["S3OutputPath"],
|
2500
|
+
"members":{
|
2501
|
+
"S3OutputPath":{"shape":"S3Uri"},
|
2502
|
+
"Accept":{"shape":"Accept"},
|
2503
|
+
"AssembleWith":{"shape":"AssemblyType"},
|
2504
|
+
"KmsKeyId":{"shape":"KmsKeyId"}
|
2505
|
+
}
|
2506
|
+
},
|
2507
|
+
"TransformResources":{
|
2508
|
+
"type":"structure",
|
2509
|
+
"required":[
|
2510
|
+
"InstanceType",
|
2511
|
+
"InstanceCount"
|
2512
|
+
],
|
2513
|
+
"members":{
|
2514
|
+
"InstanceType":{"shape":"TransformInstanceType"},
|
2515
|
+
"InstanceCount":{"shape":"TransformInstanceCount"}
|
2516
|
+
}
|
2517
|
+
},
|
2518
|
+
"TransformS3DataSource":{
|
2519
|
+
"type":"structure",
|
2520
|
+
"required":[
|
2521
|
+
"S3DataType",
|
2522
|
+
"S3Uri"
|
2523
|
+
],
|
2524
|
+
"members":{
|
2525
|
+
"S3DataType":{"shape":"S3DataType"},
|
2526
|
+
"S3Uri":{"shape":"S3Uri"}
|
2527
|
+
}
|
2528
|
+
},
|
2210
2529
|
"UpdateEndpointInput":{
|
2211
2530
|
"type":"structure",
|
2212
2531
|
"required":[
|
@@ -7,6 +7,7 @@
|
|
7
7
|
"protocol":"json",
|
8
8
|
"serviceAbbreviation":"Amazon Snowball",
|
9
9
|
"serviceFullName":"Amazon Import/Export Snowball",
|
10
|
+
"serviceId":"Snowball",
|
10
11
|
"signatureVersion":"v4",
|
11
12
|
"targetPrefix":"AWSIESnowballJobManagementService",
|
12
13
|
"uid":"snowball-2016-06-30"
|
@@ -64,7 +65,8 @@
|
|
64
65
|
"errors":[
|
65
66
|
{"shape":"InvalidResourceException"},
|
66
67
|
{"shape":"KMSRequestFailedException"},
|
67
|
-
{"shape":"InvalidInputCombinationException"}
|
68
|
+
{"shape":"InvalidInputCombinationException"},
|
69
|
+
{"shape":"Ec2RequestFailedException"}
|
68
70
|
]
|
69
71
|
},
|
70
72
|
"CreateJob":{
|
@@ -79,7 +81,8 @@
|
|
79
81
|
{"shape":"InvalidResourceException"},
|
80
82
|
{"shape":"KMSRequestFailedException"},
|
81
83
|
{"shape":"InvalidInputCombinationException"},
|
82
|
-
{"shape":"ClusterLimitExceededException"}
|
84
|
+
{"shape":"ClusterLimitExceededException"},
|
85
|
+
{"shape":"Ec2RequestFailedException"}
|
83
86
|
]
|
84
87
|
},
|
85
88
|
"DescribeAddress":{
|
@@ -191,6 +194,19 @@
|
|
191
194
|
{"shape":"InvalidNextTokenException"}
|
192
195
|
]
|
193
196
|
},
|
197
|
+
"ListCompatibleImages":{
|
198
|
+
"name":"ListCompatibleImages",
|
199
|
+
"http":{
|
200
|
+
"method":"POST",
|
201
|
+
"requestUri":"/"
|
202
|
+
},
|
203
|
+
"input":{"shape":"ListCompatibleImagesRequest"},
|
204
|
+
"output":{"shape":"ListCompatibleImagesResult"},
|
205
|
+
"errors":[
|
206
|
+
{"shape":"InvalidNextTokenException"},
|
207
|
+
{"shape":"Ec2RequestFailedException"}
|
208
|
+
]
|
209
|
+
},
|
194
210
|
"ListJobs":{
|
195
211
|
"name":"ListJobs",
|
196
212
|
"http":{
|
@@ -215,7 +231,8 @@
|
|
215
231
|
{"shape":"InvalidResourceException"},
|
216
232
|
{"shape":"InvalidJobStateException"},
|
217
233
|
{"shape":"KMSRequestFailedException"},
|
218
|
-
{"shape":"InvalidInputCombinationException"}
|
234
|
+
{"shape":"InvalidInputCombinationException"},
|
235
|
+
{"shape":"Ec2RequestFailedException"}
|
219
236
|
]
|
220
237
|
},
|
221
238
|
"UpdateJob":{
|
@@ -231,7 +248,8 @@
|
|
231
248
|
{"shape":"InvalidJobStateException"},
|
232
249
|
{"shape":"KMSRequestFailedException"},
|
233
250
|
{"shape":"InvalidInputCombinationException"},
|
234
|
-
{"shape":"ClusterLimitExceededException"}
|
251
|
+
{"shape":"ClusterLimitExceededException"},
|
252
|
+
{"shape":"Ec2RequestFailedException"}
|
235
253
|
]
|
236
254
|
}
|
237
255
|
},
|
@@ -265,6 +283,12 @@
|
|
265
283
|
"type":"list",
|
266
284
|
"member":{"shape":"Address"}
|
267
285
|
},
|
286
|
+
"AmiId":{
|
287
|
+
"type":"string",
|
288
|
+
"max":21,
|
289
|
+
"min":12,
|
290
|
+
"pattern":"(ami-[0-9a-f]{8})|(ami-[0-9a-f]{17})"
|
291
|
+
},
|
268
292
|
"Boolean":{"type":"boolean"},
|
269
293
|
"CancelClusterRequest":{
|
270
294
|
"type":"structure",
|
@@ -344,6 +368,17 @@
|
|
344
368
|
"Cancelled"
|
345
369
|
]
|
346
370
|
},
|
371
|
+
"CompatibleImage":{
|
372
|
+
"type":"structure",
|
373
|
+
"members":{
|
374
|
+
"AmiId":{"shape":"String"},
|
375
|
+
"Name":{"shape":"String"}
|
376
|
+
}
|
377
|
+
},
|
378
|
+
"CompatibleImageList":{
|
379
|
+
"type":"list",
|
380
|
+
"member":{"shape":"CompatibleImage"}
|
381
|
+
},
|
347
382
|
"CreateAddressRequest":{
|
348
383
|
"type":"structure",
|
349
384
|
"required":["Address"],
|
@@ -471,6 +506,25 @@
|
|
471
506
|
"SubJobMetadata":{"shape":"JobMetadataList"}
|
472
507
|
}
|
473
508
|
},
|
509
|
+
"Ec2AmiResource":{
|
510
|
+
"type":"structure",
|
511
|
+
"required":["AmiId"],
|
512
|
+
"members":{
|
513
|
+
"AmiId":{"shape":"AmiId"},
|
514
|
+
"SnowballAmiId":{"shape":"String"}
|
515
|
+
}
|
516
|
+
},
|
517
|
+
"Ec2AmiResourceList":{
|
518
|
+
"type":"list",
|
519
|
+
"member":{"shape":"Ec2AmiResource"}
|
520
|
+
},
|
521
|
+
"Ec2RequestFailedException":{
|
522
|
+
"type":"structure",
|
523
|
+
"members":{
|
524
|
+
"Message":{"shape":"String"}
|
525
|
+
},
|
526
|
+
"exception":true
|
527
|
+
},
|
474
528
|
"EventTriggerDefinition":{
|
475
529
|
"type":"structure",
|
476
530
|
"members":{
|
@@ -551,7 +605,8 @@
|
|
551
605
|
"InvalidResourceException":{
|
552
606
|
"type":"structure",
|
553
607
|
"members":{
|
554
|
-
"Message":{"shape":"String"}
|
608
|
+
"Message":{"shape":"String"},
|
609
|
+
"ResourceType":{"shape":"String"}
|
555
610
|
},
|
556
611
|
"exception":true
|
557
612
|
},
|
@@ -615,7 +670,8 @@
|
|
615
670
|
"type":"structure",
|
616
671
|
"members":{
|
617
672
|
"S3Resources":{"shape":"S3ResourceList"},
|
618
|
-
"LambdaResources":{"shape":"LambdaResourceList"}
|
673
|
+
"LambdaResources":{"shape":"LambdaResourceList"},
|
674
|
+
"Ec2AmiResources":{"shape":"Ec2AmiResourceList"}
|
619
675
|
}
|
620
676
|
},
|
621
677
|
"JobState":{
|
@@ -707,6 +763,20 @@
|
|
707
763
|
"NextToken":{"shape":"String"}
|
708
764
|
}
|
709
765
|
},
|
766
|
+
"ListCompatibleImagesRequest":{
|
767
|
+
"type":"structure",
|
768
|
+
"members":{
|
769
|
+
"MaxResults":{"shape":"ListLimit"},
|
770
|
+
"NextToken":{"shape":"String"}
|
771
|
+
}
|
772
|
+
},
|
773
|
+
"ListCompatibleImagesResult":{
|
774
|
+
"type":"structure",
|
775
|
+
"members":{
|
776
|
+
"CompatibleImages":{"shape":"CompatibleImageList"},
|
777
|
+
"NextToken":{"shape":"String"}
|
778
|
+
}
|
779
|
+
},
|
710
780
|
"ListJobsRequest":{
|
711
781
|
"type":"structure",
|
712
782
|
"members":{
|
data/lib/aws-sdk-core/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.11.
|
4
|
+
version: 2.11.90
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-07-
|
11
|
+
date: 2018-07-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|
@@ -443,6 +443,7 @@ files:
|
|
443
443
|
- apis/polly/2016-06-10/api-2.json
|
444
444
|
- apis/polly/2016-06-10/examples-1.json
|
445
445
|
- apis/polly/2016-06-10/paginators-1.json
|
446
|
+
- apis/polly/2016-06-10/smoke.json
|
446
447
|
- apis/pricing/2017-10-15/api-2.json
|
447
448
|
- apis/pricing/2017-10-15/examples-1.json
|
448
449
|
- apis/pricing/2017-10-15/paginators-1.json
|
@@ -534,6 +535,7 @@ files:
|
|
534
535
|
- apis/snowball/2016-06-30/api-2.json
|
535
536
|
- apis/snowball/2016-06-30/examples-1.json
|
536
537
|
- apis/snowball/2016-06-30/paginators-1.json
|
538
|
+
- apis/snowball/2016-06-30/smoke.json
|
537
539
|
- apis/sns/2010-03-31/api-2.json
|
538
540
|
- apis/sns/2010-03-31/examples-1.json
|
539
541
|
- apis/sns/2010-03-31/paginators-1.json
|