aws-sdk-core 2.11.528 → 2.11.533

Sign up to get free protection for your applications and to get access to all the features.
@@ -484,6 +484,24 @@
484
484
  {"shape":"ThrottlingException"}
485
485
  ]
486
486
  },
487
+ "GetSegmentDetection":{
488
+ "name":"GetSegmentDetection",
489
+ "http":{
490
+ "method":"POST",
491
+ "requestUri":"/"
492
+ },
493
+ "input":{"shape":"GetSegmentDetectionRequest"},
494
+ "output":{"shape":"GetSegmentDetectionResponse"},
495
+ "errors":[
496
+ {"shape":"AccessDeniedException"},
497
+ {"shape":"InternalServerError"},
498
+ {"shape":"InvalidParameterException"},
499
+ {"shape":"InvalidPaginationTokenException"},
500
+ {"shape":"ProvisionedThroughputExceededException"},
501
+ {"shape":"ResourceNotFoundException"},
502
+ {"shape":"ThrottlingException"}
503
+ ]
504
+ },
487
505
  "GetTextDetection":{
488
506
  "name":"GetTextDetection",
489
507
  "http":{
@@ -778,6 +796,27 @@
778
796
  {"shape":"ProvisionedThroughputExceededException"}
779
797
  ]
780
798
  },
799
+ "StartSegmentDetection":{
800
+ "name":"StartSegmentDetection",
801
+ "http":{
802
+ "method":"POST",
803
+ "requestUri":"/"
804
+ },
805
+ "input":{"shape":"StartSegmentDetectionRequest"},
806
+ "output":{"shape":"StartSegmentDetectionResponse"},
807
+ "errors":[
808
+ {"shape":"AccessDeniedException"},
809
+ {"shape":"IdempotentParameterMismatchException"},
810
+ {"shape":"InvalidParameterException"},
811
+ {"shape":"InvalidS3ObjectException"},
812
+ {"shape":"InternalServerError"},
813
+ {"shape":"VideoTooLargeException"},
814
+ {"shape":"ProvisionedThroughputExceededException"},
815
+ {"shape":"LimitExceededException"},
816
+ {"shape":"ThrottlingException"}
817
+ ],
818
+ "idempotent":true
819
+ },
781
820
  "StartStreamProcessor":{
782
821
  "name":"StartStreamProcessor",
783
822
  "http":{
@@ -889,6 +928,19 @@
889
928
  "type":"list",
890
929
  "member":{"shape":"Attribute"}
891
930
  },
931
+ "AudioMetadata":{
932
+ "type":"structure",
933
+ "members":{
934
+ "Codec":{"shape":"String"},
935
+ "DurationMillis":{"shape":"ULong"},
936
+ "SampleRate":{"shape":"ULong"},
937
+ "NumberOfChannels":{"shape":"ULong"}
938
+ }
939
+ },
940
+ "AudioMetadataList":{
941
+ "type":"list",
942
+ "member":{"shape":"AudioMetadata"}
943
+ },
892
944
  "Beard":{
893
945
  "type":"structure",
894
946
  "members":{
@@ -1714,6 +1766,27 @@
1714
1766
  "Persons":{"shape":"PersonDetections"}
1715
1767
  }
1716
1768
  },
1769
+ "GetSegmentDetectionRequest":{
1770
+ "type":"structure",
1771
+ "required":["JobId"],
1772
+ "members":{
1773
+ "JobId":{"shape":"JobId"},
1774
+ "MaxResults":{"shape":"MaxResults"},
1775
+ "NextToken":{"shape":"PaginationToken"}
1776
+ }
1777
+ },
1778
+ "GetSegmentDetectionResponse":{
1779
+ "type":"structure",
1780
+ "members":{
1781
+ "JobStatus":{"shape":"VideoJobStatus"},
1782
+ "StatusMessage":{"shape":"StatusMessage"},
1783
+ "VideoMetadata":{"shape":"VideoMetadataList"},
1784
+ "AudioMetadata":{"shape":"AudioMetadataList"},
1785
+ "NextToken":{"shape":"PaginationToken"},
1786
+ "Segments":{"shape":"SegmentDetections"},
1787
+ "SelectedSegmentTypes":{"shape":"SegmentTypesInfo"}
1788
+ }
1789
+ },
1717
1790
  "GetTextDetectionRequest":{
1718
1791
  "type":"structure",
1719
1792
  "required":["JobId"],
@@ -2462,6 +2535,59 @@
2462
2535
  "FaceModelVersion":{"shape":"String"}
2463
2536
  }
2464
2537
  },
2538
+ "SegmentConfidence":{
2539
+ "type":"float",
2540
+ "max":100,
2541
+ "min":50
2542
+ },
2543
+ "SegmentDetection":{
2544
+ "type":"structure",
2545
+ "members":{
2546
+ "Type":{"shape":"SegmentType"},
2547
+ "StartTimestampMillis":{"shape":"Timestamp"},
2548
+ "EndTimestampMillis":{"shape":"Timestamp"},
2549
+ "DurationMillis":{"shape":"ULong"},
2550
+ "StartTimecodeSMPTE":{"shape":"Timecode"},
2551
+ "EndTimecodeSMPTE":{"shape":"Timecode"},
2552
+ "DurationSMPTE":{"shape":"Timecode"},
2553
+ "TechnicalCueSegment":{"shape":"TechnicalCueSegment"},
2554
+ "ShotSegment":{"shape":"ShotSegment"}
2555
+ }
2556
+ },
2557
+ "SegmentDetections":{
2558
+ "type":"list",
2559
+ "member":{"shape":"SegmentDetection"}
2560
+ },
2561
+ "SegmentType":{
2562
+ "type":"string",
2563
+ "enum":[
2564
+ "TECHNICAL_CUE",
2565
+ "SHOT"
2566
+ ]
2567
+ },
2568
+ "SegmentTypeInfo":{
2569
+ "type":"structure",
2570
+ "members":{
2571
+ "Type":{"shape":"SegmentType"},
2572
+ "ModelVersion":{"shape":"String"}
2573
+ }
2574
+ },
2575
+ "SegmentTypes":{
2576
+ "type":"list",
2577
+ "member":{"shape":"SegmentType"},
2578
+ "min":1
2579
+ },
2580
+ "SegmentTypesInfo":{
2581
+ "type":"list",
2582
+ "member":{"shape":"SegmentTypeInfo"}
2583
+ },
2584
+ "ShotSegment":{
2585
+ "type":"structure",
2586
+ "members":{
2587
+ "Index":{"shape":"ULong"},
2588
+ "Confidence":{"shape":"SegmentConfidence"}
2589
+ }
2590
+ },
2465
2591
  "Smile":{
2466
2592
  "type":"structure",
2467
2593
  "members":{
@@ -2590,6 +2716,40 @@
2590
2716
  "Status":{"shape":"ProjectVersionStatus"}
2591
2717
  }
2592
2718
  },
2719
+ "StartSegmentDetectionFilters":{
2720
+ "type":"structure",
2721
+ "members":{
2722
+ "TechnicalCueFilter":{"shape":"StartTechnicalCueDetectionFilter"},
2723
+ "ShotFilter":{"shape":"StartShotDetectionFilter"}
2724
+ }
2725
+ },
2726
+ "StartSegmentDetectionRequest":{
2727
+ "type":"structure",
2728
+ "required":[
2729
+ "Video",
2730
+ "SegmentTypes"
2731
+ ],
2732
+ "members":{
2733
+ "Video":{"shape":"Video"},
2734
+ "ClientRequestToken":{"shape":"ClientRequestToken"},
2735
+ "NotificationChannel":{"shape":"NotificationChannel"},
2736
+ "JobTag":{"shape":"JobTag"},
2737
+ "Filters":{"shape":"StartSegmentDetectionFilters"},
2738
+ "SegmentTypes":{"shape":"SegmentTypes"}
2739
+ }
2740
+ },
2741
+ "StartSegmentDetectionResponse":{
2742
+ "type":"structure",
2743
+ "members":{
2744
+ "JobId":{"shape":"JobId"}
2745
+ }
2746
+ },
2747
+ "StartShotDetectionFilter":{
2748
+ "type":"structure",
2749
+ "members":{
2750
+ "MinSegmentConfidence":{"shape":"SegmentConfidence"}
2751
+ }
2752
+ },
2593
2753
  "StartStreamProcessorRequest":{
2594
2754
  "type":"structure",
2595
2755
  "required":["Name"],
@@ -2602,6 +2762,12 @@
2602
2762
  "members":{
2603
2763
  }
2604
2764
  },
2765
+ "StartTechnicalCueDetectionFilter":{
2766
+ "type":"structure",
2767
+ "members":{
2768
+ "MinSegmentConfidence":{"shape":"SegmentConfidence"}
2769
+ }
2770
+ },
2605
2771
  "StartTextDetectionFilters":{
2606
2772
  "type":"structure",
2607
2773
  "members":{
@@ -2715,6 +2881,21 @@
2715
2881
  "Confidence":{"shape":"Percent"}
2716
2882
  }
2717
2883
  },
2884
+ "TechnicalCueSegment":{
2885
+ "type":"structure",
2886
+ "members":{
2887
+ "Type":{"shape":"TechnicalCueType"},
2888
+ "Confidence":{"shape":"SegmentConfidence"}
2889
+ }
2890
+ },
2891
+ "TechnicalCueType":{
2892
+ "type":"string",
2893
+ "enum":[
2894
+ "ColorBars",
2895
+ "EndCredits",
2896
+ "BlackFrames"
2897
+ ]
2898
+ },
2718
2899
  "TestingData":{
2719
2900
  "type":"structure",
2720
2901
  "members":{
@@ -2769,6 +2950,7 @@
2769
2950
  "exception":true,
2770
2951
  "fault":true
2771
2952
  },
2953
+ "Timecode":{"type":"string"},
2772
2954
  "Timestamp":{"type":"long"},
2773
2955
  "TrainingData":{
2774
2956
  "type":"structure",
@@ -2844,6 +3026,10 @@
2844
3026
  "FrameWidth":{"shape":"ULong"}
2845
3027
  }
2846
3028
  },
3029
+ "VideoMetadataList":{
3030
+ "type":"list",
3031
+ "member":{"shape":"VideoMetadata"}
3032
+ },
2847
3033
  "VideoTooLargeException":{
2848
3034
  "type":"structure",
2849
3035
  "members":{
@@ -42,6 +42,11 @@
42
42
  "limit_key": "MaxResults",
43
43
  "output_token": "NextToken"
44
44
  },
45
+ "GetSegmentDetection": {
46
+ "input_token": "NextToken",
47
+ "limit_key": "MaxResults",
48
+ "output_token": "NextToken"
49
+ },
45
50
  "GetTextDetection": {
46
51
  "input_token": "NextToken",
47
52
  "limit_key": "MaxResults",
@@ -31,7 +31,8 @@
31
31
  {"shape":"InvalidInput"},
32
32
  {"shape":"PublicZoneVPCAssociation"},
33
33
  {"shape":"ConflictingDomainExists"},
34
- {"shape":"LimitsExceeded"}
34
+ {"shape":"LimitsExceeded"},
35
+ {"shape":"PriorRequestNotComplete"}
35
36
  ]
36
37
  },
37
38
  "ChangeResourceRecordSets":{
@@ -635,6 +636,19 @@
635
636
  {"shape":"InvalidDomainName"}
636
637
  ]
637
638
  },
639
+ "ListHostedZonesByVPC":{
640
+ "name":"ListHostedZonesByVPC",
641
+ "http":{
642
+ "method":"GET",
643
+ "requestUri":"/2013-04-01/hostedzonesbyvpc"
644
+ },
645
+ "input":{"shape":"ListHostedZonesByVPCRequest"},
646
+ "output":{"shape":"ListHostedZonesByVPCResponse"},
647
+ "errors":[
648
+ {"shape":"InvalidInput"},
649
+ {"shape":"InvalidPaginationToken"}
650
+ ]
651
+ },
638
652
  "ListQueryLoggingConfigs":{
639
653
  "name":"ListQueryLoggingConfigs",
640
654
  "http":{
@@ -878,6 +892,7 @@
878
892
  }
879
893
  },
880
894
  "shapes":{
895
+ "AWSAccountID":{"type":"string"},
881
896
  "AccountLimit":{
882
897
  "type":"structure",
883
898
  "required":[
@@ -2243,7 +2258,38 @@
2243
2258
  },
2244
2259
  "exception":true
2245
2260
  },
2261
+ "HostedZoneOwner":{
2262
+ "type":"structure",
2263
+ "members":{
2264
+ "OwningAccount":{"shape":"AWSAccountID"},
2265
+ "OwningService":{"shape":"HostedZoneOwningService"}
2266
+ }
2267
+ },
2268
+ "HostedZoneOwningService":{
2269
+ "type":"string",
2270
+ "max":128
2271
+ },
2246
2272
  "HostedZoneRRSetCount":{"type":"long"},
2273
+ "HostedZoneSummaries":{
2274
+ "type":"list",
2275
+ "member":{
2276
+ "shape":"HostedZoneSummary",
2277
+ "locationName":"HostedZoneSummary"
2278
+ }
2279
+ },
2280
+ "HostedZoneSummary":{
2281
+ "type":"structure",
2282
+ "required":[
2283
+ "HostedZoneId",
2284
+ "Name",
2285
+ "Owner"
2286
+ ],
2287
+ "members":{
2288
+ "HostedZoneId":{"shape":"ResourceId"},
2289
+ "Name":{"shape":"DNSName"},
2290
+ "Owner":{"shape":"HostedZoneOwner"}
2291
+ }
2292
+ },
2247
2293
  "HostedZones":{
2248
2294
  "type":"list",
2249
2295
  "member":{
@@ -2473,6 +2519,47 @@
2473
2519
  "MaxItems":{"shape":"PageMaxItems"}
2474
2520
  }
2475
2521
  },
2522
+ "ListHostedZonesByVPCRequest":{
2523
+ "type":"structure",
2524
+ "required":[
2525
+ "VPCId",
2526
+ "VPCRegion"
2527
+ ],
2528
+ "members":{
2529
+ "VPCId":{
2530
+ "shape":"VPCId",
2531
+ "location":"querystring",
2532
+ "locationName":"vpcid"
2533
+ },
2534
+ "VPCRegion":{
2535
+ "shape":"VPCRegion",
2536
+ "location":"querystring",
2537
+ "locationName":"vpcregion"
2538
+ },
2539
+ "MaxItems":{
2540
+ "shape":"PageMaxItems",
2541
+ "location":"querystring",
2542
+ "locationName":"maxitems"
2543
+ },
2544
+ "NextToken":{
2545
+ "shape":"PaginationToken",
2546
+ "location":"querystring",
2547
+ "locationName":"nexttoken"
2548
+ }
2549
+ }
2550
+ },
2551
+ "ListHostedZonesByVPCResponse":{
2552
+ "type":"structure",
2553
+ "required":[
2554
+ "HostedZoneSummaries",
2555
+ "MaxItems"
2556
+ ],
2557
+ "members":{
2558
+ "HostedZoneSummaries":{"shape":"HostedZoneSummaries"},
2559
+ "MaxItems":{"shape":"PageMaxItems"},
2560
+ "NextToken":{"shape":"PaginationToken"}
2561
+ }
2562
+ },
2476
2563
  "ListHostedZonesRequest":{
2477
2564
  "type":"structure",
2478
2565
  "members":{
@@ -3012,7 +3099,7 @@
3012
3099
  "PageTruncated":{"type":"boolean"},
3013
3100
  "PaginationToken":{
3014
3101
  "type":"string",
3015
- "max":256
3102
+ "max":1024
3016
3103
  },
3017
3104
  "Period":{
3018
3105
  "type":"integer",
@@ -1247,7 +1247,8 @@
1247
1247
  "DELIVERY",
1248
1248
  "OPEN",
1249
1249
  "CLICK",
1250
- "RENDERING_FAILURE"
1250
+ "RENDERING_FAILURE",
1251
+ "DELIVERY_DELAY"
1251
1252
  ]
1252
1253
  },
1253
1254
  "EventTypes":{
@@ -450,7 +450,8 @@
450
450
  "ClusterId":{"shape":"ClusterId"},
451
451
  "SnowballType":{"shape":"SnowballType"},
452
452
  "ForwardingAddressId":{"shape":"AddressId"},
453
- "TaxDocuments":{"shape":"TaxDocuments"}
453
+ "TaxDocuments":{"shape":"TaxDocuments"},
454
+ "DeviceConfiguration":{"shape":"DeviceConfiguration"}
454
455
  }
455
456
  },
456
457
  "CreateJobResult":{
@@ -522,6 +523,12 @@
522
523
  "SubJobMetadata":{"shape":"JobMetadataList"}
523
524
  }
524
525
  },
526
+ "DeviceConfiguration":{
527
+ "type":"structure",
528
+ "members":{
529
+ "SnowconeDeviceConfiguration":{"shape":"SnowconeDeviceConfiguration"}
530
+ }
531
+ },
525
532
  "Ec2AmiResource":{
526
533
  "type":"structure",
527
534
  "required":["AmiId"],
@@ -699,7 +706,8 @@
699
706
  "JobLogInfo":{"shape":"JobLogs"},
700
707
  "ClusterId":{"shape":"String"},
701
708
  "ForwardingAddressId":{"shape":"AddressId"},
702
- "TaxDocuments":{"shape":"TaxDocuments"}
709
+ "TaxDocuments":{"shape":"TaxDocuments"},
710
+ "DeviceConfiguration":{"shape":"DeviceConfiguration"}
703
711
  }
704
712
  },
705
713
  "JobMetadataList":{
@@ -898,6 +906,7 @@
898
906
  "T100",
899
907
  "T42",
900
908
  "T98",
909
+ "T8",
901
910
  "NoPreference"
902
911
  ]
903
912
  },
@@ -908,9 +917,16 @@
908
917
  "EDGE",
909
918
  "EDGE_C",
910
919
  "EDGE_CG",
911
- "EDGE_S"
920
+ "EDGE_S",
921
+ "SNC1_HDD"
912
922
  ]
913
923
  },
924
+ "SnowconeDeviceConfiguration":{
925
+ "type":"structure",
926
+ "members":{
927
+ "WirelessConnection":{"shape":"WirelessConnection"}
928
+ }
929
+ },
914
930
  "SnsTopicARN":{
915
931
  "type":"string",
916
932
  "max":255,
@@ -972,6 +988,12 @@
972
988
  "type":"structure",
973
989
  "members":{
974
990
  }
991
+ },
992
+ "WirelessConnection":{
993
+ "type":"structure",
994
+ "members":{
995
+ "IsWifiEnabled":{"shape":"Boolean"}
996
+ }
975
997
  }
976
998
  }
977
999
  }