-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathopenapi.json
4183 lines (4183 loc) · 131 KB
/
openapi.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"swagger": "2.0",
"info": {
"contact": {
"email": "[email protected]",
"name": "Mike Ralphson",
"url": "https://github.com/mermade/aws2openapi",
"x-twitter": "PermittedSoc"
},
"description": "<p/>",
"license": {
"name": "Apache 2.0 License",
"url": "http://www.apache.org/licenses/"
},
"termsOfService": "https://aws.amazon.com/service-terms/",
"title": "Amazon Kinesis Video Streams",
"version": "2017-09-30",
"x-apiClientRegistration": {
"url": "https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct"
},
"x-apisguru-categories": [
"cloud"
],
"x-logo": {
"backgroundColor": "#FFFFFF",
"url": "https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png"
},
"x-origin": [
{
"contentType": "application/json",
"converter": {
"url": "https://github.com/mermade/aws2openapi",
"version": "1.0.0"
},
"url": "https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesisvideo-2017-09-30.normal.json",
"x-apisguru-driver": "external"
}
],
"x-preferred": true,
"x-providerName": "amazonaws.com",
"x-release": "v4",
"x-serviceName": "kinesisvideo",
"x-datafire": {
"name": "amazonaws_kinesisvideo",
"type": "openapi"
}
},
"host": "kinesisvideo.us-east-1.amazonaws.com",
"basePath": "/",
"schemes": [
"http"
],
"paths": {
"/ListTagsForResource": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"properties": {
"NextToken": {
"description": "If you specify this parameter and the result of a <code>ListTagsForResource</code> call is truncated, the response includes a token that you can use in the next request to fetch the next batch of tags. ",
"maxLength": 512,
"minLength": 0,
"pattern": "[a-zA-Z0-9+/=]*",
"type": "string"
},
"ResourceARN": {
"description": "The Amazon Resource Name (ARN) of the signaling channel for which you want to list tags.",
"maxLength": 1024,
"minLength": 1,
"pattern": "arn:aws:kinesisvideo:[a-z0-9-]+:[0-9]+:[a-z]+/[a-zA-Z0-9_.-]+/[0-9]+",
"type": "string"
}
},
"required": [
"ResourceARN"
],
"type": "object"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/ListTagsForResourceOutput"
}
},
"480": {
"description": "InvalidArgumentException",
"schema": {
"$ref": "#/definitions/InvalidArgumentException"
}
},
"481": {
"description": "ClientLimitExceededException",
"schema": {
"$ref": "#/definitions/ClientLimitExceededException"
}
},
"482": {
"description": "ResourceNotFoundException",
"schema": {
"$ref": "#/definitions/ResourceNotFoundException"
}
},
"483": {
"description": "AccessDeniedException",
"schema": {
"$ref": "#/definitions/AccessDeniedException"
}
}
},
"description": "Returns a list of tags associated with the specified signaling channel.",
"operationId": "ListTagsForResource"
}
},
"/TagResource": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"properties": {
"ResourceARN": {
"description": "The Amazon Resource Name (ARN) of the signaling channel to which you want to add tags.",
"maxLength": 1024,
"minLength": 1,
"pattern": "arn:aws:kinesisvideo:[a-z0-9-]+:[0-9]+:[a-z]+/[a-zA-Z0-9_.-]+/[0-9]+",
"type": "string"
},
"Tags": {
"description": "A list of tags to associate with the specified signaling channel. Each tag is a key-value pair.",
"items": {
"$ref": "#/definitions/Tag"
},
"maxItems": 50,
"minItems": 1,
"type": "array"
}
},
"required": [
"ResourceARN",
"Tags"
],
"type": "object"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/TagResourceOutput"
}
},
"480": {
"description": "InvalidArgumentException",
"schema": {
"$ref": "#/definitions/InvalidArgumentException"
}
},
"481": {
"description": "ClientLimitExceededException",
"schema": {
"$ref": "#/definitions/ClientLimitExceededException"
}
},
"482": {
"description": "ResourceNotFoundException",
"schema": {
"$ref": "#/definitions/ResourceNotFoundException"
}
},
"483": {
"description": "AccessDeniedException",
"schema": {
"$ref": "#/definitions/AccessDeniedException"
}
},
"484": {
"description": "TagsPerResourceExceededLimitException",
"schema": {
"$ref": "#/definitions/TagsPerResourceExceededLimitException"
}
}
},
"description": "Adds one or more tags to a signaling channel. A <i>tag</i> is a key-value pair (the value is optional) that you can define and assign to AWS resources. If you specify a tag that already exists, the tag value is replaced with the value that you specify in the request. For more information, see <a href=\"https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html\">Using Cost Allocation Tags</a> in the <i>AWS Billing and Cost Management User Guide</i>.",
"operationId": "TagResource"
}
},
"/UntagResource": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"properties": {
"ResourceARN": {
"description": "The Amazon Resource Name (ARN) of the signaling channel from which you want to remove tags.",
"maxLength": 1024,
"minLength": 1,
"pattern": "arn:aws:kinesisvideo:[a-z0-9-]+:[0-9]+:[a-z]+/[a-zA-Z0-9_.-]+/[0-9]+",
"type": "string"
},
"TagKeyList": {
"description": "A list of the keys of the tags that you want to remove.",
"items": {
"$ref": "#/definitions/TagKey"
},
"maxItems": 50,
"minItems": 1,
"type": "array"
}
},
"required": [
"ResourceARN",
"TagKeyList"
],
"type": "object"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/UntagResourceOutput"
}
},
"480": {
"description": "InvalidArgumentException",
"schema": {
"$ref": "#/definitions/InvalidArgumentException"
}
},
"481": {
"description": "ClientLimitExceededException",
"schema": {
"$ref": "#/definitions/ClientLimitExceededException"
}
},
"482": {
"description": "ResourceNotFoundException",
"schema": {
"$ref": "#/definitions/ResourceNotFoundException"
}
},
"483": {
"description": "AccessDeniedException",
"schema": {
"$ref": "#/definitions/AccessDeniedException"
}
}
},
"description": "Removes one or more tags from a signaling channel. In the request, specify only a tag key or keys; don't specify the value. If you specify a tag key that does not exist, it's ignored.",
"operationId": "UntagResource"
}
},
"/createSignalingChannel": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"properties": {
"ChannelName": {
"description": "A name for the signaling channel that you are creating. It must be unique for each AWS account and AWS Region.",
"maxLength": 256,
"minLength": 1,
"pattern": "[a-zA-Z0-9_.-]+",
"type": "string"
},
"ChannelType": {
"description": "A type of the signaling channel that you are creating. Currently, <code>SINGLE_MASTER</code> is the only supported channel type. ",
"enum": [
"SINGLE_MASTER"
],
"type": "string"
},
"SingleMasterConfiguration": {
"description": "A structure that contains the configuration for the <code>SINGLE_MASTER</code> channel type.",
"properties": {
"MessageTtlSeconds": {
"allOf": [
{
"$ref": "#/definitions/MessageTtlSeconds"
},
{
"description": "The period of time a signaling channel retains underlivered messages before they are discarded."
}
]
}
},
"type": "object"
},
"Tags": {
"description": "A set of tags (key-value pairs) that you want to associate with this channel.",
"items": {
"$ref": "#/definitions/Tag"
},
"maxItems": 50,
"minItems": 0,
"type": "array"
}
},
"required": [
"ChannelName"
],
"type": "object"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/CreateSignalingChannelOutput"
}
},
"480": {
"description": "InvalidArgumentException",
"schema": {
"$ref": "#/definitions/InvalidArgumentException"
}
},
"481": {
"description": "ClientLimitExceededException",
"schema": {
"$ref": "#/definitions/ClientLimitExceededException"
}
},
"482": {
"description": "AccountChannelLimitExceededException",
"schema": {
"$ref": "#/definitions/AccountChannelLimitExceededException"
}
},
"483": {
"description": "ResourceInUseException",
"schema": {
"$ref": "#/definitions/ResourceInUseException"
}
},
"484": {
"description": "AccessDeniedException",
"schema": {
"$ref": "#/definitions/AccessDeniedException"
}
},
"485": {
"description": "TagsPerResourceExceededLimitException",
"schema": {
"$ref": "#/definitions/TagsPerResourceExceededLimitException"
}
}
},
"description": "<p>Creates a signaling channel. </p> <p> <code>CreateSignalingChannel</code> is an asynchronous operation.</p>",
"operationId": "CreateSignalingChannel"
}
},
"/createStream": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"properties": {
"DataRetentionInHours": {
"description": "<p>The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream.</p> <p>The default value is 0, indicating that the stream does not persist data.</p> <p>When the <code>DataRetentionInHours</code> value is 0, consumers can still consume the fragments that remain in the service host buffer, which has a retention time limit of 5 minutes and a retention memory limit of 200 MB. Fragments are removed from the buffer when either limit is reached.</p>",
"minimum": 0,
"type": "integer"
},
"DeviceName": {
"description": "<p>The name of the device that is writing to the stream. </p> <note> <p>In the current implementation, Kinesis Video Streams does not use this name.</p> </note>",
"maxLength": 128,
"minLength": 1,
"pattern": "[a-zA-Z0-9_.-]+",
"type": "string"
},
"KmsKeyId": {
"description": "<p>The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data.</p> <p>If no key ID is specified, the default, Kinesis Video-managed key (<code>aws/kinesisvideo</code>) is used.</p> <p> For more information, see <a href=\"https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters\">DescribeKey</a>. </p>",
"maxLength": 2048,
"minLength": 1,
"pattern": ".+",
"type": "string"
},
"MediaType": {
"description": "<p>The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see <a href=\"http://www.iana.org/assignments/media-types/media-types.xhtml\">Media Types</a>. If you choose to specify the <code>MediaType</code>, see <a href=\"https://tools.ietf.org/html/rfc6838#section-4.2\">Naming Requirements</a> for guidelines.</p> <p>Example valid values include \"video/h264\" and \"video/h264,audio/aac\".</p> <p>This parameter is optional; the default value is <code>null</code> (or empty in JSON).</p>",
"maxLength": 128,
"minLength": 1,
"pattern": "[\\w\\-\\.\\+]+/[\\w\\-\\.\\+]+(,[\\w\\-\\.\\+]+/[\\w\\-\\.\\+]+)*",
"type": "string"
},
"StreamName": {
"description": "<p>A name for the stream that you are creating.</p> <p>The stream name is an identifier for the stream, and must be unique for each account and region.</p>",
"maxLength": 256,
"minLength": 1,
"pattern": "[a-zA-Z0-9_.-]+",
"type": "string"
},
"Tags": {
"additionalProperties": {
"$ref": "#/definitions/TagValue"
},
"description": "A list of tags to associate with the specified stream. Each tag is a key-value pair (the value is optional).",
"maxProperties": 50,
"minProperties": 1,
"type": "object"
}
},
"required": [
"StreamName"
],
"type": "object"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/CreateStreamOutput"
}
},
"480": {
"description": "AccountStreamLimitExceededException",
"schema": {
"$ref": "#/definitions/AccountStreamLimitExceededException"
}
},
"481": {
"description": "DeviceStreamLimitExceededException",
"schema": {
"$ref": "#/definitions/DeviceStreamLimitExceededException"
}
},
"482": {
"description": "ResourceInUseException",
"schema": {
"$ref": "#/definitions/ResourceInUseException"
}
},
"483": {
"description": "InvalidDeviceException",
"schema": {
"$ref": "#/definitions/InvalidDeviceException"
}
},
"484": {
"description": "InvalidArgumentException",
"schema": {
"$ref": "#/definitions/InvalidArgumentException"
}
},
"485": {
"description": "ClientLimitExceededException",
"schema": {
"$ref": "#/definitions/ClientLimitExceededException"
}
},
"486": {
"description": "TagsPerResourceExceededLimitException",
"schema": {
"$ref": "#/definitions/TagsPerResourceExceededLimitException"
}
}
},
"description": "<p>Creates a new Kinesis video stream. </p> <p>When you create a new stream, Kinesis Video Streams assigns it a version number. When you change the stream's metadata, Kinesis Video Streams updates the version. </p> <p> <code>CreateStream</code> is an asynchronous operation.</p> <p>For information about how the service works, see <a href=\"https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/how-it-works.html\">How it Works</a>. </p> <p>You must have permissions for the <code>KinesisVideo:CreateStream</code> action.</p>",
"operationId": "CreateStream"
}
},
"/deleteSignalingChannel": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"properties": {
"ChannelARN": {
"description": "The Amazon Resource Name (ARN) of the signaling channel that you want to delete.",
"maxLength": 1024,
"minLength": 1,
"pattern": "arn:aws:kinesisvideo:[a-z0-9-]+:[0-9]+:[a-z]+/[a-zA-Z0-9_.-]+/[0-9]+",
"type": "string"
},
"CurrentVersion": {
"description": "The current version of the signaling channel that you want to delete. You can obtain the current version by invoking the <code>DescribeSignalingChannel</code> or <code>ListSignalingChannels</code> API operations.",
"maxLength": 64,
"minLength": 1,
"pattern": "[a-zA-Z0-9]+",
"type": "string"
}
},
"required": [
"ChannelARN"
],
"type": "object"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/DeleteSignalingChannelOutput"
}
},
"480": {
"description": "InvalidArgumentException",
"schema": {
"$ref": "#/definitions/InvalidArgumentException"
}
},
"481": {
"description": "ClientLimitExceededException",
"schema": {
"$ref": "#/definitions/ClientLimitExceededException"
}
},
"482": {
"description": "ResourceNotFoundException",
"schema": {
"$ref": "#/definitions/ResourceNotFoundException"
}
},
"483": {
"description": "AccessDeniedException",
"schema": {
"$ref": "#/definitions/AccessDeniedException"
}
},
"484": {
"description": "VersionMismatchException",
"schema": {
"$ref": "#/definitions/VersionMismatchException"
}
},
"485": {
"description": "ResourceInUseException",
"schema": {
"$ref": "#/definitions/ResourceInUseException"
}
}
},
"description": "Deletes a specified signaling channel. <code>DeleteSignalingChannel</code> is an asynchronous operation. If you don't specify the channel's current version, the most recent version is deleted.",
"operationId": "DeleteSignalingChannel"
}
},
"/deleteStream": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"properties": {
"CurrentVersion": {
"description": "<p>Optional: The version of the stream that you want to delete. </p> <p>Specify the version as a safeguard to ensure that your are deleting the correct stream. To get the stream version, use the <code>DescribeStream</code> API.</p> <p>If not specified, only the <code>CreationTime</code> is checked before deleting the stream.</p>",
"maxLength": 64,
"minLength": 1,
"pattern": "[a-zA-Z0-9]+",
"type": "string"
},
"StreamARN": {
"description": "The Amazon Resource Name (ARN) of the stream that you want to delete. ",
"maxLength": 1024,
"minLength": 1,
"pattern": "arn:aws:kinesisvideo:[a-z0-9-]+:[0-9]+:[a-z]+/[a-zA-Z0-9_.-]+/[0-9]+",
"type": "string"
}
},
"required": [
"StreamARN"
],
"type": "object"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/DeleteStreamOutput"
}
},
"480": {
"description": "ClientLimitExceededException",
"schema": {
"$ref": "#/definitions/ClientLimitExceededException"
}
},
"481": {
"description": "InvalidArgumentException",
"schema": {
"$ref": "#/definitions/InvalidArgumentException"
}
},
"482": {
"description": "ResourceNotFoundException",
"schema": {
"$ref": "#/definitions/ResourceNotFoundException"
}
},
"483": {
"description": "NotAuthorizedException",
"schema": {
"$ref": "#/definitions/NotAuthorizedException"
}
},
"484": {
"description": "VersionMismatchException",
"schema": {
"$ref": "#/definitions/VersionMismatchException"
}
},
"485": {
"description": "ResourceInUseException",
"schema": {
"$ref": "#/definitions/ResourceInUseException"
}
}
},
"description": "<p>Deletes a Kinesis video stream and the data contained in the stream. </p> <p>This method marks the stream for deletion, and makes the data in the stream inaccessible immediately.</p> <p> </p> <p> To ensure that you have the latest version of the stream before deleting it, you can specify the stream version. Kinesis Video Streams assigns a version to each stream. When you update a stream, Kinesis Video Streams assigns a new version number. To get the latest stream version, use the <code>DescribeStream</code> API. </p> <p>This operation requires permission for the <code>KinesisVideo:DeleteStream</code> action.</p>",
"operationId": "DeleteStream"
}
},
"/describeSignalingChannel": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{