aws-sdk-core 2.11.178 → 2.11.179

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -250,6 +250,20 @@
250
250
  {"shape":"ServiceUnavailableException"}
251
251
  ]
252
252
  },
253
+ "DescribeQueries":{
254
+ "name":"DescribeQueries",
255
+ "http":{
256
+ "method":"POST",
257
+ "requestUri":"/"
258
+ },
259
+ "input":{"shape":"DescribeQueriesRequest"},
260
+ "output":{"shape":"DescribeQueriesResponse"},
261
+ "errors":[
262
+ {"shape":"InvalidParameterException"},
263
+ {"shape":"ResourceNotFoundException"},
264
+ {"shape":"ServiceUnavailableException"}
265
+ ]
266
+ },
253
267
  "DescribeResourcePolicies":{
254
268
  "name":"DescribeResourcePolicies",
255
269
  "http":{
@@ -319,6 +333,50 @@
319
333
  {"shape":"ServiceUnavailableException"}
320
334
  ]
321
335
  },
336
+ "GetLogGroupFields":{
337
+ "name":"GetLogGroupFields",
338
+ "http":{
339
+ "method":"POST",
340
+ "requestUri":"/"
341
+ },
342
+ "input":{"shape":"GetLogGroupFieldsRequest"},
343
+ "output":{"shape":"GetLogGroupFieldsResponse"},
344
+ "errors":[
345
+ {"shape":"InvalidParameterException"},
346
+ {"shape":"LimitExceededException"},
347
+ {"shape":"ResourceNotFoundException"},
348
+ {"shape":"ServiceUnavailableException"}
349
+ ]
350
+ },
351
+ "GetLogRecord":{
352
+ "name":"GetLogRecord",
353
+ "http":{
354
+ "method":"POST",
355
+ "requestUri":"/"
356
+ },
357
+ "input":{"shape":"GetLogRecordRequest"},
358
+ "output":{"shape":"GetLogRecordResponse"},
359
+ "errors":[
360
+ {"shape":"InvalidParameterException"},
361
+ {"shape":"LimitExceededException"},
362
+ {"shape":"ResourceNotFoundException"},
363
+ {"shape":"ServiceUnavailableException"}
364
+ ]
365
+ },
366
+ "GetQueryResults":{
367
+ "name":"GetQueryResults",
368
+ "http":{
369
+ "method":"POST",
370
+ "requestUri":"/"
371
+ },
372
+ "input":{"shape":"GetQueryResultsRequest"},
373
+ "output":{"shape":"GetQueryResultsResponse"},
374
+ "errors":[
375
+ {"shape":"InvalidParameterException"},
376
+ {"shape":"ResourceNotFoundException"},
377
+ {"shape":"ServiceUnavailableException"}
378
+ ]
379
+ },
322
380
  "ListTagsLogGroup":{
323
381
  "name":"ListTagsLogGroup",
324
382
  "http":{
@@ -434,6 +492,36 @@
434
492
  {"shape":"ServiceUnavailableException"}
435
493
  ]
436
494
  },
495
+ "StartQuery":{
496
+ "name":"StartQuery",
497
+ "http":{
498
+ "method":"POST",
499
+ "requestUri":"/"
500
+ },
501
+ "input":{"shape":"StartQueryRequest"},
502
+ "output":{"shape":"StartQueryResponse"},
503
+ "errors":[
504
+ {"shape":"MalformedQueryException"},
505
+ {"shape":"InvalidParameterException"},
506
+ {"shape":"LimitExceededException"},
507
+ {"shape":"ResourceNotFoundException"},
508
+ {"shape":"ServiceUnavailableException"}
509
+ ]
510
+ },
511
+ "StopQuery":{
512
+ "name":"StopQuery",
513
+ "http":{
514
+ "method":"POST",
515
+ "requestUri":"/"
516
+ },
517
+ "input":{"shape":"StopQueryRequest"},
518
+ "output":{"shape":"StopQueryResponse"},
519
+ "errors":[
520
+ {"shape":"InvalidParameterException"},
521
+ {"shape":"ResourceNotFoundException"},
522
+ {"shape":"ServiceUnavailableException"}
523
+ ]
524
+ },
437
525
  "TagLogGroup":{
438
526
  "name":"TagLogGroup",
439
527
  "http":{
@@ -697,6 +785,27 @@
697
785
  "nextToken":{"shape":"NextToken"}
698
786
  }
699
787
  },
788
+ "DescribeQueriesMaxResults":{
789
+ "type":"integer",
790
+ "max":1000,
791
+ "min":1
792
+ },
793
+ "DescribeQueriesRequest":{
794
+ "type":"structure",
795
+ "members":{
796
+ "logGroupName":{"shape":"LogGroupName"},
797
+ "status":{"shape":"QueryStatus"},
798
+ "maxResults":{"shape":"DescribeQueriesMaxResults"},
799
+ "nextToken":{"shape":"NextToken"}
800
+ }
801
+ },
802
+ "DescribeQueriesResponse":{
803
+ "type":"structure",
804
+ "members":{
805
+ "queries":{"shape":"QueryInfoList"},
806
+ "nextToken":{"shape":"NextToken"}
807
+ }
808
+ },
700
809
  "DescribeResourcePoliciesRequest":{
701
810
  "type":"structure",
702
811
  "members":{
@@ -843,6 +952,7 @@
843
952
  "key":{"shape":"Token"},
844
953
  "value":{"shape":"Value"}
845
954
  },
955
+ "Field":{"type":"string"},
846
956
  "FilterCount":{"type":"integer"},
847
957
  "FilterLogEventsRequest":{
848
958
  "type":"structure",
@@ -916,6 +1026,48 @@
916
1026
  "nextBackwardToken":{"shape":"NextToken"}
917
1027
  }
918
1028
  },
1029
+ "GetLogGroupFieldsRequest":{
1030
+ "type":"structure",
1031
+ "required":["logGroupName"],
1032
+ "members":{
1033
+ "logGroupName":{"shape":"LogGroupName"},
1034
+ "time":{"shape":"Timestamp"}
1035
+ }
1036
+ },
1037
+ "GetLogGroupFieldsResponse":{
1038
+ "type":"structure",
1039
+ "members":{
1040
+ "logGroupFields":{"shape":"LogGroupFieldList"}
1041
+ }
1042
+ },
1043
+ "GetLogRecordRequest":{
1044
+ "type":"structure",
1045
+ "required":["logRecordPointer"],
1046
+ "members":{
1047
+ "logRecordPointer":{"shape":"LogRecordPointer"}
1048
+ }
1049
+ },
1050
+ "GetLogRecordResponse":{
1051
+ "type":"structure",
1052
+ "members":{
1053
+ "logRecord":{"shape":"LogRecord"}
1054
+ }
1055
+ },
1056
+ "GetQueryResultsRequest":{
1057
+ "type":"structure",
1058
+ "required":["queryId"],
1059
+ "members":{
1060
+ "queryId":{"shape":"QueryId"}
1061
+ }
1062
+ },
1063
+ "GetQueryResultsResponse":{
1064
+ "type":"structure",
1065
+ "members":{
1066
+ "results":{"shape":"QueryResults"},
1067
+ "statistics":{"shape":"QueryStatistics"},
1068
+ "status":{"shape":"QueryStatus"}
1069
+ }
1070
+ },
919
1071
  "InputLogEvent":{
920
1072
  "type":"structure",
921
1073
  "required":[
@@ -995,6 +1147,17 @@
995
1147
  "kmsKeyId":{"shape":"KmsKeyId"}
996
1148
  }
997
1149
  },
1150
+ "LogGroupField":{
1151
+ "type":"structure",
1152
+ "members":{
1153
+ "name":{"shape":"Field"},
1154
+ "percent":{"shape":"Percentage"}
1155
+ }
1156
+ },
1157
+ "LogGroupFieldList":{
1158
+ "type":"list",
1159
+ "member":{"shape":"LogGroupField"}
1160
+ },
998
1161
  "LogGroupName":{
999
1162
  "type":"string",
1000
1163
  "max":512,
@@ -1005,6 +1168,12 @@
1005
1168
  "type":"list",
1006
1169
  "member":{"shape":"LogGroup"}
1007
1170
  },
1171
+ "LogRecord":{
1172
+ "type":"map",
1173
+ "key":{"shape":"Field"},
1174
+ "value":{"shape":"Value"}
1175
+ },
1176
+ "LogRecordPointer":{"type":"string"},
1008
1177
  "LogStream":{
1009
1178
  "type":"structure",
1010
1179
  "members":{
@@ -1029,6 +1198,14 @@
1029
1198
  "type":"list",
1030
1199
  "member":{"shape":"LogStream"}
1031
1200
  },
1201
+ "MalformedQueryException":{
1202
+ "type":"structure",
1203
+ "members":{
1204
+ "queryCompileError":{"shape":"QueryCompileError"}
1205
+ },
1206
+ "exception":true
1207
+ },
1208
+ "Message":{"type":"string"},
1032
1209
  "MetricFilter":{
1033
1210
  "type":"structure",
1034
1211
  "members":{
@@ -1118,6 +1295,11 @@
1118
1295
  "type":"list",
1119
1296
  "member":{"shape":"OutputLogEvent"}
1120
1297
  },
1298
+ "Percentage":{
1299
+ "type":"integer",
1300
+ "max":100,
1301
+ "min":0
1302
+ },
1121
1303
  "PolicyDocument":{
1122
1304
  "type":"string",
1123
1305
  "max":5120,
@@ -1231,6 +1413,67 @@
1231
1413
  "distribution":{"shape":"Distribution"}
1232
1414
  }
1233
1415
  },
1416
+ "QueryCharOffset":{"type":"integer"},
1417
+ "QueryCompileError":{
1418
+ "type":"structure",
1419
+ "members":{
1420
+ "location":{"shape":"QueryCompileErrorLocation"},
1421
+ "message":{"shape":"Message"}
1422
+ }
1423
+ },
1424
+ "QueryCompileErrorLocation":{
1425
+ "type":"structure",
1426
+ "members":{
1427
+ "startCharOffset":{"shape":"QueryCharOffset"},
1428
+ "endCharOffset":{"shape":"QueryCharOffset"}
1429
+ }
1430
+ },
1431
+ "QueryId":{
1432
+ "type":"string",
1433
+ "max":256,
1434
+ "min":0
1435
+ },
1436
+ "QueryInfo":{
1437
+ "type":"structure",
1438
+ "members":{
1439
+ "queryId":{"shape":"QueryId"},
1440
+ "queryString":{"shape":"QueryString"},
1441
+ "status":{"shape":"QueryStatus"},
1442
+ "createTime":{"shape":"Timestamp"},
1443
+ "logGroupName":{"shape":"LogGroupName"}
1444
+ }
1445
+ },
1446
+ "QueryInfoList":{
1447
+ "type":"list",
1448
+ "member":{"shape":"QueryInfo"}
1449
+ },
1450
+ "QueryResults":{
1451
+ "type":"list",
1452
+ "member":{"shape":"ResultRows"}
1453
+ },
1454
+ "QueryStatistics":{
1455
+ "type":"structure",
1456
+ "members":{
1457
+ "recordsMatched":{"shape":"StatsValue"},
1458
+ "recordsScanned":{"shape":"StatsValue"},
1459
+ "bytesScanned":{"shape":"StatsValue"}
1460
+ }
1461
+ },
1462
+ "QueryStatus":{
1463
+ "type":"string",
1464
+ "enum":[
1465
+ "Scheduled",
1466
+ "Running",
1467
+ "Complete",
1468
+ "Failed",
1469
+ "Cancelled"
1470
+ ]
1471
+ },
1472
+ "QueryString":{
1473
+ "type":"string",
1474
+ "max":2048,
1475
+ "min":0
1476
+ },
1234
1477
  "RejectedLogEventsInfo":{
1235
1478
  "type":"structure",
1236
1479
  "members":{
@@ -1263,6 +1506,17 @@
1263
1506
  "lastUpdatedTime":{"shape":"Timestamp"}
1264
1507
  }
1265
1508
  },
1509
+ "ResultField":{
1510
+ "type":"structure",
1511
+ "members":{
1512
+ "field":{"shape":"Field"},
1513
+ "value":{"shape":"Value"}
1514
+ }
1515
+ },
1516
+ "ResultRows":{
1517
+ "type":"list",
1518
+ "member":{"shape":"ResultField"}
1519
+ },
1266
1520
  "RoleArn":{
1267
1521
  "type":"string",
1268
1522
  "min":1
@@ -1290,6 +1544,42 @@
1290
1544
  "fault":true
1291
1545
  },
1292
1546
  "StartFromHead":{"type":"boolean"},
1547
+ "StartQueryRequest":{
1548
+ "type":"structure",
1549
+ "required":[
1550
+ "logGroupName",
1551
+ "startTime",
1552
+ "endTime",
1553
+ "queryString"
1554
+ ],
1555
+ "members":{
1556
+ "logGroupName":{"shape":"LogGroupName"},
1557
+ "startTime":{"shape":"Timestamp"},
1558
+ "endTime":{"shape":"Timestamp"},
1559
+ "queryString":{"shape":"QueryString"},
1560
+ "limit":{"shape":"EventsLimit"}
1561
+ }
1562
+ },
1563
+ "StartQueryResponse":{
1564
+ "type":"structure",
1565
+ "members":{
1566
+ "queryId":{"shape":"QueryId"}
1567
+ }
1568
+ },
1569
+ "StatsValue":{"type":"double"},
1570
+ "StopQueryRequest":{
1571
+ "type":"structure",
1572
+ "required":["queryId"],
1573
+ "members":{
1574
+ "queryId":{"shape":"QueryId"}
1575
+ }
1576
+ },
1577
+ "StopQueryResponse":{
1578
+ "type":"structure",
1579
+ "members":{
1580
+ "success":{"shape":"Success"}
1581
+ }
1582
+ },
1293
1583
  "StoredBytes":{
1294
1584
  "type":"long",
1295
1585
  "min":0
@@ -1310,6 +1600,7 @@
1310
1600
  "type":"list",
1311
1601
  "member":{"shape":"SubscriptionFilter"}
1312
1602
  },
1603
+ "Success":{"type":"boolean"},
1313
1604
  "TagKey":{
1314
1605
  "type":"string",
1315
1606
  "max":128,
@@ -0,0 +1,1469 @@
1
+ {
2
+ "metadata" : {
3
+ "apiVersion" : "2018-11-14",
4
+ "endpointPrefix" : "mediaconnect",
5
+ "signingName" : "mediaconnect",
6
+ "serviceFullName" : "AWS MediaConnect",
7
+ "serviceId" : "MediaConnect",
8
+ "protocol" : "rest-json",
9
+ "jsonVersion" : "1.1",
10
+ "uid" : "mediaconnect-2018-11-14",
11
+ "signatureVersion" : "v4"
12
+ },
13
+ "operations" : {
14
+ "AddFlowOutputs" : {
15
+ "name" : "AddFlowOutputs",
16
+ "http" : {
17
+ "method" : "POST",
18
+ "requestUri" : "/v1/flows/{flowArn}/outputs",
19
+ "responseCode" : 201
20
+ },
21
+ "input" : {
22
+ "shape" : "AddFlowOutputsRequest"
23
+ },
24
+ "output" : {
25
+ "shape" : "AddFlowOutputsResponse"
26
+ },
27
+ "errors" : [ {
28
+ "shape" : "AddFlowOutputs420Exception"
29
+ }, {
30
+ "shape" : "BadRequestException"
31
+ }, {
32
+ "shape" : "InternalServerErrorException"
33
+ }, {
34
+ "shape" : "ForbiddenException"
35
+ }, {
36
+ "shape" : "NotFoundException"
37
+ }, {
38
+ "shape" : "ServiceUnavailableException"
39
+ }, {
40
+ "shape" : "TooManyRequestsException"
41
+ } ]
42
+ },
43
+ "CreateFlow" : {
44
+ "name" : "CreateFlow",
45
+ "http" : {
46
+ "method" : "POST",
47
+ "requestUri" : "/v1/flows",
48
+ "responseCode" : 201
49
+ },
50
+ "input" : {
51
+ "shape" : "CreateFlowRequest"
52
+ },
53
+ "output" : {
54
+ "shape" : "CreateFlowResponse"
55
+ },
56
+ "errors" : [ {
57
+ "shape" : "CreateFlow420Exception"
58
+ }, {
59
+ "shape" : "BadRequestException"
60
+ }, {
61
+ "shape" : "InternalServerErrorException"
62
+ }, {
63
+ "shape" : "ForbiddenException"
64
+ }, {
65
+ "shape" : "ServiceUnavailableException"
66
+ }, {
67
+ "shape" : "TooManyRequestsException"
68
+ } ]
69
+ },
70
+ "DeleteFlow" : {
71
+ "name" : "DeleteFlow",
72
+ "http" : {
73
+ "method" : "DELETE",
74
+ "requestUri" : "/v1/flows/{flowArn}",
75
+ "responseCode" : 202
76
+ },
77
+ "input" : {
78
+ "shape" : "DeleteFlowRequest"
79
+ },
80
+ "output" : {
81
+ "shape" : "DeleteFlowResponse"
82
+ },
83
+ "errors" : [ {
84
+ "shape" : "BadRequestException"
85
+ }, {
86
+ "shape" : "InternalServerErrorException"
87
+ }, {
88
+ "shape" : "ForbiddenException"
89
+ }, {
90
+ "shape" : "NotFoundException"
91
+ }, {
92
+ "shape" : "ServiceUnavailableException"
93
+ }, {
94
+ "shape" : "TooManyRequestsException"
95
+ } ]
96
+ },
97
+ "DescribeFlow" : {
98
+ "name" : "DescribeFlow",
99
+ "http" : {
100
+ "method" : "GET",
101
+ "requestUri" : "/v1/flows/{flowArn}",
102
+ "responseCode" : 200
103
+ },
104
+ "input" : {
105
+ "shape" : "DescribeFlowRequest"
106
+ },
107
+ "output" : {
108
+ "shape" : "DescribeFlowResponse"
109
+ },
110
+ "errors" : [ {
111
+ "shape" : "BadRequestException"
112
+ }, {
113
+ "shape" : "InternalServerErrorException"
114
+ }, {
115
+ "shape" : "ForbiddenException"
116
+ }, {
117
+ "shape" : "NotFoundException"
118
+ }, {
119
+ "shape" : "ServiceUnavailableException"
120
+ }, {
121
+ "shape" : "TooManyRequestsException"
122
+ } ]
123
+ },
124
+ "GrantFlowEntitlements" : {
125
+ "name" : "GrantFlowEntitlements",
126
+ "http" : {
127
+ "method" : "POST",
128
+ "requestUri" : "/v1/flows/{flowArn}/entitlements",
129
+ "responseCode" : 200
130
+ },
131
+ "input" : {
132
+ "shape" : "GrantFlowEntitlementsRequest"
133
+ },
134
+ "output" : {
135
+ "shape" : "GrantFlowEntitlementsResponse"
136
+ },
137
+ "errors" : [ {
138
+ "shape" : "GrantFlowEntitlements420Exception"
139
+ }, {
140
+ "shape" : "BadRequestException"
141
+ }, {
142
+ "shape" : "InternalServerErrorException"
143
+ }, {
144
+ "shape" : "ForbiddenException"
145
+ }, {
146
+ "shape" : "NotFoundException"
147
+ }, {
148
+ "shape" : "ServiceUnavailableException"
149
+ }, {
150
+ "shape" : "TooManyRequestsException"
151
+ } ]
152
+ },
153
+ "ListEntitlements" : {
154
+ "name" : "ListEntitlements",
155
+ "http" : {
156
+ "method" : "GET",
157
+ "requestUri" : "/v1/entitlements",
158
+ "responseCode" : 200
159
+ },
160
+ "input" : {
161
+ "shape" : "ListEntitlementsRequest"
162
+ },
163
+ "output" : {
164
+ "shape" : "ListEntitlementsResponse"
165
+ },
166
+ "errors" : [ {
167
+ "shape" : "ServiceUnavailableException"
168
+ }, {
169
+ "shape" : "TooManyRequestsException"
170
+ }, {
171
+ "shape" : "BadRequestException"
172
+ }, {
173
+ "shape" : "InternalServerErrorException"
174
+ } ]
175
+ },
176
+ "ListFlows" : {
177
+ "name" : "ListFlows",
178
+ "http" : {
179
+ "method" : "GET",
180
+ "requestUri" : "/v1/flows",
181
+ "responseCode" : 200
182
+ },
183
+ "input" : {
184
+ "shape" : "ListFlowsRequest"
185
+ },
186
+ "output" : {
187
+ "shape" : "ListFlowsResponse"
188
+ },
189
+ "errors" : [ {
190
+ "shape" : "ServiceUnavailableException"
191
+ }, {
192
+ "shape" : "TooManyRequestsException"
193
+ }, {
194
+ "shape" : "BadRequestException"
195
+ }, {
196
+ "shape" : "InternalServerErrorException"
197
+ } ]
198
+ },
199
+ "RemoveFlowOutput" : {
200
+ "name" : "RemoveFlowOutput",
201
+ "http" : {
202
+ "method" : "DELETE",
203
+ "requestUri" : "/v1/flows/{flowArn}/outputs/{outputArn}",
204
+ "responseCode" : 202
205
+ },
206
+ "input" : {
207
+ "shape" : "RemoveFlowOutputRequest"
208
+ },
209
+ "output" : {
210
+ "shape" : "RemoveFlowOutputResponse"
211
+ },
212
+ "errors" : [ {
213
+ "shape" : "BadRequestException"
214
+ }, {
215
+ "shape" : "InternalServerErrorException"
216
+ }, {
217
+ "shape" : "ForbiddenException"
218
+ }, {
219
+ "shape" : "NotFoundException"
220
+ }, {
221
+ "shape" : "ServiceUnavailableException"
222
+ }, {
223
+ "shape" : "TooManyRequestsException"
224
+ } ]
225
+ },
226
+ "RevokeFlowEntitlement" : {
227
+ "name" : "RevokeFlowEntitlement",
228
+ "http" : {
229
+ "method" : "DELETE",
230
+ "requestUri" : "/v1/flows/{flowArn}/entitlements/{entitlementArn}",
231
+ "responseCode" : 202
232
+ },
233
+ "input" : {
234
+ "shape" : "RevokeFlowEntitlementRequest"
235
+ },
236
+ "output" : {
237
+ "shape" : "RevokeFlowEntitlementResponse"
238
+ },
239
+ "errors" : [ {
240
+ "shape" : "BadRequestException"
241
+ }, {
242
+ "shape" : "InternalServerErrorException"
243
+ }, {
244
+ "shape" : "ForbiddenException"
245
+ }, {
246
+ "shape" : "NotFoundException"
247
+ }, {
248
+ "shape" : "ServiceUnavailableException"
249
+ }, {
250
+ "shape" : "TooManyRequestsException"
251
+ } ]
252
+ },
253
+ "StartFlow" : {
254
+ "name" : "StartFlow",
255
+ "http" : {
256
+ "method" : "POST",
257
+ "requestUri" : "/v1/flows/start/{flowArn}",
258
+ "responseCode" : 202
259
+ },
260
+ "input" : {
261
+ "shape" : "StartFlowRequest"
262
+ },
263
+ "output" : {
264
+ "shape" : "StartFlowResponse"
265
+ },
266
+ "errors" : [ {
267
+ "shape" : "BadRequestException"
268
+ }, {
269
+ "shape" : "InternalServerErrorException"
270
+ }, {
271
+ "shape" : "ForbiddenException"
272
+ }, {
273
+ "shape" : "NotFoundException"
274
+ }, {
275
+ "shape" : "ServiceUnavailableException"
276
+ }, {
277
+ "shape" : "TooManyRequestsException"
278
+ } ]
279
+ },
280
+ "StopFlow" : {
281
+ "name" : "StopFlow",
282
+ "http" : {
283
+ "method" : "POST",
284
+ "requestUri" : "/v1/flows/stop/{flowArn}",
285
+ "responseCode" : 202
286
+ },
287
+ "input" : {
288
+ "shape" : "StopFlowRequest"
289
+ },
290
+ "output" : {
291
+ "shape" : "StopFlowResponse"
292
+ },
293
+ "errors" : [ {
294
+ "shape" : "BadRequestException"
295
+ }, {
296
+ "shape" : "InternalServerErrorException"
297
+ }, {
298
+ "shape" : "ForbiddenException"
299
+ }, {
300
+ "shape" : "NotFoundException"
301
+ }, {
302
+ "shape" : "ServiceUnavailableException"
303
+ }, {
304
+ "shape" : "TooManyRequestsException"
305
+ } ]
306
+ },
307
+ "UpdateFlowEntitlement" : {
308
+ "name" : "UpdateFlowEntitlement",
309
+ "http" : {
310
+ "method" : "PUT",
311
+ "requestUri" : "/v1/flows/{flowArn}/entitlements/{entitlementArn}",
312
+ "responseCode" : 202
313
+ },
314
+ "input" : {
315
+ "shape" : "UpdateFlowEntitlementRequest"
316
+ },
317
+ "output" : {
318
+ "shape" : "UpdateFlowEntitlementResponse"
319
+ },
320
+ "errors" : [ {
321
+ "shape" : "BadRequestException"
322
+ }, {
323
+ "shape" : "InternalServerErrorException"
324
+ }, {
325
+ "shape" : "ForbiddenException"
326
+ }, {
327
+ "shape" : "NotFoundException"
328
+ }, {
329
+ "shape" : "ServiceUnavailableException"
330
+ }, {
331
+ "shape" : "TooManyRequestsException"
332
+ } ]
333
+ },
334
+ "UpdateFlowOutput" : {
335
+ "name" : "UpdateFlowOutput",
336
+ "http" : {
337
+ "method" : "PUT",
338
+ "requestUri" : "/v1/flows/{flowArn}/outputs/{outputArn}",
339
+ "responseCode" : 202
340
+ },
341
+ "input" : {
342
+ "shape" : "UpdateFlowOutputRequest"
343
+ },
344
+ "output" : {
345
+ "shape" : "UpdateFlowOutputResponse"
346
+ },
347
+ "errors" : [ {
348
+ "shape" : "BadRequestException"
349
+ }, {
350
+ "shape" : "InternalServerErrorException"
351
+ }, {
352
+ "shape" : "ForbiddenException"
353
+ }, {
354
+ "shape" : "NotFoundException"
355
+ }, {
356
+ "shape" : "ServiceUnavailableException"
357
+ }, {
358
+ "shape" : "TooManyRequestsException"
359
+ } ]
360
+ },
361
+ "UpdateFlowSource" : {
362
+ "name" : "UpdateFlowSource",
363
+ "http" : {
364
+ "method" : "PUT",
365
+ "requestUri" : "/v1/flows/{flowArn}/source/{sourceArn}",
366
+ "responseCode" : 202
367
+ },
368
+ "input" : {
369
+ "shape" : "UpdateFlowSourceRequest"
370
+ },
371
+ "output" : {
372
+ "shape" : "UpdateFlowSourceResponse"
373
+ },
374
+ "errors" : [ {
375
+ "shape" : "BadRequestException"
376
+ }, {
377
+ "shape" : "InternalServerErrorException"
378
+ }, {
379
+ "shape" : "ForbiddenException"
380
+ }, {
381
+ "shape" : "NotFoundException"
382
+ }, {
383
+ "shape" : "ServiceUnavailableException"
384
+ }, {
385
+ "shape" : "TooManyRequestsException"
386
+ } ]
387
+ }
388
+ },
389
+ "shapes" : {
390
+ "AddFlowOutputs420Exception" : {
391
+ "type" : "structure",
392
+ "members" : {
393
+ "Message" : {
394
+ "shape" : "__string",
395
+ "locationName" : "message"
396
+ }
397
+ },
398
+ "required" : [ "Message" ],
399
+ "exception" : true,
400
+ "error" : {
401
+ "httpStatusCode" : 420
402
+ }
403
+ },
404
+ "AddFlowOutputsRequest" : {
405
+ "type" : "structure",
406
+ "members" : {
407
+ "FlowArn" : {
408
+ "shape" : "__string",
409
+ "location" : "uri",
410
+ "locationName" : "flowArn"
411
+ },
412
+ "Outputs" : {
413
+ "shape" : "__listOfAddOutputRequest",
414
+ "locationName" : "outputs"
415
+ }
416
+ },
417
+ "required" : [ "FlowArn", "Outputs" ]
418
+ },
419
+ "AddFlowOutputsResponse" : {
420
+ "type" : "structure",
421
+ "members" : {
422
+ "FlowArn" : {
423
+ "shape" : "__string",
424
+ "locationName" : "flowArn"
425
+ },
426
+ "Outputs" : {
427
+ "shape" : "__listOfOutput",
428
+ "locationName" : "outputs"
429
+ }
430
+ }
431
+ },
432
+ "AddOutputRequest" : {
433
+ "type" : "structure",
434
+ "members" : {
435
+ "Description" : {
436
+ "shape" : "__string",
437
+ "locationName" : "description"
438
+ },
439
+ "Destination" : {
440
+ "shape" : "__string",
441
+ "locationName" : "destination"
442
+ },
443
+ "Encryption" : {
444
+ "shape" : "Encryption",
445
+ "locationName" : "encryption"
446
+ },
447
+ "MaxLatency" : {
448
+ "shape" : "__integer",
449
+ "locationName" : "maxLatency"
450
+ },
451
+ "Name" : {
452
+ "shape" : "__string",
453
+ "locationName" : "name"
454
+ },
455
+ "Port" : {
456
+ "shape" : "__integer",
457
+ "locationName" : "port"
458
+ },
459
+ "Protocol" : {
460
+ "shape" : "Protocol",
461
+ "locationName" : "protocol"
462
+ },
463
+ "SmoothingLatency" : {
464
+ "shape" : "__integer",
465
+ "locationName" : "smoothingLatency"
466
+ },
467
+ "StreamId" : {
468
+ "shape" : "__string",
469
+ "locationName" : "streamId"
470
+ }
471
+ },
472
+ "required" : [ "Destination", "Port", "Protocol" ]
473
+ },
474
+ "Algorithm" : {
475
+ "type" : "string",
476
+ "enum" : [ "aes128", "aes192", "aes256" ]
477
+ },
478
+ "BadRequestException" : {
479
+ "type" : "structure",
480
+ "members" : {
481
+ "Message" : {
482
+ "shape" : "__string",
483
+ "locationName" : "message"
484
+ }
485
+ },
486
+ "required" : [ "Message" ],
487
+ "exception" : true,
488
+ "error" : {
489
+ "httpStatusCode" : 400
490
+ }
491
+ },
492
+ "CreateFlow420Exception" : {
493
+ "type" : "structure",
494
+ "members" : {
495
+ "Message" : {
496
+ "shape" : "__string",
497
+ "locationName" : "message"
498
+ }
499
+ },
500
+ "required" : [ "Message" ],
501
+ "exception" : true,
502
+ "error" : {
503
+ "httpStatusCode" : 420
504
+ }
505
+ },
506
+ "CreateFlowRequest" : {
507
+ "type" : "structure",
508
+ "members" : {
509
+ "AvailabilityZone" : {
510
+ "shape" : "__string",
511
+ "locationName" : "availabilityZone"
512
+ },
513
+ "Entitlements" : {
514
+ "shape" : "__listOfGrantEntitlementRequest",
515
+ "locationName" : "entitlements"
516
+ },
517
+ "Name" : {
518
+ "shape" : "__string",
519
+ "locationName" : "name"
520
+ },
521
+ "Outputs" : {
522
+ "shape" : "__listOfAddOutputRequest",
523
+ "locationName" : "outputs"
524
+ },
525
+ "Source" : {
526
+ "shape" : "SetSourceRequest",
527
+ "locationName" : "source"
528
+ }
529
+ },
530
+ "required" : [ "Source", "Name" ]
531
+ },
532
+ "CreateFlowResponse" : {
533
+ "type" : "structure",
534
+ "members" : {
535
+ "Flow" : {
536
+ "shape" : "Flow",
537
+ "locationName" : "flow"
538
+ }
539
+ }
540
+ },
541
+ "DeleteFlowRequest" : {
542
+ "type" : "structure",
543
+ "members" : {
544
+ "FlowArn" : {
545
+ "shape" : "__string",
546
+ "location" : "uri",
547
+ "locationName" : "flowArn"
548
+ }
549
+ },
550
+ "required" : [ "FlowArn" ]
551
+ },
552
+ "DeleteFlowResponse" : {
553
+ "type" : "structure",
554
+ "members" : {
555
+ "FlowArn" : {
556
+ "shape" : "__string",
557
+ "locationName" : "flowArn"
558
+ },
559
+ "Status" : {
560
+ "shape" : "Status",
561
+ "locationName" : "status"
562
+ }
563
+ }
564
+ },
565
+ "DescribeFlowRequest" : {
566
+ "type" : "structure",
567
+ "members" : {
568
+ "FlowArn" : {
569
+ "shape" : "__string",
570
+ "location" : "uri",
571
+ "locationName" : "flowArn"
572
+ }
573
+ },
574
+ "required" : [ "FlowArn" ]
575
+ },
576
+ "DescribeFlowResponse" : {
577
+ "type" : "structure",
578
+ "members" : {
579
+ "Flow" : {
580
+ "shape" : "Flow",
581
+ "locationName" : "flow"
582
+ },
583
+ "Messages" : {
584
+ "shape" : "Messages",
585
+ "locationName" : "messages"
586
+ }
587
+ }
588
+ },
589
+ "Encryption" : {
590
+ "type" : "structure",
591
+ "members" : {
592
+ "Algorithm" : {
593
+ "shape" : "Algorithm",
594
+ "locationName" : "algorithm"
595
+ },
596
+ "KeyType" : {
597
+ "shape" : "KeyType",
598
+ "locationName" : "keyType"
599
+ },
600
+ "RoleArn" : {
601
+ "shape" : "__string",
602
+ "locationName" : "roleArn"
603
+ },
604
+ "SecretArn" : {
605
+ "shape" : "__string",
606
+ "locationName" : "secretArn"
607
+ }
608
+ },
609
+ "required" : [ "SecretArn", "Algorithm", "RoleArn" ]
610
+ },
611
+ "Entitlement" : {
612
+ "type" : "structure",
613
+ "members" : {
614
+ "Description" : {
615
+ "shape" : "__string",
616
+ "locationName" : "description"
617
+ },
618
+ "Encryption" : {
619
+ "shape" : "Encryption",
620
+ "locationName" : "encryption"
621
+ },
622
+ "EntitlementArn" : {
623
+ "shape" : "__string",
624
+ "locationName" : "entitlementArn"
625
+ },
626
+ "Name" : {
627
+ "shape" : "__string",
628
+ "locationName" : "name"
629
+ },
630
+ "Subscribers" : {
631
+ "shape" : "__listOf__string",
632
+ "locationName" : "subscribers"
633
+ }
634
+ },
635
+ "required" : [ "EntitlementArn", "Subscribers", "Name" ]
636
+ },
637
+ "Flow" : {
638
+ "type" : "structure",
639
+ "members" : {
640
+ "AvailabilityZone" : {
641
+ "shape" : "__string",
642
+ "locationName" : "availabilityZone"
643
+ },
644
+ "Description" : {
645
+ "shape" : "__string",
646
+ "locationName" : "description"
647
+ },
648
+ "EgressIp" : {
649
+ "shape" : "__string",
650
+ "locationName" : "egressIp"
651
+ },
652
+ "Entitlements" : {
653
+ "shape" : "__listOfEntitlement",
654
+ "locationName" : "entitlements"
655
+ },
656
+ "FlowArn" : {
657
+ "shape" : "__string",
658
+ "locationName" : "flowArn"
659
+ },
660
+ "Name" : {
661
+ "shape" : "__string",
662
+ "locationName" : "name"
663
+ },
664
+ "Outputs" : {
665
+ "shape" : "__listOfOutput",
666
+ "locationName" : "outputs"
667
+ },
668
+ "Source" : {
669
+ "shape" : "Source",
670
+ "locationName" : "source"
671
+ },
672
+ "Status" : {
673
+ "shape" : "Status",
674
+ "locationName" : "status"
675
+ }
676
+ },
677
+ "required" : [ "Status", "Entitlements", "Outputs", "AvailabilityZone", "FlowArn", "Source", "Name" ]
678
+ },
679
+ "ForbiddenException" : {
680
+ "type" : "structure",
681
+ "members" : {
682
+ "Message" : {
683
+ "shape" : "__string",
684
+ "locationName" : "message"
685
+ }
686
+ },
687
+ "required" : [ "Message" ],
688
+ "exception" : true,
689
+ "error" : {
690
+ "httpStatusCode" : 403
691
+ }
692
+ },
693
+ "GrantEntitlementRequest" : {
694
+ "type" : "structure",
695
+ "members" : {
696
+ "Description" : {
697
+ "shape" : "__string",
698
+ "locationName" : "description"
699
+ },
700
+ "Encryption" : {
701
+ "shape" : "Encryption",
702
+ "locationName" : "encryption"
703
+ },
704
+ "Name" : {
705
+ "shape" : "__string",
706
+ "locationName" : "name"
707
+ },
708
+ "Subscribers" : {
709
+ "shape" : "__listOf__string",
710
+ "locationName" : "subscribers"
711
+ }
712
+ },
713
+ "required" : [ "Subscribers" ]
714
+ },
715
+ "GrantFlowEntitlements420Exception" : {
716
+ "type" : "structure",
717
+ "members" : {
718
+ "Message" : {
719
+ "shape" : "__string",
720
+ "locationName" : "message"
721
+ }
722
+ },
723
+ "required" : [ "Message" ],
724
+ "exception" : true,
725
+ "error" : {
726
+ "httpStatusCode" : 420
727
+ }
728
+ },
729
+ "GrantFlowEntitlementsRequest" : {
730
+ "type" : "structure",
731
+ "members" : {
732
+ "Entitlements" : {
733
+ "shape" : "__listOfGrantEntitlementRequest",
734
+ "locationName" : "entitlements"
735
+ },
736
+ "FlowArn" : {
737
+ "shape" : "__string",
738
+ "location" : "uri",
739
+ "locationName" : "flowArn"
740
+ }
741
+ },
742
+ "required" : [ "FlowArn", "Entitlements" ]
743
+ },
744
+ "GrantFlowEntitlementsResponse" : {
745
+ "type" : "structure",
746
+ "members" : {
747
+ "Entitlements" : {
748
+ "shape" : "__listOfEntitlement",
749
+ "locationName" : "entitlements"
750
+ },
751
+ "FlowArn" : {
752
+ "shape" : "__string",
753
+ "locationName" : "flowArn"
754
+ }
755
+ }
756
+ },
757
+ "InternalServerErrorException" : {
758
+ "type" : "structure",
759
+ "members" : {
760
+ "Message" : {
761
+ "shape" : "__string",
762
+ "locationName" : "message"
763
+ }
764
+ },
765
+ "required" : [ "Message" ],
766
+ "exception" : true,
767
+ "error" : {
768
+ "httpStatusCode" : 500
769
+ }
770
+ },
771
+ "KeyType" : {
772
+ "type" : "string",
773
+ "enum" : [ "static-key" ]
774
+ },
775
+ "ListEntitlementsRequest" : {
776
+ "type" : "structure",
777
+ "members" : {
778
+ "MaxResults" : {
779
+ "shape" : "MaxResults",
780
+ "location" : "querystring",
781
+ "locationName" : "maxResults"
782
+ },
783
+ "NextToken" : {
784
+ "shape" : "__string",
785
+ "location" : "querystring",
786
+ "locationName" : "nextToken"
787
+ }
788
+ }
789
+ },
790
+ "ListEntitlementsResponse" : {
791
+ "type" : "structure",
792
+ "members" : {
793
+ "Entitlements" : {
794
+ "shape" : "__listOfListedEntitlement",
795
+ "locationName" : "entitlements"
796
+ },
797
+ "NextToken" : {
798
+ "shape" : "__string",
799
+ "locationName" : "nextToken"
800
+ }
801
+ }
802
+ },
803
+ "ListFlowsRequest" : {
804
+ "type" : "structure",
805
+ "members" : {
806
+ "MaxResults" : {
807
+ "shape" : "MaxResults",
808
+ "location" : "querystring",
809
+ "locationName" : "maxResults"
810
+ },
811
+ "NextToken" : {
812
+ "shape" : "__string",
813
+ "location" : "querystring",
814
+ "locationName" : "nextToken"
815
+ }
816
+ }
817
+ },
818
+ "ListFlowsResponse" : {
819
+ "type" : "structure",
820
+ "members" : {
821
+ "Flows" : {
822
+ "shape" : "__listOfListedFlow",
823
+ "locationName" : "flows"
824
+ },
825
+ "NextToken" : {
826
+ "shape" : "__string",
827
+ "locationName" : "nextToken"
828
+ }
829
+ }
830
+ },
831
+ "ListedEntitlement" : {
832
+ "type" : "structure",
833
+ "members" : {
834
+ "EntitlementArn" : {
835
+ "shape" : "__string",
836
+ "locationName" : "entitlementArn"
837
+ },
838
+ "EntitlementName" : {
839
+ "shape" : "__string",
840
+ "locationName" : "entitlementName"
841
+ }
842
+ },
843
+ "required" : [ "EntitlementArn", "EntitlementName" ]
844
+ },
845
+ "ListedFlow" : {
846
+ "type" : "structure",
847
+ "members" : {
848
+ "AvailabilityZone" : {
849
+ "shape" : "__string",
850
+ "locationName" : "availabilityZone"
851
+ },
852
+ "Description" : {
853
+ "shape" : "__string",
854
+ "locationName" : "description"
855
+ },
856
+ "FlowArn" : {
857
+ "shape" : "__string",
858
+ "locationName" : "flowArn"
859
+ },
860
+ "Name" : {
861
+ "shape" : "__string",
862
+ "locationName" : "name"
863
+ },
864
+ "SourceType" : {
865
+ "shape" : "SourceType",
866
+ "locationName" : "sourceType"
867
+ },
868
+ "Status" : {
869
+ "shape" : "Status",
870
+ "locationName" : "status"
871
+ }
872
+ },
873
+ "required" : [ "Status", "Description", "SourceType", "AvailabilityZone", "FlowArn", "Name" ]
874
+ },
875
+ "MaxResults" : {
876
+ "type" : "integer",
877
+ "min" : 1,
878
+ "max" : 1000
879
+ },
880
+ "Messages" : {
881
+ "type" : "structure",
882
+ "members" : {
883
+ "Errors" : {
884
+ "shape" : "__listOf__string",
885
+ "locationName" : "errors"
886
+ }
887
+ },
888
+ "required" : [ "Errors" ]
889
+ },
890
+ "NotFoundException" : {
891
+ "type" : "structure",
892
+ "members" : {
893
+ "Message" : {
894
+ "shape" : "__string",
895
+ "locationName" : "message"
896
+ }
897
+ },
898
+ "required" : [ "Message" ],
899
+ "exception" : true,
900
+ "error" : {
901
+ "httpStatusCode" : 404
902
+ }
903
+ },
904
+ "Output" : {
905
+ "type" : "structure",
906
+ "members" : {
907
+ "Description" : {
908
+ "shape" : "__string",
909
+ "locationName" : "description"
910
+ },
911
+ "Destination" : {
912
+ "shape" : "__string",
913
+ "locationName" : "destination"
914
+ },
915
+ "Encryption" : {
916
+ "shape" : "Encryption",
917
+ "locationName" : "encryption"
918
+ },
919
+ "EntitlementArn" : {
920
+ "shape" : "__string",
921
+ "locationName" : "entitlementArn"
922
+ },
923
+ "MediaLiveInputArn" : {
924
+ "shape" : "__string",
925
+ "locationName" : "mediaLiveInputArn"
926
+ },
927
+ "Name" : {
928
+ "shape" : "__string",
929
+ "locationName" : "name"
930
+ },
931
+ "OutputArn" : {
932
+ "shape" : "__string",
933
+ "locationName" : "outputArn"
934
+ },
935
+ "Port" : {
936
+ "shape" : "__integer",
937
+ "locationName" : "port"
938
+ },
939
+ "Transport" : {
940
+ "shape" : "Transport",
941
+ "locationName" : "transport"
942
+ }
943
+ },
944
+ "required" : [ "OutputArn", "Name" ]
945
+ },
946
+ "Protocol" : {
947
+ "type" : "string",
948
+ "enum" : [ "zixi-push", "rtp-fec", "rtp" ]
949
+ },
950
+ "RemoveFlowOutputRequest" : {
951
+ "type" : "structure",
952
+ "members" : {
953
+ "FlowArn" : {
954
+ "shape" : "__string",
955
+ "location" : "uri",
956
+ "locationName" : "flowArn"
957
+ },
958
+ "OutputArn" : {
959
+ "shape" : "__string",
960
+ "location" : "uri",
961
+ "locationName" : "outputArn"
962
+ }
963
+ },
964
+ "required" : [ "FlowArn", "OutputArn" ]
965
+ },
966
+ "RemoveFlowOutputResponse" : {
967
+ "type" : "structure",
968
+ "members" : {
969
+ "FlowArn" : {
970
+ "shape" : "__string",
971
+ "locationName" : "flowArn"
972
+ },
973
+ "OutputArn" : {
974
+ "shape" : "__string",
975
+ "locationName" : "outputArn"
976
+ }
977
+ }
978
+ },
979
+ "ResponseError" : {
980
+ "type" : "structure",
981
+ "members" : {
982
+ "Message" : {
983
+ "shape" : "__string",
984
+ "locationName" : "message"
985
+ }
986
+ },
987
+ "required" : [ "Message" ]
988
+ },
989
+ "RevokeFlowEntitlementRequest" : {
990
+ "type" : "structure",
991
+ "members" : {
992
+ "EntitlementArn" : {
993
+ "shape" : "__string",
994
+ "location" : "uri",
995
+ "locationName" : "entitlementArn"
996
+ },
997
+ "FlowArn" : {
998
+ "shape" : "__string",
999
+ "location" : "uri",
1000
+ "locationName" : "flowArn"
1001
+ }
1002
+ },
1003
+ "required" : [ "FlowArn", "EntitlementArn" ]
1004
+ },
1005
+ "RevokeFlowEntitlementResponse" : {
1006
+ "type" : "structure",
1007
+ "members" : {
1008
+ "EntitlementArn" : {
1009
+ "shape" : "__string",
1010
+ "locationName" : "entitlementArn"
1011
+ },
1012
+ "FlowArn" : {
1013
+ "shape" : "__string",
1014
+ "locationName" : "flowArn"
1015
+ }
1016
+ }
1017
+ },
1018
+ "ServiceUnavailableException" : {
1019
+ "type" : "structure",
1020
+ "members" : {
1021
+ "Message" : {
1022
+ "shape" : "__string",
1023
+ "locationName" : "message"
1024
+ }
1025
+ },
1026
+ "required" : [ "Message" ],
1027
+ "exception" : true,
1028
+ "error" : {
1029
+ "httpStatusCode" : 503
1030
+ }
1031
+ },
1032
+ "SetSourceRequest" : {
1033
+ "type" : "structure",
1034
+ "members" : {
1035
+ "Decryption" : {
1036
+ "shape" : "Encryption",
1037
+ "locationName" : "decryption"
1038
+ },
1039
+ "Description" : {
1040
+ "shape" : "__string",
1041
+ "locationName" : "description"
1042
+ },
1043
+ "EntitlementArn" : {
1044
+ "shape" : "__string",
1045
+ "locationName" : "entitlementArn"
1046
+ },
1047
+ "IngestPort" : {
1048
+ "shape" : "__integer",
1049
+ "locationName" : "ingestPort"
1050
+ },
1051
+ "MaxBitrate" : {
1052
+ "shape" : "__integer",
1053
+ "locationName" : "maxBitrate"
1054
+ },
1055
+ "MaxLatency" : {
1056
+ "shape" : "__integer",
1057
+ "locationName" : "maxLatency"
1058
+ },
1059
+ "Name" : {
1060
+ "shape" : "__string",
1061
+ "locationName" : "name"
1062
+ },
1063
+ "Protocol" : {
1064
+ "shape" : "Protocol",
1065
+ "locationName" : "protocol"
1066
+ },
1067
+ "StreamId" : {
1068
+ "shape" : "__string",
1069
+ "locationName" : "streamId"
1070
+ },
1071
+ "WhitelistCidr" : {
1072
+ "shape" : "__string",
1073
+ "locationName" : "whitelistCidr"
1074
+ }
1075
+ }
1076
+ },
1077
+ "Source" : {
1078
+ "type" : "structure",
1079
+ "members" : {
1080
+ "Decryption" : {
1081
+ "shape" : "Encryption",
1082
+ "locationName" : "decryption"
1083
+ },
1084
+ "Description" : {
1085
+ "shape" : "__string",
1086
+ "locationName" : "description"
1087
+ },
1088
+ "EntitlementArn" : {
1089
+ "shape" : "__string",
1090
+ "locationName" : "entitlementArn"
1091
+ },
1092
+ "IngestIp" : {
1093
+ "shape" : "__string",
1094
+ "locationName" : "ingestIp"
1095
+ },
1096
+ "IngestPort" : {
1097
+ "shape" : "__integer",
1098
+ "locationName" : "ingestPort"
1099
+ },
1100
+ "Name" : {
1101
+ "shape" : "__string",
1102
+ "locationName" : "name"
1103
+ },
1104
+ "SourceArn" : {
1105
+ "shape" : "__string",
1106
+ "locationName" : "sourceArn"
1107
+ },
1108
+ "Transport" : {
1109
+ "shape" : "Transport",
1110
+ "locationName" : "transport"
1111
+ },
1112
+ "WhitelistCidr" : {
1113
+ "shape" : "__string",
1114
+ "locationName" : "whitelistCidr"
1115
+ }
1116
+ },
1117
+ "required" : [ "SourceArn", "Name" ]
1118
+ },
1119
+ "SourceType" : {
1120
+ "type" : "string",
1121
+ "enum" : [ "OWNED", "ENTITLED" ]
1122
+ },
1123
+ "StartFlowRequest" : {
1124
+ "type" : "structure",
1125
+ "members" : {
1126
+ "FlowArn" : {
1127
+ "shape" : "__string",
1128
+ "location" : "uri",
1129
+ "locationName" : "flowArn"
1130
+ }
1131
+ },
1132
+ "required" : [ "FlowArn" ]
1133
+ },
1134
+ "StartFlowResponse" : {
1135
+ "type" : "structure",
1136
+ "members" : {
1137
+ "FlowArn" : {
1138
+ "shape" : "__string",
1139
+ "locationName" : "flowArn"
1140
+ },
1141
+ "Status" : {
1142
+ "shape" : "Status",
1143
+ "locationName" : "status"
1144
+ }
1145
+ }
1146
+ },
1147
+ "Status" : {
1148
+ "type" : "string",
1149
+ "enum" : [ "STANDBY", "ACTIVE", "UPDATING", "DELETING", "STARTING", "STOPPING", "ERROR" ]
1150
+ },
1151
+ "StopFlowRequest" : {
1152
+ "type" : "structure",
1153
+ "members" : {
1154
+ "FlowArn" : {
1155
+ "shape" : "__string",
1156
+ "location" : "uri",
1157
+ "locationName" : "flowArn"
1158
+ }
1159
+ },
1160
+ "required" : [ "FlowArn" ]
1161
+ },
1162
+ "StopFlowResponse" : {
1163
+ "type" : "structure",
1164
+ "members" : {
1165
+ "FlowArn" : {
1166
+ "shape" : "__string",
1167
+ "locationName" : "flowArn"
1168
+ },
1169
+ "Status" : {
1170
+ "shape" : "Status",
1171
+ "locationName" : "status"
1172
+ }
1173
+ }
1174
+ },
1175
+ "TooManyRequestsException" : {
1176
+ "type" : "structure",
1177
+ "members" : {
1178
+ "Message" : {
1179
+ "shape" : "__string",
1180
+ "locationName" : "message"
1181
+ }
1182
+ },
1183
+ "required" : [ "Message" ],
1184
+ "exception" : true,
1185
+ "error" : {
1186
+ "httpStatusCode" : 429
1187
+ }
1188
+ },
1189
+ "Transport" : {
1190
+ "type" : "structure",
1191
+ "members" : {
1192
+ "MaxBitrate" : {
1193
+ "shape" : "__integer",
1194
+ "locationName" : "maxBitrate"
1195
+ },
1196
+ "MaxLatency" : {
1197
+ "shape" : "__integer",
1198
+ "locationName" : "maxLatency"
1199
+ },
1200
+ "Protocol" : {
1201
+ "shape" : "Protocol",
1202
+ "locationName" : "protocol"
1203
+ },
1204
+ "SmoothingLatency" : {
1205
+ "shape" : "__integer",
1206
+ "locationName" : "smoothingLatency"
1207
+ },
1208
+ "StreamId" : {
1209
+ "shape" : "__string",
1210
+ "locationName" : "streamId"
1211
+ }
1212
+ },
1213
+ "required" : [ "Protocol" ]
1214
+ },
1215
+ "UpdateEncryption" : {
1216
+ "type" : "structure",
1217
+ "members" : {
1218
+ "Algorithm" : {
1219
+ "shape" : "Algorithm",
1220
+ "locationName" : "algorithm"
1221
+ },
1222
+ "KeyType" : {
1223
+ "shape" : "KeyType",
1224
+ "locationName" : "keyType"
1225
+ },
1226
+ "RoleArn" : {
1227
+ "shape" : "__string",
1228
+ "locationName" : "roleArn"
1229
+ },
1230
+ "SecretArn" : {
1231
+ "shape" : "__string",
1232
+ "locationName" : "secretArn"
1233
+ }
1234
+ }
1235
+ },
1236
+ "UpdateFlowEntitlementRequest" : {
1237
+ "type" : "structure",
1238
+ "members" : {
1239
+ "Description" : {
1240
+ "shape" : "__string",
1241
+ "locationName" : "description"
1242
+ },
1243
+ "Encryption" : {
1244
+ "shape" : "UpdateEncryption",
1245
+ "locationName" : "encryption"
1246
+ },
1247
+ "EntitlementArn" : {
1248
+ "shape" : "__string",
1249
+ "location" : "uri",
1250
+ "locationName" : "entitlementArn"
1251
+ },
1252
+ "FlowArn" : {
1253
+ "shape" : "__string",
1254
+ "location" : "uri",
1255
+ "locationName" : "flowArn"
1256
+ },
1257
+ "Subscribers" : {
1258
+ "shape" : "__listOf__string",
1259
+ "locationName" : "subscribers"
1260
+ }
1261
+ },
1262
+ "required" : [ "FlowArn", "EntitlementArn" ]
1263
+ },
1264
+ "UpdateFlowEntitlementResponse" : {
1265
+ "type" : "structure",
1266
+ "members" : {
1267
+ "Entitlement" : {
1268
+ "shape" : "Entitlement",
1269
+ "locationName" : "entitlement"
1270
+ },
1271
+ "FlowArn" : {
1272
+ "shape" : "__string",
1273
+ "locationName" : "flowArn"
1274
+ }
1275
+ }
1276
+ },
1277
+ "UpdateFlowOutputRequest" : {
1278
+ "type" : "structure",
1279
+ "members" : {
1280
+ "Description" : {
1281
+ "shape" : "__string",
1282
+ "locationName" : "description"
1283
+ },
1284
+ "Destination" : {
1285
+ "shape" : "__string",
1286
+ "locationName" : "destination"
1287
+ },
1288
+ "Encryption" : {
1289
+ "shape" : "UpdateEncryption",
1290
+ "locationName" : "encryption"
1291
+ },
1292
+ "FlowArn" : {
1293
+ "shape" : "__string",
1294
+ "location" : "uri",
1295
+ "locationName" : "flowArn"
1296
+ },
1297
+ "MaxLatency" : {
1298
+ "shape" : "__integer",
1299
+ "locationName" : "maxLatency"
1300
+ },
1301
+ "OutputArn" : {
1302
+ "shape" : "__string",
1303
+ "location" : "uri",
1304
+ "locationName" : "outputArn"
1305
+ },
1306
+ "Port" : {
1307
+ "shape" : "__integer",
1308
+ "locationName" : "port"
1309
+ },
1310
+ "Protocol" : {
1311
+ "shape" : "Protocol",
1312
+ "locationName" : "protocol"
1313
+ },
1314
+ "SmoothingLatency" : {
1315
+ "shape" : "__integer",
1316
+ "locationName" : "smoothingLatency"
1317
+ },
1318
+ "StreamId" : {
1319
+ "shape" : "__string",
1320
+ "locationName" : "streamId"
1321
+ }
1322
+ },
1323
+ "required" : [ "FlowArn", "OutputArn" ]
1324
+ },
1325
+ "UpdateFlowOutputResponse" : {
1326
+ "type" : "structure",
1327
+ "members" : {
1328
+ "FlowArn" : {
1329
+ "shape" : "__string",
1330
+ "locationName" : "flowArn"
1331
+ },
1332
+ "Output" : {
1333
+ "shape" : "Output",
1334
+ "locationName" : "output"
1335
+ }
1336
+ }
1337
+ },
1338
+ "UpdateFlowSourceRequest" : {
1339
+ "type" : "structure",
1340
+ "members" : {
1341
+ "Decryption" : {
1342
+ "shape" : "UpdateEncryption",
1343
+ "locationName" : "decryption"
1344
+ },
1345
+ "Description" : {
1346
+ "shape" : "__string",
1347
+ "locationName" : "description"
1348
+ },
1349
+ "EntitlementArn" : {
1350
+ "shape" : "__string",
1351
+ "locationName" : "entitlementArn"
1352
+ },
1353
+ "FlowArn" : {
1354
+ "shape" : "__string",
1355
+ "location" : "uri",
1356
+ "locationName" : "flowArn"
1357
+ },
1358
+ "IngestPort" : {
1359
+ "shape" : "__integer",
1360
+ "locationName" : "ingestPort"
1361
+ },
1362
+ "MaxBitrate" : {
1363
+ "shape" : "__integer",
1364
+ "locationName" : "maxBitrate"
1365
+ },
1366
+ "MaxLatency" : {
1367
+ "shape" : "__integer",
1368
+ "locationName" : "maxLatency"
1369
+ },
1370
+ "Protocol" : {
1371
+ "shape" : "Protocol",
1372
+ "locationName" : "protocol"
1373
+ },
1374
+ "SourceArn" : {
1375
+ "shape" : "__string",
1376
+ "location" : "uri",
1377
+ "locationName" : "sourceArn"
1378
+ },
1379
+ "StreamId" : {
1380
+ "shape" : "__string",
1381
+ "locationName" : "streamId"
1382
+ },
1383
+ "WhitelistCidr" : {
1384
+ "shape" : "__string",
1385
+ "locationName" : "whitelistCidr"
1386
+ }
1387
+ },
1388
+ "required" : [ "FlowArn", "SourceArn" ]
1389
+ },
1390
+ "UpdateFlowSourceResponse" : {
1391
+ "type" : "structure",
1392
+ "members" : {
1393
+ "FlowArn" : {
1394
+ "shape" : "__string",
1395
+ "locationName" : "flowArn"
1396
+ },
1397
+ "Source" : {
1398
+ "shape" : "Source",
1399
+ "locationName" : "source"
1400
+ }
1401
+ }
1402
+ },
1403
+ "__boolean" : {
1404
+ "type" : "boolean"
1405
+ },
1406
+ "__double" : {
1407
+ "type" : "double"
1408
+ },
1409
+ "__integer" : {
1410
+ "type" : "integer"
1411
+ },
1412
+ "__listOfAddOutputRequest" : {
1413
+ "type" : "list",
1414
+ "member" : {
1415
+ "shape" : "AddOutputRequest"
1416
+ }
1417
+ },
1418
+ "__listOfEntitlement" : {
1419
+ "type" : "list",
1420
+ "member" : {
1421
+ "shape" : "Entitlement"
1422
+ }
1423
+ },
1424
+ "__listOfGrantEntitlementRequest" : {
1425
+ "type" : "list",
1426
+ "member" : {
1427
+ "shape" : "GrantEntitlementRequest"
1428
+ }
1429
+ },
1430
+ "__listOfListedEntitlement" : {
1431
+ "type" : "list",
1432
+ "member" : {
1433
+ "shape" : "ListedEntitlement"
1434
+ }
1435
+ },
1436
+ "__listOfListedFlow" : {
1437
+ "type" : "list",
1438
+ "member" : {
1439
+ "shape" : "ListedFlow"
1440
+ }
1441
+ },
1442
+ "__listOfOutput" : {
1443
+ "type" : "list",
1444
+ "member" : {
1445
+ "shape" : "Output"
1446
+ }
1447
+ },
1448
+ "__listOf__string" : {
1449
+ "type" : "list",
1450
+ "member" : {
1451
+ "shape" : "__string"
1452
+ }
1453
+ },
1454
+ "__long" : {
1455
+ "type" : "long"
1456
+ },
1457
+ "__string" : {
1458
+ "type" : "string"
1459
+ },
1460
+ "__timestampIso8601" : {
1461
+ "type" : "timestamp",
1462
+ "timestampFormat" : "iso8601"
1463
+ },
1464
+ "__timestampUnix" : {
1465
+ "type" : "timestamp",
1466
+ "timestampFormat" : "unixTimestamp"
1467
+ }
1468
+ }
1469
+ }