aws-sdk-core 2.11.445 → 2.11.446

Sign up to get free protection for your applications and to get access to all the features.
@@ -448,6 +448,24 @@
448
448
  {"shape":"ThrottlingException"}
449
449
  ]
450
450
  },
451
+ "GetTextDetection":{
452
+ "name":"GetTextDetection",
453
+ "http":{
454
+ "method":"POST",
455
+ "requestUri":"/"
456
+ },
457
+ "input":{"shape":"GetTextDetectionRequest"},
458
+ "output":{"shape":"GetTextDetectionResponse"},
459
+ "errors":[
460
+ {"shape":"AccessDeniedException"},
461
+ {"shape":"InternalServerError"},
462
+ {"shape":"InvalidParameterException"},
463
+ {"shape":"InvalidPaginationTokenException"},
464
+ {"shape":"ProvisionedThroughputExceededException"},
465
+ {"shape":"ResourceNotFoundException"},
466
+ {"shape":"ThrottlingException"}
467
+ ]
468
+ },
451
469
  "IndexFaces":{
452
470
  "name":"IndexFaces",
453
471
  "http":{
@@ -742,6 +760,27 @@
742
760
  {"shape":"ProvisionedThroughputExceededException"}
743
761
  ]
744
762
  },
763
+ "StartTextDetection":{
764
+ "name":"StartTextDetection",
765
+ "http":{
766
+ "method":"POST",
767
+ "requestUri":"/"
768
+ },
769
+ "input":{"shape":"StartTextDetectionRequest"},
770
+ "output":{"shape":"StartTextDetectionResponse"},
771
+ "errors":[
772
+ {"shape":"AccessDeniedException"},
773
+ {"shape":"IdempotentParameterMismatchException"},
774
+ {"shape":"InvalidParameterException"},
775
+ {"shape":"InvalidS3ObjectException"},
776
+ {"shape":"InternalServerError"},
777
+ {"shape":"VideoTooLargeException"},
778
+ {"shape":"ProvisionedThroughputExceededException"},
779
+ {"shape":"LimitExceededException"},
780
+ {"shape":"ThrottlingException"}
781
+ ],
782
+ "idempotent":true
783
+ },
745
784
  "StopProjectVersion":{
746
785
  "name":"StopProjectVersion",
747
786
  "http":{
@@ -831,6 +870,16 @@
831
870
  "Top":{"shape":"Float"}
832
871
  }
833
872
  },
873
+ "BoundingBoxHeight":{
874
+ "type":"float",
875
+ "max":1,
876
+ "min":0
877
+ },
878
+ "BoundingBoxWidth":{
879
+ "type":"float",
880
+ "max":1,
881
+ "min":0
882
+ },
834
883
  "Celebrity":{
835
884
  "type":"structure",
836
885
  "members":{
@@ -1250,17 +1299,34 @@
1250
1299
  "HumanLoopActivationOutput":{"shape":"HumanLoopActivationOutput"}
1251
1300
  }
1252
1301
  },
1302
+ "DetectTextFilters":{
1303
+ "type":"structure",
1304
+ "members":{
1305
+ "WordFilter":{"shape":"DetectionFilter"},
1306
+ "RegionsOfInterest":{"shape":"RegionsOfInterest"}
1307
+ }
1308
+ },
1253
1309
  "DetectTextRequest":{
1254
1310
  "type":"structure",
1255
1311
  "required":["Image"],
1256
1312
  "members":{
1257
- "Image":{"shape":"Image"}
1313
+ "Image":{"shape":"Image"},
1314
+ "Filters":{"shape":"DetectTextFilters"}
1258
1315
  }
1259
1316
  },
1260
1317
  "DetectTextResponse":{
1261
1318
  "type":"structure",
1262
1319
  "members":{
1263
- "TextDetections":{"shape":"TextDetectionList"}
1320
+ "TextDetections":{"shape":"TextDetectionList"},
1321
+ "TextModelVersion":{"shape":"String"}
1322
+ }
1323
+ },
1324
+ "DetectionFilter":{
1325
+ "type":"structure",
1326
+ "members":{
1327
+ "MinConfidence":{"shape":"Percent"},
1328
+ "MinBoundingBoxHeight":{"shape":"BoundingBoxHeight"},
1329
+ "MinBoundingBoxWidth":{"shape":"BoundingBoxWidth"}
1264
1330
  }
1265
1331
  },
1266
1332
  "Emotion":{
@@ -1586,6 +1652,26 @@
1586
1652
  "Persons":{"shape":"PersonDetections"}
1587
1653
  }
1588
1654
  },
1655
+ "GetTextDetectionRequest":{
1656
+ "type":"structure",
1657
+ "required":["JobId"],
1658
+ "members":{
1659
+ "JobId":{"shape":"JobId"},
1660
+ "MaxResults":{"shape":"MaxResults"},
1661
+ "NextToken":{"shape":"PaginationToken"}
1662
+ }
1663
+ },
1664
+ "GetTextDetectionResponse":{
1665
+ "type":"structure",
1666
+ "members":{
1667
+ "JobStatus":{"shape":"VideoJobStatus"},
1668
+ "StatusMessage":{"shape":"StatusMessage"},
1669
+ "VideoMetadata":{"shape":"VideoMetadata"},
1670
+ "TextDetections":{"shape":"TextDetectionResults"},
1671
+ "NextToken":{"shape":"PaginationToken"},
1672
+ "TextModelVersion":{"shape":"String"}
1673
+ }
1674
+ },
1589
1675
  "GroundTruthManifest":{
1590
1676
  "type":"structure",
1591
1677
  "members":{
@@ -2194,6 +2280,18 @@
2194
2280
  "OrientationCorrection":{"shape":"OrientationCorrection"}
2195
2281
  }
2196
2282
  },
2283
+ "RegionOfInterest":{
2284
+ "type":"structure",
2285
+ "members":{
2286
+ "BoundingBox":{"shape":"BoundingBox"}
2287
+ }
2288
+ },
2289
+ "RegionsOfInterest":{
2290
+ "type":"list",
2291
+ "member":{"shape":"RegionOfInterest"},
2292
+ "max":10,
2293
+ "min":0
2294
+ },
2197
2295
  "RekognitionUniqueId":{
2198
2296
  "type":"string",
2199
2297
  "pattern":"[0-9A-Za-z]*"
@@ -2442,6 +2540,30 @@
2442
2540
  "members":{
2443
2541
  }
2444
2542
  },
2543
+ "StartTextDetectionFilters":{
2544
+ "type":"structure",
2545
+ "members":{
2546
+ "WordFilter":{"shape":"DetectionFilter"},
2547
+ "RegionsOfInterest":{"shape":"RegionsOfInterest"}
2548
+ }
2549
+ },
2550
+ "StartTextDetectionRequest":{
2551
+ "type":"structure",
2552
+ "required":["Video"],
2553
+ "members":{
2554
+ "Video":{"shape":"Video"},
2555
+ "ClientRequestToken":{"shape":"ClientRequestToken"},
2556
+ "NotificationChannel":{"shape":"NotificationChannel"},
2557
+ "JobTag":{"shape":"JobTag"},
2558
+ "Filters":{"shape":"StartTextDetectionFilters"}
2559
+ }
2560
+ },
2561
+ "StartTextDetectionResponse":{
2562
+ "type":"structure",
2563
+ "members":{
2564
+ "JobId":{"shape":"JobId"}
2565
+ }
2566
+ },
2445
2567
  "StatusMessage":{"type":"string"},
2446
2568
  "StopProjectVersionRequest":{
2447
2569
  "type":"structure",
@@ -2560,6 +2682,17 @@
2560
2682
  "type":"list",
2561
2683
  "member":{"shape":"TextDetection"}
2562
2684
  },
2685
+ "TextDetectionResult":{
2686
+ "type":"structure",
2687
+ "members":{
2688
+ "Timestamp":{"shape":"Timestamp"},
2689
+ "TextDetection":{"shape":"TextDetection"}
2690
+ }
2691
+ },
2692
+ "TextDetectionResults":{
2693
+ "type":"list",
2694
+ "member":{"shape":"TextDetectionResult"}
2695
+ },
2563
2696
  "TextTypes":{
2564
2697
  "type":"string",
2565
2698
  "enum":[
@@ -42,6 +42,11 @@
42
42
  "limit_key": "MaxResults",
43
43
  "output_token": "NextToken"
44
44
  },
45
+ "GetTextDetection": {
46
+ "input_token": "NextToken",
47
+ "limit_key": "MaxResults",
48
+ "output_token": "NextToken"
49
+ },
45
50
  "ListCollections": {
46
51
  "input_token": "NextToken",
47
52
  "limit_key": "MaxResults",
@@ -4183,6 +4183,12 @@
4183
4183
  "cn-northwest-1" : { }
4184
4184
  }
4185
4185
  },
4186
+ "backup" : {
4187
+ "endpoints" : {
4188
+ "cn-north-1" : { },
4189
+ "cn-northwest-1" : { }
4190
+ }
4191
+ },
4186
4192
  "batch" : {
4187
4193
  "endpoints" : {
4188
4194
  "cn-north-1" : { },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.445'
2
+ VERSION = '2.11.446'
3
3
  end
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.445
4
+ version: 2.11.446
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: 2020-02-14 00:00:00.000000000 Z
11
+ date: 2020-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath