aws-sdk-core 2.11.559 → 2.11.564

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,6 +13,21 @@
13
13
  "uid":"transcribe-2017-10-26"
14
14
  },
15
15
  "operations":{
16
+ "CreateLanguageModel":{
17
+ "name":"CreateLanguageModel",
18
+ "http":{
19
+ "method":"POST",
20
+ "requestUri":"/"
21
+ },
22
+ "input":{"shape":"CreateLanguageModelRequest"},
23
+ "output":{"shape":"CreateLanguageModelResponse"},
24
+ "errors":[
25
+ {"shape":"BadRequestException"},
26
+ {"shape":"LimitExceededException"},
27
+ {"shape":"InternalFailureException"},
28
+ {"shape":"ConflictException"}
29
+ ]
30
+ },
16
31
  "CreateMedicalVocabulary":{
17
32
  "name":"CreateMedicalVocabulary",
18
33
  "http":{
@@ -58,6 +73,19 @@
58
73
  {"shape":"ConflictException"}
59
74
  ]
60
75
  },
76
+ "DeleteLanguageModel":{
77
+ "name":"DeleteLanguageModel",
78
+ "http":{
79
+ "method":"POST",
80
+ "requestUri":"/"
81
+ },
82
+ "input":{"shape":"DeleteLanguageModelRequest"},
83
+ "errors":[
84
+ {"shape":"BadRequestException"},
85
+ {"shape":"LimitExceededException"},
86
+ {"shape":"InternalFailureException"}
87
+ ]
88
+ },
61
89
  "DeleteMedicalTranscriptionJob":{
62
90
  "name":"DeleteMedicalTranscriptionJob",
63
91
  "http":{
@@ -126,6 +154,21 @@
126
154
  {"shape":"InternalFailureException"}
127
155
  ]
128
156
  },
157
+ "DescribeLanguageModel":{
158
+ "name":"DescribeLanguageModel",
159
+ "http":{
160
+ "method":"POST",
161
+ "requestUri":"/"
162
+ },
163
+ "input":{"shape":"DescribeLanguageModelRequest"},
164
+ "output":{"shape":"DescribeLanguageModelResponse"},
165
+ "errors":[
166
+ {"shape":"BadRequestException"},
167
+ {"shape":"LimitExceededException"},
168
+ {"shape":"InternalFailureException"},
169
+ {"shape":"NotFoundException"}
170
+ ]
171
+ },
129
172
  "GetMedicalTranscriptionJob":{
130
173
  "name":"GetMedicalTranscriptionJob",
131
174
  "http":{
@@ -201,6 +244,20 @@
201
244
  {"shape":"BadRequestException"}
202
245
  ]
203
246
  },
247
+ "ListLanguageModels":{
248
+ "name":"ListLanguageModels",
249
+ "http":{
250
+ "method":"POST",
251
+ "requestUri":"/"
252
+ },
253
+ "input":{"shape":"ListLanguageModelsRequest"},
254
+ "output":{"shape":"ListLanguageModelsResponse"},
255
+ "errors":[
256
+ {"shape":"BadRequestException"},
257
+ {"shape":"LimitExceededException"},
258
+ {"shape":"InternalFailureException"}
259
+ ]
260
+ },
204
261
  "ListMedicalTranscriptionJobs":{
205
262
  "name":"ListMedicalTranscriptionJobs",
206
263
  "http":{
@@ -357,7 +414,18 @@
357
414
  },
358
415
  "exception":true
359
416
  },
417
+ "BaseModelName":{
418
+ "type":"string",
419
+ "enum":[
420
+ "NarrowBand",
421
+ "WideBand"
422
+ ]
423
+ },
360
424
  "Boolean":{"type":"boolean"},
425
+ "CLMLanguageCode":{
426
+ "type":"string",
427
+ "enum":["en-US"]
428
+ },
361
429
  "ConflictException":{
362
430
  "type":"structure",
363
431
  "members":{
@@ -376,6 +444,31 @@
376
444
  "RedactionOutput":{"shape":"RedactionOutput"}
377
445
  }
378
446
  },
447
+ "CreateLanguageModelRequest":{
448
+ "type":"structure",
449
+ "required":[
450
+ "LanguageCode",
451
+ "BaseModelName",
452
+ "ModelName",
453
+ "InputDataConfig"
454
+ ],
455
+ "members":{
456
+ "LanguageCode":{"shape":"CLMLanguageCode"},
457
+ "BaseModelName":{"shape":"BaseModelName"},
458
+ "ModelName":{"shape":"ModelName"},
459
+ "InputDataConfig":{"shape":"InputDataConfig"}
460
+ }
461
+ },
462
+ "CreateLanguageModelResponse":{
463
+ "type":"structure",
464
+ "members":{
465
+ "LanguageCode":{"shape":"CLMLanguageCode"},
466
+ "BaseModelName":{"shape":"BaseModelName"},
467
+ "ModelName":{"shape":"ModelName"},
468
+ "InputDataConfig":{"shape":"InputDataConfig"},
469
+ "ModelStatus":{"shape":"ModelStatus"}
470
+ }
471
+ },
379
472
  "CreateMedicalVocabularyRequest":{
380
473
  "type":"structure",
381
474
  "required":[
@@ -445,9 +538,18 @@
445
538
  },
446
539
  "DataAccessRoleArn":{
447
540
  "type":"string",
448
- "pattern":"^arn:aws:iam::[0-9]{0,63}:role/[A-Za-z0-9:_/+=,@.-]{0,1023}$"
541
+ "max":2048,
542
+ "min":20,
543
+ "pattern":"^arn:(aws|aws-cn|aws-us-gov|aws-iso-{0,1}[a-z]{0,1}):iam::[0-9]{0,63}:role/[A-Za-z0-9:_/+=,@.-]{0,1024}$"
449
544
  },
450
545
  "DateTime":{"type":"timestamp"},
546
+ "DeleteLanguageModelRequest":{
547
+ "type":"structure",
548
+ "required":["ModelName"],
549
+ "members":{
550
+ "ModelName":{"shape":"ModelName"}
551
+ }
552
+ },
451
553
  "DeleteMedicalTranscriptionJobRequest":{
452
554
  "type":"structure",
453
555
  "required":["MedicalTranscriptionJobName"],
@@ -483,6 +585,19 @@
483
585
  "VocabularyName":{"shape":"VocabularyName"}
484
586
  }
485
587
  },
588
+ "DescribeLanguageModelRequest":{
589
+ "type":"structure",
590
+ "required":["ModelName"],
591
+ "members":{
592
+ "ModelName":{"shape":"ModelName"}
593
+ }
594
+ },
595
+ "DescribeLanguageModelResponse":{
596
+ "type":"structure",
597
+ "members":{
598
+ "LanguageModel":{"shape":"LanguageModel"}
599
+ }
600
+ },
486
601
  "FailureReason":{"type":"string"},
487
602
  "GetMedicalTranscriptionJobRequest":{
488
603
  "type":"structure",
@@ -562,6 +677,18 @@
562
677
  "DownloadUri":{"shape":"Uri"}
563
678
  }
564
679
  },
680
+ "InputDataConfig":{
681
+ "type":"structure",
682
+ "required":[
683
+ "S3Uri",
684
+ "DataAccessRoleArn"
685
+ ],
686
+ "members":{
687
+ "S3Uri":{"shape":"Uri"},
688
+ "TuningDataS3Uri":{"shape":"Uri"},
689
+ "DataAccessRoleArn":{"shape":"DataAccessRoleArn"}
690
+ }
691
+ },
565
692
  "InternalFailureException":{
566
693
  "type":"structure",
567
694
  "members":{
@@ -586,39 +713,58 @@
586
713
  "LanguageCode":{
587
714
  "type":"string",
588
715
  "enum":[
716
+ "af-ZA",
717
+ "ar-AE",
718
+ "ar-SA",
719
+ "cy-GB",
720
+ "da-DK",
721
+ "de-CH",
722
+ "de-DE",
723
+ "en-AB",
724
+ "en-AU",
725
+ "en-GB",
726
+ "en-IE",
727
+ "en-IN",
589
728
  "en-US",
729
+ "en-WL",
730
+ "es-ES",
590
731
  "es-US",
591
- "en-AU",
732
+ "fa-IR",
592
733
  "fr-CA",
593
- "en-GB",
594
- "de-DE",
595
- "pt-BR",
596
734
  "fr-FR",
735
+ "ga-IE",
736
+ "gd-GB",
737
+ "he-IL",
738
+ "hi-IN",
739
+ "id-ID",
597
740
  "it-IT",
741
+ "ja-JP",
598
742
  "ko-KR",
599
- "es-ES",
600
- "en-IN",
601
- "hi-IN",
602
- "ar-SA",
603
- "ru-RU",
604
- "zh-CN",
743
+ "ms-MY",
605
744
  "nl-NL",
606
- "id-ID",
607
- "ta-IN",
608
- "fa-IR",
609
- "en-IE",
610
- "en-AB",
611
- "en-WL",
745
+ "pt-BR",
612
746
  "pt-PT",
747
+ "ru-RU",
748
+ "ta-IN",
613
749
  "te-IN",
614
750
  "tr-TR",
615
- "de-CH",
616
- "he-IL",
617
- "ms-MY",
618
- "ja-JP",
619
- "ar-AE"
751
+ "zh-CN"
620
752
  ]
621
753
  },
754
+ "LanguageModel":{
755
+ "type":"structure",
756
+ "members":{
757
+ "ModelName":{"shape":"ModelName"},
758
+ "CreateTime":{"shape":"DateTime"},
759
+ "LastModifiedTime":{"shape":"DateTime"},
760
+ "LanguageCode":{"shape":"CLMLanguageCode"},
761
+ "BaseModelName":{"shape":"BaseModelName"},
762
+ "ModelStatus":{"shape":"ModelStatus"},
763
+ "UpgradeAvailability":{"shape":"Boolean"},
764
+ "FailureReason":{"shape":"FailureReason"},
765
+ "InputDataConfig":{"shape":"InputDataConfig"}
766
+ }
767
+ },
622
768
  "LimitExceededException":{
623
769
  "type":"structure",
624
770
  "members":{
@@ -626,6 +772,22 @@
626
772
  },
627
773
  "exception":true
628
774
  },
775
+ "ListLanguageModelsRequest":{
776
+ "type":"structure",
777
+ "members":{
778
+ "StatusEquals":{"shape":"ModelStatus"},
779
+ "NameContains":{"shape":"ModelName"},
780
+ "NextToken":{"shape":"NextToken"},
781
+ "MaxResults":{"shape":"MaxResults"}
782
+ }
783
+ },
784
+ "ListLanguageModelsResponse":{
785
+ "type":"structure",
786
+ "members":{
787
+ "NextToken":{"shape":"NextToken"},
788
+ "Models":{"shape":"Models"}
789
+ }
790
+ },
629
791
  "ListMedicalTranscriptionJobsRequest":{
630
792
  "type":"structure",
631
793
  "members":{
@@ -799,6 +961,30 @@
799
961
  "VocabularyName":{"shape":"VocabularyName"}
800
962
  }
801
963
  },
964
+ "ModelName":{
965
+ "type":"string",
966
+ "max":200,
967
+ "min":1,
968
+ "pattern":"^[0-9a-zA-Z._-]+"
969
+ },
970
+ "ModelSettings":{
971
+ "type":"structure",
972
+ "members":{
973
+ "LanguageModelName":{"shape":"ModelName"}
974
+ }
975
+ },
976
+ "ModelStatus":{
977
+ "type":"string",
978
+ "enum":[
979
+ "IN_PROGRESS",
980
+ "FAILED",
981
+ "COMPLETED"
982
+ ]
983
+ },
984
+ "Models":{
985
+ "type":"list",
986
+ "member":{"shape":"LanguageModel"}
987
+ },
802
988
  "NextToken":{
803
989
  "type":"string",
804
990
  "max":8192,
@@ -906,6 +1092,7 @@
906
1092
  "OutputBucketName":{"shape":"OutputBucketName"},
907
1093
  "OutputEncryptionKMSKeyId":{"shape":"KMSKeyId"},
908
1094
  "Settings":{"shape":"Settings"},
1095
+ "ModelSettings":{"shape":"ModelSettings"},
909
1096
  "JobExecutionSettings":{"shape":"JobExecutionSettings"},
910
1097
  "ContentRedaction":{"shape":"ContentRedaction"}
911
1098
  }
@@ -939,6 +1126,7 @@
939
1126
  "CompletionTime":{"shape":"DateTime"},
940
1127
  "FailureReason":{"shape":"FailureReason"},
941
1128
  "Settings":{"shape":"Settings"},
1129
+ "ModelSettings":{"shape":"ModelSettings"},
942
1130
  "JobExecutionSettings":{"shape":"JobExecutionSettings"},
943
1131
  "ContentRedaction":{"shape":"ContentRedaction"}
944
1132
  }
@@ -973,7 +1161,8 @@
973
1161
  "TranscriptionJobStatus":{"shape":"TranscriptionJobStatus"},
974
1162
  "FailureReason":{"shape":"FailureReason"},
975
1163
  "OutputLocationType":{"shape":"OutputLocationType"},
976
- "ContentRedaction":{"shape":"ContentRedaction"}
1164
+ "ContentRedaction":{"shape":"ContentRedaction"},
1165
+ "ModelSettings":{"shape":"ModelSettings"}
977
1166
  }
978
1167
  },
979
1168
  "Type":{
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListLanguageModels": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
3
8
  "ListMedicalTranscriptionJobs": {
4
9
  "input_token": "NextToken",
5
10
  "output_token": "NextToken",
@@ -349,6 +349,30 @@
349
349
  },
350
350
  "hostname" : "api.ecr.eu-west-3.amazonaws.com"
351
351
  },
352
+ "fips-dkr-us-east-1" : {
353
+ "credentialScope" : {
354
+ "region" : "us-east-1"
355
+ },
356
+ "hostname" : "ecr-fips.us-east-1.amazonaws.com"
357
+ },
358
+ "fips-dkr-us-east-2" : {
359
+ "credentialScope" : {
360
+ "region" : "us-east-2"
361
+ },
362
+ "hostname" : "ecr-fips.us-east-2.amazonaws.com"
363
+ },
364
+ "fips-dkr-us-west-1" : {
365
+ "credentialScope" : {
366
+ "region" : "us-west-1"
367
+ },
368
+ "hostname" : "ecr-fips.us-west-1.amazonaws.com"
369
+ },
370
+ "fips-dkr-us-west-2" : {
371
+ "credentialScope" : {
372
+ "region" : "us-west-2"
373
+ },
374
+ "hostname" : "ecr-fips.us-west-2.amazonaws.com"
375
+ },
352
376
  "fips-us-east-1" : {
353
377
  "credentialScope" : {
354
378
  "region" : "us-east-1"
@@ -727,6 +751,7 @@
727
751
  "ca-central-1" : { },
728
752
  "eu-central-1" : { },
729
753
  "eu-north-1" : { },
754
+ "eu-south-1" : { },
730
755
  "eu-west-1" : { },
731
756
  "eu-west-2" : { },
732
757
  "eu-west-3" : { },
@@ -1953,6 +1978,7 @@
1953
1978
  "protocols" : [ "http", "https" ]
1954
1979
  },
1955
1980
  "endpoints" : {
1981
+ "af-south-1" : { },
1956
1982
  "ap-east-1" : { },
1957
1983
  "ap-northeast-1" : { },
1958
1984
  "ap-northeast-2" : { },
@@ -1962,6 +1988,7 @@
1962
1988
  "ca-central-1" : { },
1963
1989
  "eu-central-1" : { },
1964
1990
  "eu-north-1" : { },
1991
+ "eu-south-1" : { },
1965
1992
  "eu-west-1" : { },
1966
1993
  "eu-west-2" : { },
1967
1994
  "eu-west-3" : { },
@@ -3780,6 +3807,12 @@
3780
3807
  },
3781
3808
  "neptune" : {
3782
3809
  "endpoints" : {
3810
+ "ap-east-1" : {
3811
+ "credentialScope" : {
3812
+ "region" : "ap-east-1"
3813
+ },
3814
+ "hostname" : "rds.ap-east-1.amazonaws.com"
3815
+ },
3783
3816
  "ap-northeast-1" : {
3784
3817
  "credentialScope" : {
3785
3818
  "region" : "ap-northeast-1"
@@ -3852,6 +3885,12 @@
3852
3885
  },
3853
3886
  "hostname" : "rds.me-south-1.amazonaws.com"
3854
3887
  },
3888
+ "sa-east-1" : {
3889
+ "credentialScope" : {
3890
+ "region" : "sa-east-1"
3891
+ },
3892
+ "hostname" : "rds.sa-east-1.amazonaws.com"
3893
+ },
3855
3894
  "us-east-1" : {
3856
3895
  "credentialScope" : {
3857
3896
  "region" : "us-east-1"
@@ -6911,6 +6950,18 @@
6911
6950
  },
6912
6951
  "api.ecr" : {
6913
6952
  "endpoints" : {
6953
+ "fips-dkr-us-gov-east-1" : {
6954
+ "credentialScope" : {
6955
+ "region" : "us-gov-east-1"
6956
+ },
6957
+ "hostname" : "ecr-fips.us-gov-east-1.amazonaws.com"
6958
+ },
6959
+ "fips-dkr-us-gov-west-1" : {
6960
+ "credentialScope" : {
6961
+ "region" : "us-gov-west-1"
6962
+ },
6963
+ "hostname" : "ecr-fips.us-gov-west-1.amazonaws.com"
6964
+ },
6914
6965
  "fips-us-gov-east-1" : {
6915
6966
  "credentialScope" : {
6916
6967
  "region" : "us-gov-east-1"