aws-sdk-core 2.11.410 → 2.11.411

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,200 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2019-12-04",
5
+ "endpointPrefix":"kinesisvideo",
6
+ "protocol":"rest-json",
7
+ "serviceAbbreviation":"Amazon Kinesis Video Signaling Channels",
8
+ "serviceFullName":"Amazon Kinesis Video Signaling Channels",
9
+ "serviceId":"Kinesis Video Signaling",
10
+ "signatureVersion":"v4",
11
+ "uid":"kinesis-video-signaling-2019-12-04"
12
+ },
13
+ "operations":{
14
+ "GetIceServerConfig":{
15
+ "name":"GetIceServerConfig",
16
+ "http":{
17
+ "method":"POST",
18
+ "requestUri":"/v1/get-ice-server-config"
19
+ },
20
+ "input":{"shape":"GetIceServerConfigRequest"},
21
+ "output":{"shape":"GetIceServerConfigResponse"},
22
+ "errors":[
23
+ {"shape":"InvalidClientException"},
24
+ {"shape":"SessionExpiredException"},
25
+ {"shape":"ClientLimitExceededException"},
26
+ {"shape":"ResourceNotFoundException"},
27
+ {"shape":"InvalidArgumentException"},
28
+ {"shape":"NotAuthorizedException"}
29
+ ]
30
+ },
31
+ "SendAlexaOfferToMaster":{
32
+ "name":"SendAlexaOfferToMaster",
33
+ "http":{
34
+ "method":"POST",
35
+ "requestUri":"/v1/send-alexa-offer-to-master"
36
+ },
37
+ "input":{"shape":"SendAlexaOfferToMasterRequest"},
38
+ "output":{"shape":"SendAlexaOfferToMasterResponse"},
39
+ "errors":[
40
+ {"shape":"ClientLimitExceededException"},
41
+ {"shape":"ResourceNotFoundException"},
42
+ {"shape":"InvalidArgumentException"},
43
+ {"shape":"NotAuthorizedException"}
44
+ ]
45
+ }
46
+ },
47
+ "shapes":{
48
+ "Answer":{
49
+ "type":"string",
50
+ "max":10000,
51
+ "min":1
52
+ },
53
+ "ClientId":{
54
+ "type":"string",
55
+ "max":256,
56
+ "min":1,
57
+ "pattern":"[a-zA-Z0-9_.-]+"
58
+ },
59
+ "ClientLimitExceededException":{
60
+ "type":"structure",
61
+ "members":{
62
+ "Message":{"shape":"ErrorMessage"}
63
+ },
64
+ "error":{"httpStatusCode":400},
65
+ "exception":true
66
+ },
67
+ "ErrorMessage":{"type":"string"},
68
+ "GetIceServerConfigRequest":{
69
+ "type":"structure",
70
+ "required":["ChannelARN"],
71
+ "members":{
72
+ "ChannelARN":{"shape":"ResourceARN"},
73
+ "ClientId":{"shape":"ClientId"},
74
+ "Service":{"shape":"Service"},
75
+ "Username":{"shape":"Username"}
76
+ }
77
+ },
78
+ "GetIceServerConfigResponse":{
79
+ "type":"structure",
80
+ "members":{
81
+ "IceServerList":{"shape":"IceServerList"}
82
+ }
83
+ },
84
+ "IceServer":{
85
+ "type":"structure",
86
+ "members":{
87
+ "Uris":{"shape":"Uris"},
88
+ "Username":{"shape":"Username"},
89
+ "Password":{"shape":"Password"},
90
+ "Ttl":{"shape":"Ttl"}
91
+ }
92
+ },
93
+ "IceServerList":{
94
+ "type":"list",
95
+ "member":{"shape":"IceServer"}
96
+ },
97
+ "InvalidArgumentException":{
98
+ "type":"structure",
99
+ "members":{
100
+ "Message":{"shape":"ErrorMessage"}
101
+ },
102
+ "error":{"httpStatusCode":400},
103
+ "exception":true
104
+ },
105
+ "InvalidClientException":{
106
+ "type":"structure",
107
+ "members":{
108
+ "message":{"shape":"errorMessage"}
109
+ },
110
+ "error":{"httpStatusCode":400},
111
+ "exception":true
112
+ },
113
+ "MessagePayload":{
114
+ "type":"string",
115
+ "max":10000,
116
+ "min":1,
117
+ "pattern":"[a-zA-Z0-9+/=]+"
118
+ },
119
+ "NotAuthorizedException":{
120
+ "type":"structure",
121
+ "members":{
122
+ "Message":{"shape":"ErrorMessage"}
123
+ },
124
+ "error":{"httpStatusCode":401},
125
+ "exception":true
126
+ },
127
+ "Password":{
128
+ "type":"string",
129
+ "max":256,
130
+ "min":1,
131
+ "pattern":"[a-zA-Z0-9_.-]+"
132
+ },
133
+ "ResourceARN":{
134
+ "type":"string",
135
+ "max":1024,
136
+ "min":1,
137
+ "pattern":"arn:aws:kinesisvideo:[a-z0-9-]+:[0-9]+:[a-z]+/[a-zA-Z0-9_.-]+/[0-9]+"
138
+ },
139
+ "ResourceNotFoundException":{
140
+ "type":"structure",
141
+ "members":{
142
+ "Message":{"shape":"ErrorMessage"}
143
+ },
144
+ "error":{"httpStatusCode":404},
145
+ "exception":true
146
+ },
147
+ "SendAlexaOfferToMasterRequest":{
148
+ "type":"structure",
149
+ "required":[
150
+ "ChannelARN",
151
+ "SenderClientId",
152
+ "MessagePayload"
153
+ ],
154
+ "members":{
155
+ "ChannelARN":{"shape":"ResourceARN"},
156
+ "SenderClientId":{"shape":"ClientId"},
157
+ "MessagePayload":{"shape":"MessagePayload"}
158
+ }
159
+ },
160
+ "SendAlexaOfferToMasterResponse":{
161
+ "type":"structure",
162
+ "members":{
163
+ "Answer":{"shape":"Answer"}
164
+ }
165
+ },
166
+ "Service":{
167
+ "type":"string",
168
+ "enum":["TURN"]
169
+ },
170
+ "SessionExpiredException":{
171
+ "type":"structure",
172
+ "members":{
173
+ "message":{"shape":"errorMessage"}
174
+ },
175
+ "error":{"httpStatusCode":400},
176
+ "exception":true
177
+ },
178
+ "Ttl":{
179
+ "type":"integer",
180
+ "max":86400,
181
+ "min":30
182
+ },
183
+ "Uri":{
184
+ "type":"string",
185
+ "max":256,
186
+ "min":1
187
+ },
188
+ "Uris":{
189
+ "type":"list",
190
+ "member":{"shape":"Uri"}
191
+ },
192
+ "Username":{
193
+ "type":"string",
194
+ "max":256,
195
+ "min":1,
196
+ "pattern":"[a-zA-Z0-9_.-]+"
197
+ },
198
+ "errorMessage":{"type":"string"}
199
+ }
200
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -11,6 +11,23 @@
11
11
  "uid":"kinesisvideo-2017-09-30"
12
12
  },
13
13
  "operations":{
14
+ "CreateSignalingChannel":{
15
+ "name":"CreateSignalingChannel",
16
+ "http":{
17
+ "method":"POST",
18
+ "requestUri":"/createSignalingChannel"
19
+ },
20
+ "input":{"shape":"CreateSignalingChannelInput"},
21
+ "output":{"shape":"CreateSignalingChannelOutput"},
22
+ "errors":[
23
+ {"shape":"InvalidArgumentException"},
24
+ {"shape":"ClientLimitExceededException"},
25
+ {"shape":"AccountChannelLimitExceededException"},
26
+ {"shape":"ResourceInUseException"},
27
+ {"shape":"AccessDeniedException"},
28
+ {"shape":"TagsPerResourceExceededLimitException"}
29
+ ]
30
+ },
14
31
  "CreateStream":{
15
32
  "name":"CreateStream",
16
33
  "http":{
@@ -29,6 +46,22 @@
29
46
  {"shape":"TagsPerResourceExceededLimitException"}
30
47
  ]
31
48
  },
49
+ "DeleteSignalingChannel":{
50
+ "name":"DeleteSignalingChannel",
51
+ "http":{
52
+ "method":"POST",
53
+ "requestUri":"/deleteSignalingChannel"
54
+ },
55
+ "input":{"shape":"DeleteSignalingChannelInput"},
56
+ "output":{"shape":"DeleteSignalingChannelOutput"},
57
+ "errors":[
58
+ {"shape":"InvalidArgumentException"},
59
+ {"shape":"ClientLimitExceededException"},
60
+ {"shape":"ResourceNotFoundException"},
61
+ {"shape":"AccessDeniedException"},
62
+ {"shape":"VersionMismatchException"}
63
+ ]
64
+ },
32
65
  "DeleteStream":{
33
66
  "name":"DeleteStream",
34
67
  "http":{
@@ -45,6 +78,21 @@
45
78
  {"shape":"VersionMismatchException"}
46
79
  ]
47
80
  },
81
+ "DescribeSignalingChannel":{
82
+ "name":"DescribeSignalingChannel",
83
+ "http":{
84
+ "method":"POST",
85
+ "requestUri":"/describeSignalingChannel"
86
+ },
87
+ "input":{"shape":"DescribeSignalingChannelInput"},
88
+ "output":{"shape":"DescribeSignalingChannelOutput"},
89
+ "errors":[
90
+ {"shape":"InvalidArgumentException"},
91
+ {"shape":"ClientLimitExceededException"},
92
+ {"shape":"ResourceNotFoundException"},
93
+ {"shape":"AccessDeniedException"}
94
+ ]
95
+ },
48
96
  "DescribeStream":{
49
97
  "name":"DescribeStream",
50
98
  "http":{
@@ -75,6 +123,36 @@
75
123
  {"shape":"NotAuthorizedException"}
76
124
  ]
77
125
  },
126
+ "GetSignalingChannelEndpoint":{
127
+ "name":"GetSignalingChannelEndpoint",
128
+ "http":{
129
+ "method":"POST",
130
+ "requestUri":"/getSignalingChannelEndpoint"
131
+ },
132
+ "input":{"shape":"GetSignalingChannelEndpointInput"},
133
+ "output":{"shape":"GetSignalingChannelEndpointOutput"},
134
+ "errors":[
135
+ {"shape":"InvalidArgumentException"},
136
+ {"shape":"ClientLimitExceededException"},
137
+ {"shape":"ResourceNotFoundException"},
138
+ {"shape":"ResourceInUseException"},
139
+ {"shape":"AccessDeniedException"}
140
+ ]
141
+ },
142
+ "ListSignalingChannels":{
143
+ "name":"ListSignalingChannels",
144
+ "http":{
145
+ "method":"POST",
146
+ "requestUri":"/listSignalingChannels"
147
+ },
148
+ "input":{"shape":"ListSignalingChannelsInput"},
149
+ "output":{"shape":"ListSignalingChannelsOutput"},
150
+ "errors":[
151
+ {"shape":"InvalidArgumentException"},
152
+ {"shape":"ClientLimitExceededException"},
153
+ {"shape":"AccessDeniedException"}
154
+ ]
155
+ },
78
156
  "ListStreams":{
79
157
  "name":"ListStreams",
80
158
  "http":{
@@ -88,6 +166,21 @@
88
166
  {"shape":"InvalidArgumentException"}
89
167
  ]
90
168
  },
169
+ "ListTagsForResource":{
170
+ "name":"ListTagsForResource",
171
+ "http":{
172
+ "method":"POST",
173
+ "requestUri":"/ListTagsForResource"
174
+ },
175
+ "input":{"shape":"ListTagsForResourceInput"},
176
+ "output":{"shape":"ListTagsForResourceOutput"},
177
+ "errors":[
178
+ {"shape":"InvalidArgumentException"},
179
+ {"shape":"ClientLimitExceededException"},
180
+ {"shape":"ResourceNotFoundException"},
181
+ {"shape":"AccessDeniedException"}
182
+ ]
183
+ },
91
184
  "ListTagsForStream":{
92
185
  "name":"ListTagsForStream",
93
186
  "http":{
@@ -104,6 +197,22 @@
104
197
  {"shape":"InvalidResourceFormatException"}
105
198
  ]
106
199
  },
200
+ "TagResource":{
201
+ "name":"TagResource",
202
+ "http":{
203
+ "method":"POST",
204
+ "requestUri":"/TagResource"
205
+ },
206
+ "input":{"shape":"TagResourceInput"},
207
+ "output":{"shape":"TagResourceOutput"},
208
+ "errors":[
209
+ {"shape":"InvalidArgumentException"},
210
+ {"shape":"ClientLimitExceededException"},
211
+ {"shape":"ResourceNotFoundException"},
212
+ {"shape":"AccessDeniedException"},
213
+ {"shape":"TagsPerResourceExceededLimitException"}
214
+ ]
215
+ },
107
216
  "TagStream":{
108
217
  "name":"TagStream",
109
218
  "http":{
@@ -121,6 +230,21 @@
121
230
  {"shape":"TagsPerResourceExceededLimitException"}
122
231
  ]
123
232
  },
233
+ "UntagResource":{
234
+ "name":"UntagResource",
235
+ "http":{
236
+ "method":"POST",
237
+ "requestUri":"/UntagResource"
238
+ },
239
+ "input":{"shape":"UntagResourceInput"},
240
+ "output":{"shape":"UntagResourceOutput"},
241
+ "errors":[
242
+ {"shape":"InvalidArgumentException"},
243
+ {"shape":"ClientLimitExceededException"},
244
+ {"shape":"ResourceNotFoundException"},
245
+ {"shape":"AccessDeniedException"}
246
+ ]
247
+ },
124
248
  "UntagStream":{
125
249
  "name":"UntagStream",
126
250
  "http":{
@@ -154,6 +278,23 @@
154
278
  {"shape":"VersionMismatchException"}
155
279
  ]
156
280
  },
281
+ "UpdateSignalingChannel":{
282
+ "name":"UpdateSignalingChannel",
283
+ "http":{
284
+ "method":"POST",
285
+ "requestUri":"/updateSignalingChannel"
286
+ },
287
+ "input":{"shape":"UpdateSignalingChannelInput"},
288
+ "output":{"shape":"UpdateSignalingChannelOutput"},
289
+ "errors":[
290
+ {"shape":"InvalidArgumentException"},
291
+ {"shape":"ClientLimitExceededException"},
292
+ {"shape":"ResourceNotFoundException"},
293
+ {"shape":"ResourceInUseException"},
294
+ {"shape":"AccessDeniedException"},
295
+ {"shape":"VersionMismatchException"}
296
+ ]
297
+ },
157
298
  "UpdateStream":{
158
299
  "name":"UpdateStream",
159
300
  "http":{
@@ -184,6 +325,22 @@
184
325
  "GET_DASH_STREAMING_SESSION_URL"
185
326
  ]
186
327
  },
328
+ "AccessDeniedException":{
329
+ "type":"structure",
330
+ "members":{
331
+ "Message":{"shape":"ErrorMessage"}
332
+ },
333
+ "error":{"httpStatusCode":401},
334
+ "exception":true
335
+ },
336
+ "AccountChannelLimitExceededException":{
337
+ "type":"structure",
338
+ "members":{
339
+ "Message":{"shape":"ErrorMessage"}
340
+ },
341
+ "error":{"httpStatusCode":400},
342
+ "exception":true
343
+ },
187
344
  "AccountStreamLimitExceededException":{
188
345
  "type":"structure",
189
346
  "members":{
@@ -192,6 +349,53 @@
192
349
  "error":{"httpStatusCode":400},
193
350
  "exception":true
194
351
  },
352
+ "ChannelInfo":{
353
+ "type":"structure",
354
+ "members":{
355
+ "ChannelName":{"shape":"ChannelName"},
356
+ "ChannelARN":{"shape":"ResourceARN"},
357
+ "ChannelType":{"shape":"ChannelType"},
358
+ "ChannelStatus":{"shape":"Status"},
359
+ "CreationTime":{"shape":"Timestamp"},
360
+ "SingleMasterConfiguration":{"shape":"SingleMasterConfiguration"},
361
+ "Version":{"shape":"Version"}
362
+ }
363
+ },
364
+ "ChannelInfoList":{
365
+ "type":"list",
366
+ "member":{"shape":"ChannelInfo"}
367
+ },
368
+ "ChannelName":{
369
+ "type":"string",
370
+ "max":256,
371
+ "min":1,
372
+ "pattern":"[a-zA-Z0-9_.-]+"
373
+ },
374
+ "ChannelNameCondition":{
375
+ "type":"structure",
376
+ "members":{
377
+ "ComparisonOperator":{"shape":"ComparisonOperator"},
378
+ "ComparisonValue":{"shape":"ChannelName"}
379
+ }
380
+ },
381
+ "ChannelProtocol":{
382
+ "type":"string",
383
+ "enum":[
384
+ "WSS",
385
+ "HTTPS"
386
+ ]
387
+ },
388
+ "ChannelRole":{
389
+ "type":"string",
390
+ "enum":[
391
+ "MASTER",
392
+ "VIEWER"
393
+ ]
394
+ },
395
+ "ChannelType":{
396
+ "type":"string",
397
+ "enum":["SINGLE_MASTER"]
398
+ },
195
399
  "ClientLimitExceededException":{
196
400
  "type":"structure",
197
401
  "members":{
@@ -204,6 +408,22 @@
204
408
  "type":"string",
205
409
  "enum":["BEGINS_WITH"]
206
410
  },
411
+ "CreateSignalingChannelInput":{
412
+ "type":"structure",
413
+ "required":["ChannelName"],
414
+ "members":{
415
+ "ChannelName":{"shape":"ChannelName"},
416
+ "ChannelType":{"shape":"ChannelType"},
417
+ "SingleMasterConfiguration":{"shape":"SingleMasterConfiguration"},
418
+ "Tags":{"shape":"TagOnCreateList"}
419
+ }
420
+ },
421
+ "CreateSignalingChannelOutput":{
422
+ "type":"structure",
423
+ "members":{
424
+ "ChannelARN":{"shape":"ResourceARN"}
425
+ }
426
+ },
207
427
  "CreateStreamInput":{
208
428
  "type":"structure",
209
429
  "required":["StreamName"],
@@ -231,6 +451,19 @@
231
451
  "type":"integer",
232
452
  "min":0
233
453
  },
454
+ "DeleteSignalingChannelInput":{
455
+ "type":"structure",
456
+ "required":["ChannelARN"],
457
+ "members":{
458
+ "ChannelARN":{"shape":"ResourceARN"},
459
+ "CurrentVersion":{"shape":"Version"}
460
+ }
461
+ },
462
+ "DeleteSignalingChannelOutput":{
463
+ "type":"structure",
464
+ "members":{
465
+ }
466
+ },
234
467
  "DeleteStreamInput":{
235
468
  "type":"structure",
236
469
  "required":["StreamARN"],
@@ -244,6 +477,19 @@
244
477
  "members":{
245
478
  }
246
479
  },
480
+ "DescribeSignalingChannelInput":{
481
+ "type":"structure",
482
+ "members":{
483
+ "ChannelName":{"shape":"ChannelName"},
484
+ "ChannelARN":{"shape":"ResourceARN"}
485
+ }
486
+ },
487
+ "DescribeSignalingChannelOutput":{
488
+ "type":"structure",
489
+ "members":{
490
+ "ChannelInfo":{"shape":"ChannelInfo"}
491
+ }
492
+ },
247
493
  "DescribeStreamInput":{
248
494
  "type":"structure",
249
495
  "members":{
@@ -287,6 +533,20 @@
287
533
  "DataEndpoint":{"shape":"DataEndpoint"}
288
534
  }
289
535
  },
536
+ "GetSignalingChannelEndpointInput":{
537
+ "type":"structure",
538
+ "required":["ChannelARN"],
539
+ "members":{
540
+ "ChannelARN":{"shape":"ResourceARN"},
541
+ "SingleMasterChannelEndpointConfiguration":{"shape":"SingleMasterChannelEndpointConfiguration"}
542
+ }
543
+ },
544
+ "GetSignalingChannelEndpointOutput":{
545
+ "type":"structure",
546
+ "members":{
547
+ "ResourceEndpointList":{"shape":"ResourceEndpointList"}
548
+ }
549
+ },
290
550
  "InvalidArgumentException":{
291
551
  "type":"structure",
292
552
  "members":{
@@ -316,6 +576,27 @@
316
576
  "max":2048,
317
577
  "min":1
318
578
  },
579
+ "ListOfProtocols":{
580
+ "type":"list",
581
+ "member":{"shape":"ChannelProtocol"},
582
+ "max":5,
583
+ "min":1
584
+ },
585
+ "ListSignalingChannelsInput":{
586
+ "type":"structure",
587
+ "members":{
588
+ "MaxResults":{"shape":"ListStreamsInputLimit"},
589
+ "NextToken":{"shape":"NextToken"},
590
+ "ChannelNameCondition":{"shape":"ChannelNameCondition"}
591
+ }
592
+ },
593
+ "ListSignalingChannelsOutput":{
594
+ "type":"structure",
595
+ "members":{
596
+ "ChannelInfoList":{"shape":"ChannelInfoList"},
597
+ "NextToken":{"shape":"NextToken"}
598
+ }
599
+ },
319
600
  "ListStreamsInput":{
320
601
  "type":"structure",
321
602
  "members":{
@@ -336,6 +617,21 @@
336
617
  "NextToken":{"shape":"NextToken"}
337
618
  }
338
619
  },
620
+ "ListTagsForResourceInput":{
621
+ "type":"structure",
622
+ "required":["ResourceARN"],
623
+ "members":{
624
+ "NextToken":{"shape":"NextToken"},
625
+ "ResourceARN":{"shape":"ResourceARN"}
626
+ }
627
+ },
628
+ "ListTagsForResourceOutput":{
629
+ "type":"structure",
630
+ "members":{
631
+ "NextToken":{"shape":"NextToken"},
632
+ "Tags":{"shape":"ResourceTags"}
633
+ }
634
+ },
339
635
  "ListTagsForStreamInput":{
340
636
  "type":"structure",
341
637
  "members":{
@@ -357,10 +653,16 @@
357
653
  "min":1,
358
654
  "pattern":"[\\w\\-\\.\\+]+/[\\w\\-\\.\\+]+(,[\\w\\-\\.\\+]+/[\\w\\-\\.\\+]+)*"
359
655
  },
656
+ "MessageTtlSeconds":{
657
+ "type":"integer",
658
+ "max":120,
659
+ "min":5
660
+ },
360
661
  "NextToken":{
361
662
  "type":"string",
362
663
  "max":512,
363
- "min":0
664
+ "min":0,
665
+ "pattern":"[a-zA-Z0-9+/=]*"
364
666
  },
365
667
  "NotAuthorizedException":{
366
668
  "type":"structure",
@@ -376,6 +678,18 @@
376
678
  "min":1,
377
679
  "pattern":"arn:aws:kinesisvideo:[a-z0-9-]+:[0-9]+:[a-z]+/[a-zA-Z0-9_.-]+/[0-9]+"
378
680
  },
681
+ "ResourceEndpoint":{"type":"string"},
682
+ "ResourceEndpointList":{
683
+ "type":"list",
684
+ "member":{"shape":"ResourceEndpointListItem"}
685
+ },
686
+ "ResourceEndpointListItem":{
687
+ "type":"structure",
688
+ "members":{
689
+ "Protocol":{"shape":"ChannelProtocol"},
690
+ "ResourceEndpoint":{"shape":"ResourceEndpoint"}
691
+ }
692
+ },
379
693
  "ResourceInUseException":{
380
694
  "type":"structure",
381
695
  "members":{
@@ -399,6 +713,19 @@
399
713
  "max":50,
400
714
  "min":1
401
715
  },
716
+ "SingleMasterChannelEndpointConfiguration":{
717
+ "type":"structure",
718
+ "members":{
719
+ "Protocols":{"shape":"ListOfProtocols"},
720
+ "Role":{"shape":"ChannelRole"}
721
+ }
722
+ },
723
+ "SingleMasterConfiguration":{
724
+ "type":"structure",
725
+ "members":{
726
+ "MessageTtlSeconds":{"shape":"MessageTtlSeconds"}
727
+ }
728
+ },
402
729
  "Status":{
403
730
  "type":"string",
404
731
  "enum":[
@@ -439,10 +766,22 @@
439
766
  "ComparisonValue":{"shape":"StreamName"}
440
767
  }
441
768
  },
769
+ "Tag":{
770
+ "type":"structure",
771
+ "required":[
772
+ "Key",
773
+ "Value"
774
+ ],
775
+ "members":{
776
+ "Key":{"shape":"TagKey"},
777
+ "Value":{"shape":"TagValue"}
778
+ }
779
+ },
442
780
  "TagKey":{
443
781
  "type":"string",
444
782
  "max":128,
445
- "min":1
783
+ "min":1,
784
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
446
785
  },
447
786
  "TagKeyList":{
448
787
  "type":"list",
@@ -450,6 +789,34 @@
450
789
  "max":50,
451
790
  "min":1
452
791
  },
792
+ "TagList":{
793
+ "type":"list",
794
+ "member":{"shape":"Tag"},
795
+ "max":50,
796
+ "min":1
797
+ },
798
+ "TagOnCreateList":{
799
+ "type":"list",
800
+ "member":{"shape":"Tag"},
801
+ "max":50,
802
+ "min":0
803
+ },
804
+ "TagResourceInput":{
805
+ "type":"structure",
806
+ "required":[
807
+ "ResourceARN",
808
+ "Tags"
809
+ ],
810
+ "members":{
811
+ "ResourceARN":{"shape":"ResourceARN"},
812
+ "Tags":{"shape":"TagList"}
813
+ }
814
+ },
815
+ "TagResourceOutput":{
816
+ "type":"structure",
817
+ "members":{
818
+ }
819
+ },
453
820
  "TagStreamInput":{
454
821
  "type":"structure",
455
822
  "required":["Tags"],
@@ -467,7 +834,8 @@
467
834
  "TagValue":{
468
835
  "type":"string",
469
836
  "max":256,
470
- "min":0
837
+ "min":0,
838
+ "pattern":"[\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*"
471
839
  },
472
840
  "TagsPerResourceExceededLimitException":{
473
841
  "type":"structure",
@@ -478,6 +846,22 @@
478
846
  "exception":true
479
847
  },
480
848
  "Timestamp":{"type":"timestamp"},
849
+ "UntagResourceInput":{
850
+ "type":"structure",
851
+ "required":[
852
+ "ResourceARN",
853
+ "TagKeyList"
854
+ ],
855
+ "members":{
856
+ "ResourceARN":{"shape":"ResourceARN"},
857
+ "TagKeyList":{"shape":"TagKeyList"}
858
+ }
859
+ },
860
+ "UntagResourceOutput":{
861
+ "type":"structure",
862
+ "members":{
863
+ }
864
+ },
481
865
  "UntagStreamInput":{
482
866
  "type":"structure",
483
867
  "required":["TagKeyList"],
@@ -519,6 +903,23 @@
519
903
  "members":{
520
904
  }
521
905
  },
906
+ "UpdateSignalingChannelInput":{
907
+ "type":"structure",
908
+ "required":[
909
+ "ChannelARN",
910
+ "CurrentVersion"
911
+ ],
912
+ "members":{
913
+ "ChannelARN":{"shape":"ResourceARN"},
914
+ "CurrentVersion":{"shape":"Version"},
915
+ "SingleMasterConfiguration":{"shape":"SingleMasterConfiguration"}
916
+ }
917
+ },
918
+ "UpdateSignalingChannelOutput":{
919
+ "type":"structure",
920
+ "members":{
921
+ }
922
+ },
522
923
  "UpdateStreamInput":{
523
924
  "type":"structure",
524
925
  "required":["CurrentVersion"],