cdk-docker-image-deployment 0.0.51 → 0.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +14 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/accessanalyzer-2019-11-01.min.json +153 -80
- package/node_modules/aws-sdk/apis/acm-pca-2017-08-22.min.json +13 -11
- package/node_modules/aws-sdk/apis/batch-2016-08-10.min.json +383 -95
- package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +40 -28
- package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.examples.json +5 -0
- package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.min.json +674 -643
- package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.paginators.json +50 -50
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +286 -284
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +150 -84
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.paginators.json +6 -0
- package/node_modules/aws-sdk/clients/accessanalyzer.d.ts +111 -1
- package/node_modules/aws-sdk/clients/acmpca.d.ts +10 -1
- package/node_modules/aws-sdk/clients/batch.d.ts +542 -157
- package/node_modules/aws-sdk/clients/datasync.d.ts +45 -28
- package/node_modules/aws-sdk/clients/location.d.ts +8 -8
- package/node_modules/aws-sdk/clients/mediatailor.d.ts +256 -256
- package/node_modules/aws-sdk/clients/rds.d.ts +12 -3
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +71 -1
- package/node_modules/aws-sdk/clients/workspaces.d.ts +11 -11
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +11 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +290 -288
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +7 -7
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/model/api.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"version": "2.0",
|
|
2
3
|
"metadata": {
|
|
3
4
|
"apiVersion": "2018-04-23",
|
|
4
5
|
"endpointPrefix": "api.mediatailor",
|
|
@@ -19,38 +20,48 @@
|
|
|
19
20
|
"responseCode": 200
|
|
20
21
|
},
|
|
21
22
|
"input": {
|
|
23
|
+
"type": "structure",
|
|
24
|
+
"required": [
|
|
25
|
+
"PercentEnabled",
|
|
26
|
+
"PlaybackConfigurationName"
|
|
27
|
+
],
|
|
22
28
|
"members": {
|
|
23
29
|
"PercentEnabled": {
|
|
24
30
|
"type": "integer"
|
|
25
31
|
},
|
|
26
32
|
"PlaybackConfigurationName": {}
|
|
27
|
-
}
|
|
28
|
-
"required": [
|
|
29
|
-
"PercentEnabled",
|
|
30
|
-
"PlaybackConfigurationName"
|
|
31
|
-
],
|
|
32
|
-
"type": "structure"
|
|
33
|
+
}
|
|
33
34
|
},
|
|
34
35
|
"output": {
|
|
36
|
+
"type": "structure",
|
|
37
|
+
"required": [
|
|
38
|
+
"PercentEnabled"
|
|
39
|
+
],
|
|
35
40
|
"members": {
|
|
36
41
|
"PercentEnabled": {
|
|
37
42
|
"type": "integer"
|
|
38
43
|
},
|
|
39
44
|
"PlaybackConfigurationName": {}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"idempotent": true
|
|
43
48
|
},
|
|
44
49
|
"CreateChannel": {
|
|
45
50
|
"http": {
|
|
46
|
-
"requestUri": "/channel/{
|
|
51
|
+
"requestUri": "/channel/{ChannelName}",
|
|
47
52
|
"responseCode": 200
|
|
48
53
|
},
|
|
49
54
|
"input": {
|
|
55
|
+
"type": "structure",
|
|
56
|
+
"required": [
|
|
57
|
+
"ChannelName",
|
|
58
|
+
"Outputs",
|
|
59
|
+
"PlaybackMode"
|
|
60
|
+
],
|
|
50
61
|
"members": {
|
|
51
62
|
"ChannelName": {
|
|
52
63
|
"location": "uri",
|
|
53
|
-
"locationName": "
|
|
64
|
+
"locationName": "ChannelName"
|
|
54
65
|
},
|
|
55
66
|
"FillerSlate": {
|
|
56
67
|
"shape": "S6"
|
|
@@ -60,19 +71,14 @@
|
|
|
60
71
|
},
|
|
61
72
|
"PlaybackMode": {},
|
|
62
73
|
"Tags": {
|
|
63
|
-
"
|
|
64
|
-
"
|
|
74
|
+
"shape": "Sc",
|
|
75
|
+
"locationName": "tags"
|
|
65
76
|
},
|
|
66
77
|
"Tier": {}
|
|
67
|
-
}
|
|
68
|
-
"required": [
|
|
69
|
-
"ChannelName",
|
|
70
|
-
"Outputs",
|
|
71
|
-
"PlaybackMode"
|
|
72
|
-
],
|
|
73
|
-
"type": "structure"
|
|
78
|
+
}
|
|
74
79
|
},
|
|
75
80
|
"output": {
|
|
81
|
+
"type": "structure",
|
|
76
82
|
"members": {
|
|
77
83
|
"Arn": {},
|
|
78
84
|
"ChannelName": {},
|
|
@@ -91,45 +97,46 @@
|
|
|
91
97
|
},
|
|
92
98
|
"PlaybackMode": {},
|
|
93
99
|
"Tags": {
|
|
94
|
-
"
|
|
95
|
-
"
|
|
100
|
+
"shape": "Sc",
|
|
101
|
+
"locationName": "tags"
|
|
96
102
|
},
|
|
97
103
|
"Tier": {}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
"idempotent": true
|
|
101
107
|
},
|
|
102
108
|
"CreateLiveSource": {
|
|
103
109
|
"http": {
|
|
104
|
-
"requestUri": "/sourceLocation/{
|
|
110
|
+
"requestUri": "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}",
|
|
105
111
|
"responseCode": 200
|
|
106
112
|
},
|
|
107
113
|
"input": {
|
|
114
|
+
"type": "structure",
|
|
115
|
+
"required": [
|
|
116
|
+
"HttpPackageConfigurations",
|
|
117
|
+
"LiveSourceName",
|
|
118
|
+
"SourceLocationName"
|
|
119
|
+
],
|
|
108
120
|
"members": {
|
|
109
121
|
"HttpPackageConfigurations": {
|
|
110
122
|
"shape": "Sk"
|
|
111
123
|
},
|
|
112
124
|
"LiveSourceName": {
|
|
113
125
|
"location": "uri",
|
|
114
|
-
"locationName": "
|
|
126
|
+
"locationName": "LiveSourceName"
|
|
115
127
|
},
|
|
116
128
|
"SourceLocationName": {
|
|
117
129
|
"location": "uri",
|
|
118
|
-
"locationName": "
|
|
130
|
+
"locationName": "SourceLocationName"
|
|
119
131
|
},
|
|
120
132
|
"Tags": {
|
|
121
|
-
"
|
|
122
|
-
"
|
|
133
|
+
"shape": "Sc",
|
|
134
|
+
"locationName": "tags"
|
|
123
135
|
}
|
|
124
|
-
}
|
|
125
|
-
"required": [
|
|
126
|
-
"SourceLocationName",
|
|
127
|
-
"LiveSourceName",
|
|
128
|
-
"HttpPackageConfigurations"
|
|
129
|
-
],
|
|
130
|
-
"type": "structure"
|
|
136
|
+
}
|
|
131
137
|
},
|
|
132
138
|
"output": {
|
|
139
|
+
"type": "structure",
|
|
133
140
|
"members": {
|
|
134
141
|
"Arn": {},
|
|
135
142
|
"CreationTime": {
|
|
@@ -144,12 +151,12 @@
|
|
|
144
151
|
"LiveSourceName": {},
|
|
145
152
|
"SourceLocationName": {},
|
|
146
153
|
"Tags": {
|
|
147
|
-
"
|
|
148
|
-
"
|
|
154
|
+
"shape": "Sc",
|
|
155
|
+
"locationName": "tags"
|
|
149
156
|
}
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"idempotent": true
|
|
153
160
|
},
|
|
154
161
|
"CreatePrefetchSchedule": {
|
|
155
162
|
"http": {
|
|
@@ -157,6 +164,13 @@
|
|
|
157
164
|
"responseCode": 200
|
|
158
165
|
},
|
|
159
166
|
"input": {
|
|
167
|
+
"type": "structure",
|
|
168
|
+
"required": [
|
|
169
|
+
"Consumption",
|
|
170
|
+
"Name",
|
|
171
|
+
"PlaybackConfigurationName",
|
|
172
|
+
"Retrieval"
|
|
173
|
+
],
|
|
160
174
|
"members": {
|
|
161
175
|
"Consumption": {
|
|
162
176
|
"shape": "Sp"
|
|
@@ -173,16 +187,10 @@
|
|
|
173
187
|
"shape": "St"
|
|
174
188
|
},
|
|
175
189
|
"StreamId": {}
|
|
176
|
-
}
|
|
177
|
-
"required": [
|
|
178
|
-
"Name",
|
|
179
|
-
"PlaybackConfigurationName",
|
|
180
|
-
"Retrieval",
|
|
181
|
-
"Consumption"
|
|
182
|
-
],
|
|
183
|
-
"type": "structure"
|
|
190
|
+
}
|
|
184
191
|
},
|
|
185
192
|
"output": {
|
|
193
|
+
"type": "structure",
|
|
186
194
|
"members": {
|
|
187
195
|
"Arn": {},
|
|
188
196
|
"Consumption": {
|
|
@@ -194,32 +202,48 @@
|
|
|
194
202
|
"shape": "St"
|
|
195
203
|
},
|
|
196
204
|
"StreamId": {}
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"idempotent": true
|
|
200
208
|
},
|
|
201
209
|
"CreateProgram": {
|
|
202
210
|
"http": {
|
|
203
|
-
"requestUri": "/channel/{
|
|
211
|
+
"requestUri": "/channel/{ChannelName}/program/{ProgramName}",
|
|
204
212
|
"responseCode": 200
|
|
205
213
|
},
|
|
206
214
|
"input": {
|
|
215
|
+
"type": "structure",
|
|
216
|
+
"required": [
|
|
217
|
+
"ChannelName",
|
|
218
|
+
"ProgramName",
|
|
219
|
+
"ScheduleConfiguration",
|
|
220
|
+
"SourceLocationName"
|
|
221
|
+
],
|
|
207
222
|
"members": {
|
|
208
223
|
"AdBreaks": {
|
|
209
224
|
"shape": "Sw"
|
|
210
225
|
},
|
|
211
226
|
"ChannelName": {
|
|
212
227
|
"location": "uri",
|
|
213
|
-
"locationName": "
|
|
228
|
+
"locationName": "ChannelName"
|
|
214
229
|
},
|
|
215
230
|
"LiveSourceName": {},
|
|
216
231
|
"ProgramName": {
|
|
217
232
|
"location": "uri",
|
|
218
|
-
"locationName": "
|
|
233
|
+
"locationName": "ProgramName"
|
|
219
234
|
},
|
|
220
235
|
"ScheduleConfiguration": {
|
|
236
|
+
"type": "structure",
|
|
237
|
+
"required": [
|
|
238
|
+
"Transition"
|
|
239
|
+
],
|
|
221
240
|
"members": {
|
|
222
241
|
"Transition": {
|
|
242
|
+
"type": "structure",
|
|
243
|
+
"required": [
|
|
244
|
+
"RelativePosition",
|
|
245
|
+
"Type"
|
|
246
|
+
],
|
|
223
247
|
"members": {
|
|
224
248
|
"DurationMillis": {
|
|
225
249
|
"type": "long"
|
|
@@ -230,31 +254,16 @@
|
|
|
230
254
|
"type": "long"
|
|
231
255
|
},
|
|
232
256
|
"Type": {}
|
|
233
|
-
}
|
|
234
|
-
"required": [
|
|
235
|
-
"Type",
|
|
236
|
-
"RelativePosition"
|
|
237
|
-
],
|
|
238
|
-
"type": "structure"
|
|
257
|
+
}
|
|
239
258
|
}
|
|
240
|
-
}
|
|
241
|
-
"required": [
|
|
242
|
-
"Transition"
|
|
243
|
-
],
|
|
244
|
-
"type": "structure"
|
|
259
|
+
}
|
|
245
260
|
},
|
|
246
261
|
"SourceLocationName": {},
|
|
247
262
|
"VodSourceName": {}
|
|
248
|
-
}
|
|
249
|
-
"required": [
|
|
250
|
-
"ChannelName",
|
|
251
|
-
"ProgramName",
|
|
252
|
-
"SourceLocationName",
|
|
253
|
-
"ScheduleConfiguration"
|
|
254
|
-
],
|
|
255
|
-
"type": "structure"
|
|
263
|
+
}
|
|
256
264
|
},
|
|
257
265
|
"output": {
|
|
266
|
+
"type": "structure",
|
|
258
267
|
"members": {
|
|
259
268
|
"AdBreaks": {
|
|
260
269
|
"shape": "Sw"
|
|
@@ -271,16 +280,21 @@
|
|
|
271
280
|
},
|
|
272
281
|
"SourceLocationName": {},
|
|
273
282
|
"VodSourceName": {}
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
"idempotent": true
|
|
277
286
|
},
|
|
278
287
|
"CreateSourceLocation": {
|
|
279
288
|
"http": {
|
|
280
|
-
"requestUri": "/sourceLocation/{
|
|
289
|
+
"requestUri": "/sourceLocation/{SourceLocationName}",
|
|
281
290
|
"responseCode": 200
|
|
282
291
|
},
|
|
283
292
|
"input": {
|
|
293
|
+
"type": "structure",
|
|
294
|
+
"required": [
|
|
295
|
+
"HttpConfiguration",
|
|
296
|
+
"SourceLocationName"
|
|
297
|
+
],
|
|
284
298
|
"members": {
|
|
285
299
|
"AccessConfiguration": {
|
|
286
300
|
"shape": "S16"
|
|
@@ -296,20 +310,16 @@
|
|
|
296
310
|
},
|
|
297
311
|
"SourceLocationName": {
|
|
298
312
|
"location": "uri",
|
|
299
|
-
"locationName": "
|
|
313
|
+
"locationName": "SourceLocationName"
|
|
300
314
|
},
|
|
301
315
|
"Tags": {
|
|
302
|
-
"
|
|
303
|
-
"
|
|
316
|
+
"shape": "Sc",
|
|
317
|
+
"locationName": "tags"
|
|
304
318
|
}
|
|
305
|
-
}
|
|
306
|
-
"required": [
|
|
307
|
-
"SourceLocationName",
|
|
308
|
-
"HttpConfiguration"
|
|
309
|
-
],
|
|
310
|
-
"type": "structure"
|
|
319
|
+
}
|
|
311
320
|
},
|
|
312
321
|
"output": {
|
|
322
|
+
"type": "structure",
|
|
313
323
|
"members": {
|
|
314
324
|
"AccessConfiguration": {
|
|
315
325
|
"shape": "S16"
|
|
@@ -332,44 +342,45 @@
|
|
|
332
342
|
},
|
|
333
343
|
"SourceLocationName": {},
|
|
334
344
|
"Tags": {
|
|
335
|
-
"
|
|
336
|
-
"
|
|
345
|
+
"shape": "Sc",
|
|
346
|
+
"locationName": "tags"
|
|
337
347
|
}
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
"idempotent": true
|
|
341
351
|
},
|
|
342
352
|
"CreateVodSource": {
|
|
343
353
|
"http": {
|
|
344
|
-
"requestUri": "/sourceLocation/{
|
|
354
|
+
"requestUri": "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}",
|
|
345
355
|
"responseCode": 200
|
|
346
356
|
},
|
|
347
357
|
"input": {
|
|
358
|
+
"type": "structure",
|
|
359
|
+
"required": [
|
|
360
|
+
"HttpPackageConfigurations",
|
|
361
|
+
"SourceLocationName",
|
|
362
|
+
"VodSourceName"
|
|
363
|
+
],
|
|
348
364
|
"members": {
|
|
349
365
|
"HttpPackageConfigurations": {
|
|
350
366
|
"shape": "Sk"
|
|
351
367
|
},
|
|
352
368
|
"SourceLocationName": {
|
|
353
369
|
"location": "uri",
|
|
354
|
-
"locationName": "
|
|
370
|
+
"locationName": "SourceLocationName"
|
|
355
371
|
},
|
|
356
372
|
"Tags": {
|
|
357
|
-
"
|
|
358
|
-
"
|
|
373
|
+
"shape": "Sc",
|
|
374
|
+
"locationName": "tags"
|
|
359
375
|
},
|
|
360
376
|
"VodSourceName": {
|
|
361
377
|
"location": "uri",
|
|
362
|
-
"locationName": "
|
|
378
|
+
"locationName": "VodSourceName"
|
|
363
379
|
}
|
|
364
|
-
}
|
|
365
|
-
"required": [
|
|
366
|
-
"SourceLocationName",
|
|
367
|
-
"VodSourceName",
|
|
368
|
-
"HttpPackageConfigurations"
|
|
369
|
-
],
|
|
370
|
-
"type": "structure"
|
|
380
|
+
}
|
|
371
381
|
},
|
|
372
382
|
"output": {
|
|
383
|
+
"type": "structure",
|
|
373
384
|
"members": {
|
|
374
385
|
"Arn": {},
|
|
375
386
|
"CreationTime": {
|
|
@@ -383,87 +394,90 @@
|
|
|
383
394
|
},
|
|
384
395
|
"SourceLocationName": {},
|
|
385
396
|
"Tags": {
|
|
386
|
-
"
|
|
387
|
-
"
|
|
397
|
+
"shape": "Sc",
|
|
398
|
+
"locationName": "tags"
|
|
388
399
|
},
|
|
389
400
|
"VodSourceName": {}
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
"idempotent": true
|
|
393
404
|
},
|
|
394
405
|
"DeleteChannel": {
|
|
395
406
|
"http": {
|
|
396
407
|
"method": "DELETE",
|
|
397
|
-
"requestUri": "/channel/{
|
|
408
|
+
"requestUri": "/channel/{ChannelName}",
|
|
398
409
|
"responseCode": 200
|
|
399
410
|
},
|
|
400
411
|
"input": {
|
|
412
|
+
"type": "structure",
|
|
413
|
+
"required": [
|
|
414
|
+
"ChannelName"
|
|
415
|
+
],
|
|
401
416
|
"members": {
|
|
402
417
|
"ChannelName": {
|
|
403
418
|
"location": "uri",
|
|
404
|
-
"locationName": "
|
|
419
|
+
"locationName": "ChannelName"
|
|
405
420
|
}
|
|
406
|
-
}
|
|
407
|
-
"required": [
|
|
408
|
-
"ChannelName"
|
|
409
|
-
],
|
|
410
|
-
"type": "structure"
|
|
421
|
+
}
|
|
411
422
|
},
|
|
412
423
|
"output": {
|
|
413
|
-
"
|
|
414
|
-
"
|
|
415
|
-
}
|
|
424
|
+
"type": "structure",
|
|
425
|
+
"members": {}
|
|
426
|
+
},
|
|
427
|
+
"idempotent": true
|
|
416
428
|
},
|
|
417
429
|
"DeleteChannelPolicy": {
|
|
418
430
|
"http": {
|
|
419
431
|
"method": "DELETE",
|
|
420
|
-
"requestUri": "/channel/{
|
|
432
|
+
"requestUri": "/channel/{ChannelName}/policy",
|
|
421
433
|
"responseCode": 200
|
|
422
434
|
},
|
|
423
435
|
"input": {
|
|
436
|
+
"type": "structure",
|
|
437
|
+
"required": [
|
|
438
|
+
"ChannelName"
|
|
439
|
+
],
|
|
424
440
|
"members": {
|
|
425
441
|
"ChannelName": {
|
|
426
442
|
"location": "uri",
|
|
427
|
-
"locationName": "
|
|
443
|
+
"locationName": "ChannelName"
|
|
428
444
|
}
|
|
429
|
-
}
|
|
430
|
-
"required": [
|
|
431
|
-
"ChannelName"
|
|
432
|
-
],
|
|
433
|
-
"type": "structure"
|
|
445
|
+
}
|
|
434
446
|
},
|
|
435
447
|
"output": {
|
|
436
|
-
"
|
|
437
|
-
"
|
|
438
|
-
}
|
|
448
|
+
"type": "structure",
|
|
449
|
+
"members": {}
|
|
450
|
+
},
|
|
451
|
+
"idempotent": true
|
|
439
452
|
},
|
|
440
453
|
"DeleteLiveSource": {
|
|
441
454
|
"http": {
|
|
442
455
|
"method": "DELETE",
|
|
443
|
-
"requestUri": "/sourceLocation/{
|
|
456
|
+
"requestUri": "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}",
|
|
444
457
|
"responseCode": 200
|
|
445
458
|
},
|
|
446
459
|
"input": {
|
|
460
|
+
"type": "structure",
|
|
461
|
+
"required": [
|
|
462
|
+
"LiveSourceName",
|
|
463
|
+
"SourceLocationName"
|
|
464
|
+
],
|
|
447
465
|
"members": {
|
|
448
466
|
"LiveSourceName": {
|
|
449
467
|
"location": "uri",
|
|
450
|
-
"locationName": "
|
|
468
|
+
"locationName": "LiveSourceName"
|
|
451
469
|
},
|
|
452
470
|
"SourceLocationName": {
|
|
453
471
|
"location": "uri",
|
|
454
|
-
"locationName": "
|
|
472
|
+
"locationName": "SourceLocationName"
|
|
455
473
|
}
|
|
456
|
-
}
|
|
457
|
-
"required": [
|
|
458
|
-
"SourceLocationName",
|
|
459
|
-
"LiveSourceName"
|
|
460
|
-
],
|
|
461
|
-
"type": "structure"
|
|
474
|
+
}
|
|
462
475
|
},
|
|
463
476
|
"output": {
|
|
464
|
-
"
|
|
465
|
-
"
|
|
466
|
-
}
|
|
477
|
+
"type": "structure",
|
|
478
|
+
"members": {}
|
|
479
|
+
},
|
|
480
|
+
"idempotent": true
|
|
467
481
|
},
|
|
468
482
|
"DeletePlaybackConfiguration": {
|
|
469
483
|
"http": {
|
|
@@ -472,21 +486,22 @@
|
|
|
472
486
|
"responseCode": 204
|
|
473
487
|
},
|
|
474
488
|
"input": {
|
|
489
|
+
"type": "structure",
|
|
490
|
+
"required": [
|
|
491
|
+
"Name"
|
|
492
|
+
],
|
|
475
493
|
"members": {
|
|
476
494
|
"Name": {
|
|
477
495
|
"location": "uri",
|
|
478
496
|
"locationName": "Name"
|
|
479
497
|
}
|
|
480
|
-
}
|
|
481
|
-
"required": [
|
|
482
|
-
"Name"
|
|
483
|
-
],
|
|
484
|
-
"type": "structure"
|
|
498
|
+
}
|
|
485
499
|
},
|
|
486
500
|
"output": {
|
|
487
|
-
"
|
|
488
|
-
"
|
|
489
|
-
}
|
|
501
|
+
"type": "structure",
|
|
502
|
+
"members": {}
|
|
503
|
+
},
|
|
504
|
+
"idempotent": true
|
|
490
505
|
},
|
|
491
506
|
"DeletePrefetchSchedule": {
|
|
492
507
|
"http": {
|
|
@@ -495,6 +510,11 @@
|
|
|
495
510
|
"responseCode": 204
|
|
496
511
|
},
|
|
497
512
|
"input": {
|
|
513
|
+
"type": "structure",
|
|
514
|
+
"required": [
|
|
515
|
+
"Name",
|
|
516
|
+
"PlaybackConfigurationName"
|
|
517
|
+
],
|
|
498
518
|
"members": {
|
|
499
519
|
"Name": {
|
|
500
520
|
"location": "uri",
|
|
@@ -504,116 +524,116 @@
|
|
|
504
524
|
"location": "uri",
|
|
505
525
|
"locationName": "PlaybackConfigurationName"
|
|
506
526
|
}
|
|
507
|
-
}
|
|
508
|
-
"required": [
|
|
509
|
-
"Name",
|
|
510
|
-
"PlaybackConfigurationName"
|
|
511
|
-
],
|
|
512
|
-
"type": "structure"
|
|
527
|
+
}
|
|
513
528
|
},
|
|
514
529
|
"output": {
|
|
515
|
-
"
|
|
516
|
-
"
|
|
517
|
-
}
|
|
530
|
+
"type": "structure",
|
|
531
|
+
"members": {}
|
|
532
|
+
},
|
|
533
|
+
"idempotent": true
|
|
518
534
|
},
|
|
519
535
|
"DeleteProgram": {
|
|
520
536
|
"http": {
|
|
521
537
|
"method": "DELETE",
|
|
522
|
-
"requestUri": "/channel/{
|
|
538
|
+
"requestUri": "/channel/{ChannelName}/program/{ProgramName}",
|
|
523
539
|
"responseCode": 200
|
|
524
540
|
},
|
|
525
541
|
"input": {
|
|
542
|
+
"type": "structure",
|
|
543
|
+
"required": [
|
|
544
|
+
"ChannelName",
|
|
545
|
+
"ProgramName"
|
|
546
|
+
],
|
|
526
547
|
"members": {
|
|
527
548
|
"ChannelName": {
|
|
528
549
|
"location": "uri",
|
|
529
|
-
"locationName": "
|
|
550
|
+
"locationName": "ChannelName"
|
|
530
551
|
},
|
|
531
552
|
"ProgramName": {
|
|
532
553
|
"location": "uri",
|
|
533
|
-
"locationName": "
|
|
554
|
+
"locationName": "ProgramName"
|
|
534
555
|
}
|
|
535
|
-
}
|
|
536
|
-
"required": [
|
|
537
|
-
"ChannelName",
|
|
538
|
-
"ProgramName"
|
|
539
|
-
],
|
|
540
|
-
"type": "structure"
|
|
556
|
+
}
|
|
541
557
|
},
|
|
542
558
|
"output": {
|
|
543
|
-
"
|
|
544
|
-
"
|
|
545
|
-
}
|
|
559
|
+
"type": "structure",
|
|
560
|
+
"members": {}
|
|
561
|
+
},
|
|
562
|
+
"idempotent": true
|
|
546
563
|
},
|
|
547
564
|
"DeleteSourceLocation": {
|
|
548
565
|
"http": {
|
|
549
566
|
"method": "DELETE",
|
|
550
|
-
"requestUri": "/sourceLocation/{
|
|
567
|
+
"requestUri": "/sourceLocation/{SourceLocationName}",
|
|
551
568
|
"responseCode": 200
|
|
552
569
|
},
|
|
553
570
|
"input": {
|
|
571
|
+
"type": "structure",
|
|
572
|
+
"required": [
|
|
573
|
+
"SourceLocationName"
|
|
574
|
+
],
|
|
554
575
|
"members": {
|
|
555
576
|
"SourceLocationName": {
|
|
556
577
|
"location": "uri",
|
|
557
|
-
"locationName": "
|
|
578
|
+
"locationName": "SourceLocationName"
|
|
558
579
|
}
|
|
559
|
-
}
|
|
560
|
-
"required": [
|
|
561
|
-
"SourceLocationName"
|
|
562
|
-
],
|
|
563
|
-
"type": "structure"
|
|
580
|
+
}
|
|
564
581
|
},
|
|
565
582
|
"output": {
|
|
566
|
-
"
|
|
567
|
-
"
|
|
568
|
-
}
|
|
583
|
+
"type": "structure",
|
|
584
|
+
"members": {}
|
|
585
|
+
},
|
|
586
|
+
"idempotent": true
|
|
569
587
|
},
|
|
570
588
|
"DeleteVodSource": {
|
|
571
589
|
"http": {
|
|
572
590
|
"method": "DELETE",
|
|
573
|
-
"requestUri": "/sourceLocation/{
|
|
591
|
+
"requestUri": "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}",
|
|
574
592
|
"responseCode": 200
|
|
575
593
|
},
|
|
576
594
|
"input": {
|
|
595
|
+
"type": "structure",
|
|
596
|
+
"required": [
|
|
597
|
+
"SourceLocationName",
|
|
598
|
+
"VodSourceName"
|
|
599
|
+
],
|
|
577
600
|
"members": {
|
|
578
601
|
"SourceLocationName": {
|
|
579
602
|
"location": "uri",
|
|
580
|
-
"locationName": "
|
|
603
|
+
"locationName": "SourceLocationName"
|
|
581
604
|
},
|
|
582
605
|
"VodSourceName": {
|
|
583
606
|
"location": "uri",
|
|
584
|
-
"locationName": "
|
|
607
|
+
"locationName": "VodSourceName"
|
|
585
608
|
}
|
|
586
|
-
}
|
|
587
|
-
"required": [
|
|
588
|
-
"SourceLocationName",
|
|
589
|
-
"VodSourceName"
|
|
590
|
-
],
|
|
591
|
-
"type": "structure"
|
|
609
|
+
}
|
|
592
610
|
},
|
|
593
611
|
"output": {
|
|
594
|
-
"
|
|
595
|
-
"
|
|
596
|
-
}
|
|
612
|
+
"type": "structure",
|
|
613
|
+
"members": {}
|
|
614
|
+
},
|
|
615
|
+
"idempotent": true
|
|
597
616
|
},
|
|
598
617
|
"DescribeChannel": {
|
|
599
618
|
"http": {
|
|
600
619
|
"method": "GET",
|
|
601
|
-
"requestUri": "/channel/{
|
|
620
|
+
"requestUri": "/channel/{ChannelName}",
|
|
602
621
|
"responseCode": 200
|
|
603
622
|
},
|
|
604
623
|
"input": {
|
|
624
|
+
"type": "structure",
|
|
625
|
+
"required": [
|
|
626
|
+
"ChannelName"
|
|
627
|
+
],
|
|
605
628
|
"members": {
|
|
606
629
|
"ChannelName": {
|
|
607
630
|
"location": "uri",
|
|
608
|
-
"locationName": "
|
|
631
|
+
"locationName": "ChannelName"
|
|
609
632
|
}
|
|
610
|
-
}
|
|
611
|
-
"required": [
|
|
612
|
-
"ChannelName"
|
|
613
|
-
],
|
|
614
|
-
"type": "structure"
|
|
633
|
+
}
|
|
615
634
|
},
|
|
616
635
|
"output": {
|
|
636
|
+
"type": "structure",
|
|
617
637
|
"members": {
|
|
618
638
|
"Arn": {},
|
|
619
639
|
"ChannelName": {},
|
|
@@ -632,38 +652,38 @@
|
|
|
632
652
|
},
|
|
633
653
|
"PlaybackMode": {},
|
|
634
654
|
"Tags": {
|
|
635
|
-
"
|
|
636
|
-
"
|
|
655
|
+
"shape": "Sc",
|
|
656
|
+
"locationName": "tags"
|
|
637
657
|
},
|
|
638
658
|
"Tier": {}
|
|
639
|
-
}
|
|
640
|
-
"type": "structure"
|
|
659
|
+
}
|
|
641
660
|
}
|
|
642
661
|
},
|
|
643
662
|
"DescribeLiveSource": {
|
|
644
663
|
"http": {
|
|
645
664
|
"method": "GET",
|
|
646
|
-
"requestUri": "/sourceLocation/{
|
|
665
|
+
"requestUri": "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}",
|
|
647
666
|
"responseCode": 200
|
|
648
667
|
},
|
|
649
668
|
"input": {
|
|
669
|
+
"type": "structure",
|
|
670
|
+
"required": [
|
|
671
|
+
"LiveSourceName",
|
|
672
|
+
"SourceLocationName"
|
|
673
|
+
],
|
|
650
674
|
"members": {
|
|
651
675
|
"LiveSourceName": {
|
|
652
676
|
"location": "uri",
|
|
653
|
-
"locationName": "
|
|
677
|
+
"locationName": "LiveSourceName"
|
|
654
678
|
},
|
|
655
679
|
"SourceLocationName": {
|
|
656
680
|
"location": "uri",
|
|
657
|
-
"locationName": "
|
|
681
|
+
"locationName": "SourceLocationName"
|
|
658
682
|
}
|
|
659
|
-
}
|
|
660
|
-
"required": [
|
|
661
|
-
"SourceLocationName",
|
|
662
|
-
"LiveSourceName"
|
|
663
|
-
],
|
|
664
|
-
"type": "structure"
|
|
683
|
+
}
|
|
665
684
|
},
|
|
666
685
|
"output": {
|
|
686
|
+
"type": "structure",
|
|
667
687
|
"members": {
|
|
668
688
|
"Arn": {},
|
|
669
689
|
"CreationTime": {
|
|
@@ -678,37 +698,37 @@
|
|
|
678
698
|
"LiveSourceName": {},
|
|
679
699
|
"SourceLocationName": {},
|
|
680
700
|
"Tags": {
|
|
681
|
-
"
|
|
682
|
-
"
|
|
701
|
+
"shape": "Sc",
|
|
702
|
+
"locationName": "tags"
|
|
683
703
|
}
|
|
684
|
-
}
|
|
685
|
-
"type": "structure"
|
|
704
|
+
}
|
|
686
705
|
}
|
|
687
706
|
},
|
|
688
707
|
"DescribeProgram": {
|
|
689
708
|
"http": {
|
|
690
709
|
"method": "GET",
|
|
691
|
-
"requestUri": "/channel/{
|
|
710
|
+
"requestUri": "/channel/{ChannelName}/program/{ProgramName}",
|
|
692
711
|
"responseCode": 200
|
|
693
712
|
},
|
|
694
713
|
"input": {
|
|
714
|
+
"type": "structure",
|
|
715
|
+
"required": [
|
|
716
|
+
"ChannelName",
|
|
717
|
+
"ProgramName"
|
|
718
|
+
],
|
|
695
719
|
"members": {
|
|
696
720
|
"ChannelName": {
|
|
697
721
|
"location": "uri",
|
|
698
|
-
"locationName": "
|
|
722
|
+
"locationName": "ChannelName"
|
|
699
723
|
},
|
|
700
724
|
"ProgramName": {
|
|
701
725
|
"location": "uri",
|
|
702
|
-
"locationName": "
|
|
726
|
+
"locationName": "ProgramName"
|
|
703
727
|
}
|
|
704
|
-
}
|
|
705
|
-
"required": [
|
|
706
|
-
"ChannelName",
|
|
707
|
-
"ProgramName"
|
|
708
|
-
],
|
|
709
|
-
"type": "structure"
|
|
728
|
+
}
|
|
710
729
|
},
|
|
711
730
|
"output": {
|
|
731
|
+
"type": "structure",
|
|
712
732
|
"members": {
|
|
713
733
|
"AdBreaks": {
|
|
714
734
|
"shape": "Sw"
|
|
@@ -725,29 +745,29 @@
|
|
|
725
745
|
},
|
|
726
746
|
"SourceLocationName": {},
|
|
727
747
|
"VodSourceName": {}
|
|
728
|
-
}
|
|
729
|
-
"type": "structure"
|
|
748
|
+
}
|
|
730
749
|
}
|
|
731
750
|
},
|
|
732
751
|
"DescribeSourceLocation": {
|
|
733
752
|
"http": {
|
|
734
753
|
"method": "GET",
|
|
735
|
-
"requestUri": "/sourceLocation/{
|
|
754
|
+
"requestUri": "/sourceLocation/{SourceLocationName}",
|
|
736
755
|
"responseCode": 200
|
|
737
756
|
},
|
|
738
757
|
"input": {
|
|
758
|
+
"type": "structure",
|
|
759
|
+
"required": [
|
|
760
|
+
"SourceLocationName"
|
|
761
|
+
],
|
|
739
762
|
"members": {
|
|
740
763
|
"SourceLocationName": {
|
|
741
764
|
"location": "uri",
|
|
742
|
-
"locationName": "
|
|
765
|
+
"locationName": "SourceLocationName"
|
|
743
766
|
}
|
|
744
|
-
}
|
|
745
|
-
"required": [
|
|
746
|
-
"SourceLocationName"
|
|
747
|
-
],
|
|
748
|
-
"type": "structure"
|
|
767
|
+
}
|
|
749
768
|
},
|
|
750
769
|
"output": {
|
|
770
|
+
"type": "structure",
|
|
751
771
|
"members": {
|
|
752
772
|
"AccessConfiguration": {
|
|
753
773
|
"shape": "S16"
|
|
@@ -770,37 +790,37 @@
|
|
|
770
790
|
},
|
|
771
791
|
"SourceLocationName": {},
|
|
772
792
|
"Tags": {
|
|
773
|
-
"
|
|
774
|
-
"
|
|
793
|
+
"shape": "Sc",
|
|
794
|
+
"locationName": "tags"
|
|
775
795
|
}
|
|
776
|
-
}
|
|
777
|
-
"type": "structure"
|
|
796
|
+
}
|
|
778
797
|
}
|
|
779
798
|
},
|
|
780
799
|
"DescribeVodSource": {
|
|
781
800
|
"http": {
|
|
782
801
|
"method": "GET",
|
|
783
|
-
"requestUri": "/sourceLocation/{
|
|
802
|
+
"requestUri": "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}",
|
|
784
803
|
"responseCode": 200
|
|
785
804
|
},
|
|
786
805
|
"input": {
|
|
806
|
+
"type": "structure",
|
|
807
|
+
"required": [
|
|
808
|
+
"SourceLocationName",
|
|
809
|
+
"VodSourceName"
|
|
810
|
+
],
|
|
787
811
|
"members": {
|
|
788
812
|
"SourceLocationName": {
|
|
789
813
|
"location": "uri",
|
|
790
|
-
"locationName": "
|
|
814
|
+
"locationName": "SourceLocationName"
|
|
791
815
|
},
|
|
792
816
|
"VodSourceName": {
|
|
793
817
|
"location": "uri",
|
|
794
|
-
"locationName": "
|
|
818
|
+
"locationName": "VodSourceName"
|
|
795
819
|
}
|
|
796
|
-
}
|
|
797
|
-
"required": [
|
|
798
|
-
"SourceLocationName",
|
|
799
|
-
"VodSourceName"
|
|
800
|
-
],
|
|
801
|
-
"type": "structure"
|
|
820
|
+
}
|
|
802
821
|
},
|
|
803
822
|
"output": {
|
|
823
|
+
"type": "structure",
|
|
804
824
|
"members": {
|
|
805
825
|
"Arn": {},
|
|
806
826
|
"CreationTime": {
|
|
@@ -814,50 +834,53 @@
|
|
|
814
834
|
},
|
|
815
835
|
"SourceLocationName": {},
|
|
816
836
|
"Tags": {
|
|
817
|
-
"
|
|
818
|
-
"
|
|
837
|
+
"shape": "Sc",
|
|
838
|
+
"locationName": "tags"
|
|
819
839
|
},
|
|
820
840
|
"VodSourceName": {}
|
|
821
|
-
}
|
|
822
|
-
"type": "structure"
|
|
841
|
+
}
|
|
823
842
|
}
|
|
824
843
|
},
|
|
825
844
|
"GetChannelPolicy": {
|
|
826
845
|
"http": {
|
|
827
846
|
"method": "GET",
|
|
828
|
-
"requestUri": "/channel/{
|
|
847
|
+
"requestUri": "/channel/{ChannelName}/policy",
|
|
829
848
|
"responseCode": 200
|
|
830
849
|
},
|
|
831
850
|
"input": {
|
|
851
|
+
"type": "structure",
|
|
852
|
+
"required": [
|
|
853
|
+
"ChannelName"
|
|
854
|
+
],
|
|
832
855
|
"members": {
|
|
833
856
|
"ChannelName": {
|
|
834
857
|
"location": "uri",
|
|
835
|
-
"locationName": "
|
|
858
|
+
"locationName": "ChannelName"
|
|
836
859
|
}
|
|
837
|
-
}
|
|
838
|
-
"required": [
|
|
839
|
-
"ChannelName"
|
|
840
|
-
],
|
|
841
|
-
"type": "structure"
|
|
860
|
+
}
|
|
842
861
|
},
|
|
843
862
|
"output": {
|
|
863
|
+
"type": "structure",
|
|
844
864
|
"members": {
|
|
845
865
|
"Policy": {}
|
|
846
|
-
}
|
|
847
|
-
"type": "structure"
|
|
866
|
+
}
|
|
848
867
|
}
|
|
849
868
|
},
|
|
850
869
|
"GetChannelSchedule": {
|
|
851
870
|
"http": {
|
|
852
871
|
"method": "GET",
|
|
853
|
-
"requestUri": "/channel/{
|
|
872
|
+
"requestUri": "/channel/{ChannelName}/schedule",
|
|
854
873
|
"responseCode": 200
|
|
855
874
|
},
|
|
856
875
|
"input": {
|
|
876
|
+
"type": "structure",
|
|
877
|
+
"required": [
|
|
878
|
+
"ChannelName"
|
|
879
|
+
],
|
|
857
880
|
"members": {
|
|
858
881
|
"ChannelName": {
|
|
859
882
|
"location": "uri",
|
|
860
|
-
"locationName": "
|
|
883
|
+
"locationName": "ChannelName"
|
|
861
884
|
},
|
|
862
885
|
"DurationMinutes": {
|
|
863
886
|
"location": "querystring",
|
|
@@ -872,16 +895,21 @@
|
|
|
872
895
|
"location": "querystring",
|
|
873
896
|
"locationName": "nextToken"
|
|
874
897
|
}
|
|
875
|
-
}
|
|
876
|
-
"required": [
|
|
877
|
-
"ChannelName"
|
|
878
|
-
],
|
|
879
|
-
"type": "structure"
|
|
898
|
+
}
|
|
880
899
|
},
|
|
881
900
|
"output": {
|
|
901
|
+
"type": "structure",
|
|
882
902
|
"members": {
|
|
883
903
|
"Items": {
|
|
904
|
+
"type": "list",
|
|
884
905
|
"member": {
|
|
906
|
+
"type": "structure",
|
|
907
|
+
"required": [
|
|
908
|
+
"Arn",
|
|
909
|
+
"ChannelName",
|
|
910
|
+
"ProgramName",
|
|
911
|
+
"SourceLocationName"
|
|
912
|
+
],
|
|
885
913
|
"members": {
|
|
886
914
|
"ApproximateDurationSeconds": {
|
|
887
915
|
"type": "long"
|
|
@@ -894,7 +922,9 @@
|
|
|
894
922
|
"LiveSourceName": {},
|
|
895
923
|
"ProgramName": {},
|
|
896
924
|
"ScheduleAdBreaks": {
|
|
925
|
+
"type": "list",
|
|
897
926
|
"member": {
|
|
927
|
+
"type": "structure",
|
|
898
928
|
"members": {
|
|
899
929
|
"ApproximateDurationSeconds": {
|
|
900
930
|
"type": "long"
|
|
@@ -904,28 +934,17 @@
|
|
|
904
934
|
},
|
|
905
935
|
"SourceLocationName": {},
|
|
906
936
|
"VodSourceName": {}
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
},
|
|
910
|
-
"type": "list"
|
|
937
|
+
}
|
|
938
|
+
}
|
|
911
939
|
},
|
|
912
940
|
"ScheduleEntryType": {},
|
|
913
941
|
"SourceLocationName": {},
|
|
914
942
|
"VodSourceName": {}
|
|
915
|
-
}
|
|
916
|
-
|
|
917
|
-
"SourceLocationName",
|
|
918
|
-
"ChannelName",
|
|
919
|
-
"Arn",
|
|
920
|
-
"ProgramName"
|
|
921
|
-
],
|
|
922
|
-
"type": "structure"
|
|
923
|
-
},
|
|
924
|
-
"type": "list"
|
|
943
|
+
}
|
|
944
|
+
}
|
|
925
945
|
},
|
|
926
946
|
"NextToken": {}
|
|
927
|
-
}
|
|
928
|
-
"type": "structure"
|
|
947
|
+
}
|
|
929
948
|
}
|
|
930
949
|
},
|
|
931
950
|
"GetPlaybackConfiguration": {
|
|
@@ -935,18 +954,19 @@
|
|
|
935
954
|
"responseCode": 200
|
|
936
955
|
},
|
|
937
956
|
"input": {
|
|
957
|
+
"type": "structure",
|
|
958
|
+
"required": [
|
|
959
|
+
"Name"
|
|
960
|
+
],
|
|
938
961
|
"members": {
|
|
939
962
|
"Name": {
|
|
940
963
|
"location": "uri",
|
|
941
964
|
"locationName": "Name"
|
|
942
965
|
}
|
|
943
|
-
}
|
|
944
|
-
"required": [
|
|
945
|
-
"Name"
|
|
946
|
-
],
|
|
947
|
-
"type": "structure"
|
|
966
|
+
}
|
|
948
967
|
},
|
|
949
968
|
"output": {
|
|
969
|
+
"type": "structure",
|
|
950
970
|
"members": {
|
|
951
971
|
"AdDecisionServerUrl": {},
|
|
952
972
|
"AvailSuppression": {
|
|
@@ -985,13 +1005,12 @@
|
|
|
985
1005
|
"SessionInitializationEndpointPrefix": {},
|
|
986
1006
|
"SlateAdUrl": {},
|
|
987
1007
|
"Tags": {
|
|
988
|
-
"
|
|
989
|
-
"
|
|
1008
|
+
"shape": "Sc",
|
|
1009
|
+
"locationName": "tags"
|
|
990
1010
|
},
|
|
991
1011
|
"TranscodeProfileName": {},
|
|
992
1012
|
"VideoContentSourceUrl": {}
|
|
993
|
-
}
|
|
994
|
-
"type": "structure"
|
|
1013
|
+
}
|
|
995
1014
|
}
|
|
996
1015
|
},
|
|
997
1016
|
"GetPrefetchSchedule": {
|
|
@@ -1001,6 +1020,11 @@
|
|
|
1001
1020
|
"responseCode": 200
|
|
1002
1021
|
},
|
|
1003
1022
|
"input": {
|
|
1023
|
+
"type": "structure",
|
|
1024
|
+
"required": [
|
|
1025
|
+
"Name",
|
|
1026
|
+
"PlaybackConfigurationName"
|
|
1027
|
+
],
|
|
1004
1028
|
"members": {
|
|
1005
1029
|
"Name": {
|
|
1006
1030
|
"location": "uri",
|
|
@@ -1010,14 +1034,10 @@
|
|
|
1010
1034
|
"location": "uri",
|
|
1011
1035
|
"locationName": "PlaybackConfigurationName"
|
|
1012
1036
|
}
|
|
1013
|
-
}
|
|
1014
|
-
"required": [
|
|
1015
|
-
"Name",
|
|
1016
|
-
"PlaybackConfigurationName"
|
|
1017
|
-
],
|
|
1018
|
-
"type": "structure"
|
|
1037
|
+
}
|
|
1019
1038
|
},
|
|
1020
1039
|
"output": {
|
|
1040
|
+
"type": "structure",
|
|
1021
1041
|
"members": {
|
|
1022
1042
|
"Arn": {},
|
|
1023
1043
|
"Consumption": {
|
|
@@ -1029,8 +1049,7 @@
|
|
|
1029
1049
|
"shape": "St"
|
|
1030
1050
|
},
|
|
1031
1051
|
"StreamId": {}
|
|
1032
|
-
}
|
|
1033
|
-
"type": "structure"
|
|
1052
|
+
}
|
|
1034
1053
|
}
|
|
1035
1054
|
},
|
|
1036
1055
|
"ListAlerts": {
|
|
@@ -1040,6 +1059,10 @@
|
|
|
1040
1059
|
"responseCode": 200
|
|
1041
1060
|
},
|
|
1042
1061
|
"input": {
|
|
1062
|
+
"type": "structure",
|
|
1063
|
+
"required": [
|
|
1064
|
+
"ResourceArn"
|
|
1065
|
+
],
|
|
1043
1066
|
"members": {
|
|
1044
1067
|
"MaxResults": {
|
|
1045
1068
|
"location": "querystring",
|
|
@@ -1054,16 +1077,22 @@
|
|
|
1054
1077
|
"location": "querystring",
|
|
1055
1078
|
"locationName": "resourceArn"
|
|
1056
1079
|
}
|
|
1057
|
-
}
|
|
1058
|
-
"required": [
|
|
1059
|
-
"ResourceArn"
|
|
1060
|
-
],
|
|
1061
|
-
"type": "structure"
|
|
1080
|
+
}
|
|
1062
1081
|
},
|
|
1063
1082
|
"output": {
|
|
1083
|
+
"type": "structure",
|
|
1064
1084
|
"members": {
|
|
1065
1085
|
"Items": {
|
|
1086
|
+
"type": "list",
|
|
1066
1087
|
"member": {
|
|
1088
|
+
"type": "structure",
|
|
1089
|
+
"required": [
|
|
1090
|
+
"AlertCode",
|
|
1091
|
+
"AlertMessage",
|
|
1092
|
+
"LastModifiedTime",
|
|
1093
|
+
"RelatedResourceArns",
|
|
1094
|
+
"ResourceArn"
|
|
1095
|
+
],
|
|
1067
1096
|
"members": {
|
|
1068
1097
|
"AlertCode": {},
|
|
1069
1098
|
"AlertMessage": {},
|
|
@@ -1074,21 +1103,11 @@
|
|
|
1074
1103
|
"shape": "S32"
|
|
1075
1104
|
},
|
|
1076
1105
|
"ResourceArn": {}
|
|
1077
|
-
}
|
|
1078
|
-
|
|
1079
|
-
"ResourceArn",
|
|
1080
|
-
"AlertCode",
|
|
1081
|
-
"LastModifiedTime",
|
|
1082
|
-
"RelatedResourceArns",
|
|
1083
|
-
"AlertMessage"
|
|
1084
|
-
],
|
|
1085
|
-
"type": "structure"
|
|
1086
|
-
},
|
|
1087
|
-
"type": "list"
|
|
1106
|
+
}
|
|
1107
|
+
}
|
|
1088
1108
|
},
|
|
1089
1109
|
"NextToken": {}
|
|
1090
|
-
}
|
|
1091
|
-
"type": "structure"
|
|
1110
|
+
}
|
|
1092
1111
|
}
|
|
1093
1112
|
},
|
|
1094
1113
|
"ListChannels": {
|
|
@@ -1098,6 +1117,7 @@
|
|
|
1098
1117
|
"responseCode": 200
|
|
1099
1118
|
},
|
|
1100
1119
|
"input": {
|
|
1120
|
+
"type": "structure",
|
|
1101
1121
|
"members": {
|
|
1102
1122
|
"MaxResults": {
|
|
1103
1123
|
"location": "querystring",
|
|
@@ -1108,13 +1128,23 @@
|
|
|
1108
1128
|
"location": "querystring",
|
|
1109
1129
|
"locationName": "nextToken"
|
|
1110
1130
|
}
|
|
1111
|
-
}
|
|
1112
|
-
"type": "structure"
|
|
1131
|
+
}
|
|
1113
1132
|
},
|
|
1114
1133
|
"output": {
|
|
1134
|
+
"type": "structure",
|
|
1115
1135
|
"members": {
|
|
1116
1136
|
"Items": {
|
|
1137
|
+
"type": "list",
|
|
1117
1138
|
"member": {
|
|
1139
|
+
"type": "structure",
|
|
1140
|
+
"required": [
|
|
1141
|
+
"Arn",
|
|
1142
|
+
"ChannelName",
|
|
1143
|
+
"ChannelState",
|
|
1144
|
+
"Outputs",
|
|
1145
|
+
"PlaybackMode",
|
|
1146
|
+
"Tier"
|
|
1147
|
+
],
|
|
1118
1148
|
"members": {
|
|
1119
1149
|
"Arn": {},
|
|
1120
1150
|
"ChannelName": {},
|
|
@@ -1133,35 +1163,28 @@
|
|
|
1133
1163
|
},
|
|
1134
1164
|
"PlaybackMode": {},
|
|
1135
1165
|
"Tags": {
|
|
1136
|
-
"
|
|
1137
|
-
"
|
|
1166
|
+
"shape": "Sc",
|
|
1167
|
+
"locationName": "tags"
|
|
1138
1168
|
},
|
|
1139
1169
|
"Tier": {}
|
|
1140
|
-
}
|
|
1141
|
-
|
|
1142
|
-
"ChannelState",
|
|
1143
|
-
"ChannelName",
|
|
1144
|
-
"Tier",
|
|
1145
|
-
"Outputs",
|
|
1146
|
-
"Arn",
|
|
1147
|
-
"PlaybackMode"
|
|
1148
|
-
],
|
|
1149
|
-
"type": "structure"
|
|
1150
|
-
},
|
|
1151
|
-
"type": "list"
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1152
1172
|
},
|
|
1153
1173
|
"NextToken": {}
|
|
1154
|
-
}
|
|
1155
|
-
"type": "structure"
|
|
1174
|
+
}
|
|
1156
1175
|
}
|
|
1157
1176
|
},
|
|
1158
1177
|
"ListLiveSources": {
|
|
1159
1178
|
"http": {
|
|
1160
1179
|
"method": "GET",
|
|
1161
|
-
"requestUri": "/sourceLocation/{
|
|
1180
|
+
"requestUri": "/sourceLocation/{SourceLocationName}/liveSources",
|
|
1162
1181
|
"responseCode": 200
|
|
1163
1182
|
},
|
|
1164
1183
|
"input": {
|
|
1184
|
+
"type": "structure",
|
|
1185
|
+
"required": [
|
|
1186
|
+
"SourceLocationName"
|
|
1187
|
+
],
|
|
1165
1188
|
"members": {
|
|
1166
1189
|
"MaxResults": {
|
|
1167
1190
|
"location": "querystring",
|
|
@@ -1174,18 +1197,23 @@
|
|
|
1174
1197
|
},
|
|
1175
1198
|
"SourceLocationName": {
|
|
1176
1199
|
"location": "uri",
|
|
1177
|
-
"locationName": "
|
|
1200
|
+
"locationName": "SourceLocationName"
|
|
1178
1201
|
}
|
|
1179
|
-
}
|
|
1180
|
-
"required": [
|
|
1181
|
-
"SourceLocationName"
|
|
1182
|
-
],
|
|
1183
|
-
"type": "structure"
|
|
1202
|
+
}
|
|
1184
1203
|
},
|
|
1185
1204
|
"output": {
|
|
1205
|
+
"type": "structure",
|
|
1186
1206
|
"members": {
|
|
1187
1207
|
"Items": {
|
|
1208
|
+
"type": "list",
|
|
1188
1209
|
"member": {
|
|
1210
|
+
"type": "structure",
|
|
1211
|
+
"required": [
|
|
1212
|
+
"Arn",
|
|
1213
|
+
"HttpPackageConfigurations",
|
|
1214
|
+
"LiveSourceName",
|
|
1215
|
+
"SourceLocationName"
|
|
1216
|
+
],
|
|
1189
1217
|
"members": {
|
|
1190
1218
|
"Arn": {},
|
|
1191
1219
|
"CreationTime": {
|
|
@@ -1200,23 +1228,14 @@
|
|
|
1200
1228
|
"LiveSourceName": {},
|
|
1201
1229
|
"SourceLocationName": {},
|
|
1202
1230
|
"Tags": {
|
|
1203
|
-
"
|
|
1204
|
-
"
|
|
1231
|
+
"shape": "Sc",
|
|
1232
|
+
"locationName": "tags"
|
|
1205
1233
|
}
|
|
1206
|
-
}
|
|
1207
|
-
|
|
1208
|
-
"SourceLocationName",
|
|
1209
|
-
"LiveSourceName",
|
|
1210
|
-
"HttpPackageConfigurations",
|
|
1211
|
-
"Arn"
|
|
1212
|
-
],
|
|
1213
|
-
"type": "structure"
|
|
1214
|
-
},
|
|
1215
|
-
"type": "list"
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1216
1236
|
},
|
|
1217
1237
|
"NextToken": {}
|
|
1218
|
-
}
|
|
1219
|
-
"type": "structure"
|
|
1238
|
+
}
|
|
1220
1239
|
}
|
|
1221
1240
|
},
|
|
1222
1241
|
"ListPlaybackConfigurations": {
|
|
@@ -1226,6 +1245,7 @@
|
|
|
1226
1245
|
"responseCode": 200
|
|
1227
1246
|
},
|
|
1228
1247
|
"input": {
|
|
1248
|
+
"type": "structure",
|
|
1229
1249
|
"members": {
|
|
1230
1250
|
"MaxResults": {
|
|
1231
1251
|
"location": "querystring",
|
|
@@ -1236,13 +1256,15 @@
|
|
|
1236
1256
|
"location": "querystring",
|
|
1237
1257
|
"locationName": "NextToken"
|
|
1238
1258
|
}
|
|
1239
|
-
}
|
|
1240
|
-
"type": "structure"
|
|
1259
|
+
}
|
|
1241
1260
|
},
|
|
1242
1261
|
"output": {
|
|
1262
|
+
"type": "structure",
|
|
1243
1263
|
"members": {
|
|
1244
1264
|
"Items": {
|
|
1265
|
+
"type": "list",
|
|
1245
1266
|
"member": {
|
|
1267
|
+
"type": "structure",
|
|
1246
1268
|
"members": {
|
|
1247
1269
|
"AdDecisionServerUrl": {},
|
|
1248
1270
|
"AvailSuppression": {
|
|
@@ -1281,19 +1303,16 @@
|
|
|
1281
1303
|
"SessionInitializationEndpointPrefix": {},
|
|
1282
1304
|
"SlateAdUrl": {},
|
|
1283
1305
|
"Tags": {
|
|
1284
|
-
"
|
|
1285
|
-
"
|
|
1306
|
+
"shape": "Sc",
|
|
1307
|
+
"locationName": "tags"
|
|
1286
1308
|
},
|
|
1287
1309
|
"TranscodeProfileName": {},
|
|
1288
1310
|
"VideoContentSourceUrl": {}
|
|
1289
|
-
}
|
|
1290
|
-
|
|
1291
|
-
},
|
|
1292
|
-
"type": "list"
|
|
1311
|
+
}
|
|
1312
|
+
}
|
|
1293
1313
|
},
|
|
1294
1314
|
"NextToken": {}
|
|
1295
|
-
}
|
|
1296
|
-
"type": "structure"
|
|
1315
|
+
}
|
|
1297
1316
|
}
|
|
1298
1317
|
},
|
|
1299
1318
|
"ListPrefetchSchedules": {
|
|
@@ -1302,6 +1321,10 @@
|
|
|
1302
1321
|
"responseCode": 200
|
|
1303
1322
|
},
|
|
1304
1323
|
"input": {
|
|
1324
|
+
"type": "structure",
|
|
1325
|
+
"required": [
|
|
1326
|
+
"PlaybackConfigurationName"
|
|
1327
|
+
],
|
|
1305
1328
|
"members": {
|
|
1306
1329
|
"MaxResults": {
|
|
1307
1330
|
"type": "integer"
|
|
@@ -1312,16 +1335,22 @@
|
|
|
1312
1335
|
"locationName": "PlaybackConfigurationName"
|
|
1313
1336
|
},
|
|
1314
1337
|
"StreamId": {}
|
|
1315
|
-
}
|
|
1316
|
-
"required": [
|
|
1317
|
-
"PlaybackConfigurationName"
|
|
1318
|
-
],
|
|
1319
|
-
"type": "structure"
|
|
1338
|
+
}
|
|
1320
1339
|
},
|
|
1321
1340
|
"output": {
|
|
1341
|
+
"type": "structure",
|
|
1322
1342
|
"members": {
|
|
1323
1343
|
"Items": {
|
|
1344
|
+
"type": "list",
|
|
1324
1345
|
"member": {
|
|
1346
|
+
"type": "structure",
|
|
1347
|
+
"required": [
|
|
1348
|
+
"Arn",
|
|
1349
|
+
"Consumption",
|
|
1350
|
+
"Name",
|
|
1351
|
+
"PlaybackConfigurationName",
|
|
1352
|
+
"Retrieval"
|
|
1353
|
+
],
|
|
1325
1354
|
"members": {
|
|
1326
1355
|
"Arn": {},
|
|
1327
1356
|
"Consumption": {
|
|
@@ -1333,21 +1362,11 @@
|
|
|
1333
1362
|
"shape": "St"
|
|
1334
1363
|
},
|
|
1335
1364
|
"StreamId": {}
|
|
1336
|
-
}
|
|
1337
|
-
|
|
1338
|
-
"Retrieval",
|
|
1339
|
-
"Consumption",
|
|
1340
|
-
"Arn",
|
|
1341
|
-
"PlaybackConfigurationName",
|
|
1342
|
-
"Name"
|
|
1343
|
-
],
|
|
1344
|
-
"type": "structure"
|
|
1345
|
-
},
|
|
1346
|
-
"type": "list"
|
|
1365
|
+
}
|
|
1366
|
+
}
|
|
1347
1367
|
},
|
|
1348
1368
|
"NextToken": {}
|
|
1349
|
-
}
|
|
1350
|
-
"type": "structure"
|
|
1369
|
+
}
|
|
1351
1370
|
}
|
|
1352
1371
|
},
|
|
1353
1372
|
"ListSourceLocations": {
|
|
@@ -1357,6 +1376,7 @@
|
|
|
1357
1376
|
"responseCode": 200
|
|
1358
1377
|
},
|
|
1359
1378
|
"input": {
|
|
1379
|
+
"type": "structure",
|
|
1360
1380
|
"members": {
|
|
1361
1381
|
"MaxResults": {
|
|
1362
1382
|
"location": "querystring",
|
|
@@ -1367,13 +1387,20 @@
|
|
|
1367
1387
|
"location": "querystring",
|
|
1368
1388
|
"locationName": "nextToken"
|
|
1369
1389
|
}
|
|
1370
|
-
}
|
|
1371
|
-
"type": "structure"
|
|
1390
|
+
}
|
|
1372
1391
|
},
|
|
1373
1392
|
"output": {
|
|
1393
|
+
"type": "structure",
|
|
1374
1394
|
"members": {
|
|
1375
1395
|
"Items": {
|
|
1396
|
+
"type": "list",
|
|
1376
1397
|
"member": {
|
|
1398
|
+
"type": "structure",
|
|
1399
|
+
"required": [
|
|
1400
|
+
"Arn",
|
|
1401
|
+
"HttpConfiguration",
|
|
1402
|
+
"SourceLocationName"
|
|
1403
|
+
],
|
|
1377
1404
|
"members": {
|
|
1378
1405
|
"AccessConfiguration": {
|
|
1379
1406
|
"shape": "S16"
|
|
@@ -1396,22 +1423,14 @@
|
|
|
1396
1423
|
},
|
|
1397
1424
|
"SourceLocationName": {},
|
|
1398
1425
|
"Tags": {
|
|
1399
|
-
"
|
|
1400
|
-
"
|
|
1426
|
+
"shape": "Sc",
|
|
1427
|
+
"locationName": "tags"
|
|
1401
1428
|
}
|
|
1402
|
-
}
|
|
1403
|
-
|
|
1404
|
-
"SourceLocationName",
|
|
1405
|
-
"HttpConfiguration",
|
|
1406
|
-
"Arn"
|
|
1407
|
-
],
|
|
1408
|
-
"type": "structure"
|
|
1409
|
-
},
|
|
1410
|
-
"type": "list"
|
|
1429
|
+
}
|
|
1430
|
+
}
|
|
1411
1431
|
},
|
|
1412
1432
|
"NextToken": {}
|
|
1413
|
-
}
|
|
1414
|
-
"type": "structure"
|
|
1433
|
+
}
|
|
1415
1434
|
}
|
|
1416
1435
|
},
|
|
1417
1436
|
"ListTagsForResource": {
|
|
@@ -1421,34 +1440,38 @@
|
|
|
1421
1440
|
"responseCode": 200
|
|
1422
1441
|
},
|
|
1423
1442
|
"input": {
|
|
1443
|
+
"type": "structure",
|
|
1444
|
+
"required": [
|
|
1445
|
+
"ResourceArn"
|
|
1446
|
+
],
|
|
1424
1447
|
"members": {
|
|
1425
1448
|
"ResourceArn": {
|
|
1426
1449
|
"location": "uri",
|
|
1427
1450
|
"locationName": "ResourceArn"
|
|
1428
1451
|
}
|
|
1429
|
-
}
|
|
1430
|
-
"required": [
|
|
1431
|
-
"ResourceArn"
|
|
1432
|
-
],
|
|
1433
|
-
"type": "structure"
|
|
1452
|
+
}
|
|
1434
1453
|
},
|
|
1435
1454
|
"output": {
|
|
1455
|
+
"type": "structure",
|
|
1436
1456
|
"members": {
|
|
1437
1457
|
"Tags": {
|
|
1438
|
-
"
|
|
1439
|
-
"
|
|
1458
|
+
"shape": "Sc",
|
|
1459
|
+
"locationName": "tags"
|
|
1440
1460
|
}
|
|
1441
|
-
}
|
|
1442
|
-
"type": "structure"
|
|
1461
|
+
}
|
|
1443
1462
|
}
|
|
1444
1463
|
},
|
|
1445
1464
|
"ListVodSources": {
|
|
1446
1465
|
"http": {
|
|
1447
1466
|
"method": "GET",
|
|
1448
|
-
"requestUri": "/sourceLocation/{
|
|
1467
|
+
"requestUri": "/sourceLocation/{SourceLocationName}/vodSources",
|
|
1449
1468
|
"responseCode": 200
|
|
1450
1469
|
},
|
|
1451
1470
|
"input": {
|
|
1471
|
+
"type": "structure",
|
|
1472
|
+
"required": [
|
|
1473
|
+
"SourceLocationName"
|
|
1474
|
+
],
|
|
1452
1475
|
"members": {
|
|
1453
1476
|
"MaxResults": {
|
|
1454
1477
|
"location": "querystring",
|
|
@@ -1461,18 +1484,23 @@
|
|
|
1461
1484
|
},
|
|
1462
1485
|
"SourceLocationName": {
|
|
1463
1486
|
"location": "uri",
|
|
1464
|
-
"locationName": "
|
|
1487
|
+
"locationName": "SourceLocationName"
|
|
1465
1488
|
}
|
|
1466
|
-
}
|
|
1467
|
-
"required": [
|
|
1468
|
-
"SourceLocationName"
|
|
1469
|
-
],
|
|
1470
|
-
"type": "structure"
|
|
1489
|
+
}
|
|
1471
1490
|
},
|
|
1472
1491
|
"output": {
|
|
1492
|
+
"type": "structure",
|
|
1473
1493
|
"members": {
|
|
1474
1494
|
"Items": {
|
|
1495
|
+
"type": "list",
|
|
1475
1496
|
"member": {
|
|
1497
|
+
"type": "structure",
|
|
1498
|
+
"required": [
|
|
1499
|
+
"Arn",
|
|
1500
|
+
"HttpPackageConfigurations",
|
|
1501
|
+
"SourceLocationName",
|
|
1502
|
+
"VodSourceName"
|
|
1503
|
+
],
|
|
1476
1504
|
"members": {
|
|
1477
1505
|
"Arn": {},
|
|
1478
1506
|
"CreationTime": {
|
|
@@ -1486,50 +1514,42 @@
|
|
|
1486
1514
|
},
|
|
1487
1515
|
"SourceLocationName": {},
|
|
1488
1516
|
"Tags": {
|
|
1489
|
-
"
|
|
1490
|
-
"
|
|
1517
|
+
"shape": "Sc",
|
|
1518
|
+
"locationName": "tags"
|
|
1491
1519
|
},
|
|
1492
1520
|
"VodSourceName": {}
|
|
1493
|
-
}
|
|
1494
|
-
|
|
1495
|
-
"VodSourceName",
|
|
1496
|
-
"SourceLocationName",
|
|
1497
|
-
"HttpPackageConfigurations",
|
|
1498
|
-
"Arn"
|
|
1499
|
-
],
|
|
1500
|
-
"type": "structure"
|
|
1501
|
-
},
|
|
1502
|
-
"type": "list"
|
|
1521
|
+
}
|
|
1522
|
+
}
|
|
1503
1523
|
},
|
|
1504
1524
|
"NextToken": {}
|
|
1505
|
-
}
|
|
1506
|
-
"type": "structure"
|
|
1525
|
+
}
|
|
1507
1526
|
}
|
|
1508
1527
|
},
|
|
1509
1528
|
"PutChannelPolicy": {
|
|
1510
1529
|
"http": {
|
|
1511
1530
|
"method": "PUT",
|
|
1512
|
-
"requestUri": "/channel/{
|
|
1531
|
+
"requestUri": "/channel/{ChannelName}/policy",
|
|
1513
1532
|
"responseCode": 200
|
|
1514
1533
|
},
|
|
1515
1534
|
"input": {
|
|
1535
|
+
"type": "structure",
|
|
1536
|
+
"required": [
|
|
1537
|
+
"ChannelName",
|
|
1538
|
+
"Policy"
|
|
1539
|
+
],
|
|
1516
1540
|
"members": {
|
|
1517
1541
|
"ChannelName": {
|
|
1518
1542
|
"location": "uri",
|
|
1519
|
-
"locationName": "
|
|
1543
|
+
"locationName": "ChannelName"
|
|
1520
1544
|
},
|
|
1521
1545
|
"Policy": {}
|
|
1522
|
-
}
|
|
1523
|
-
"required": [
|
|
1524
|
-
"ChannelName",
|
|
1525
|
-
"Policy"
|
|
1526
|
-
],
|
|
1527
|
-
"type": "structure"
|
|
1546
|
+
}
|
|
1528
1547
|
},
|
|
1529
1548
|
"output": {
|
|
1530
|
-
"
|
|
1531
|
-
"
|
|
1532
|
-
}
|
|
1549
|
+
"type": "structure",
|
|
1550
|
+
"members": {}
|
|
1551
|
+
},
|
|
1552
|
+
"idempotent": true
|
|
1533
1553
|
},
|
|
1534
1554
|
"PutPlaybackConfiguration": {
|
|
1535
1555
|
"http": {
|
|
@@ -1538,6 +1558,10 @@
|
|
|
1538
1558
|
"responseCode": 200
|
|
1539
1559
|
},
|
|
1540
1560
|
"input": {
|
|
1561
|
+
"type": "structure",
|
|
1562
|
+
"required": [
|
|
1563
|
+
"Name"
|
|
1564
|
+
],
|
|
1541
1565
|
"members": {
|
|
1542
1566
|
"AdDecisionServerUrl": {},
|
|
1543
1567
|
"AvailSuppression": {
|
|
@@ -1550,18 +1574,18 @@
|
|
|
1550
1574
|
"shape": "S2l"
|
|
1551
1575
|
},
|
|
1552
1576
|
"ConfigurationAliases": {
|
|
1553
|
-
"key": {},
|
|
1554
1577
|
"type": "map",
|
|
1578
|
+
"key": {},
|
|
1555
1579
|
"value": {
|
|
1556
1580
|
"shape": "Sc"
|
|
1557
1581
|
}
|
|
1558
1582
|
},
|
|
1559
1583
|
"DashConfiguration": {
|
|
1584
|
+
"type": "structure",
|
|
1560
1585
|
"members": {
|
|
1561
1586
|
"MpdLocation": {},
|
|
1562
1587
|
"OriginManifestType": {}
|
|
1563
|
-
}
|
|
1564
|
-
"type": "structure"
|
|
1588
|
+
}
|
|
1565
1589
|
},
|
|
1566
1590
|
"LivePreRollConfiguration": {
|
|
1567
1591
|
"shape": "S2q"
|
|
@@ -1575,15 +1599,15 @@
|
|
|
1575
1599
|
},
|
|
1576
1600
|
"SlateAdUrl": {},
|
|
1577
1601
|
"Tags": {
|
|
1578
|
-
"
|
|
1579
|
-
"
|
|
1602
|
+
"shape": "Sc",
|
|
1603
|
+
"locationName": "tags"
|
|
1580
1604
|
},
|
|
1581
1605
|
"TranscodeProfileName": {},
|
|
1582
1606
|
"VideoContentSourceUrl": {}
|
|
1583
|
-
}
|
|
1584
|
-
"type": "structure"
|
|
1607
|
+
}
|
|
1585
1608
|
},
|
|
1586
1609
|
"output": {
|
|
1610
|
+
"type": "structure",
|
|
1587
1611
|
"members": {
|
|
1588
1612
|
"AdDecisionServerUrl": {},
|
|
1589
1613
|
"AvailSuppression": {
|
|
@@ -1622,60 +1646,62 @@
|
|
|
1622
1646
|
"SessionInitializationEndpointPrefix": {},
|
|
1623
1647
|
"SlateAdUrl": {},
|
|
1624
1648
|
"Tags": {
|
|
1625
|
-
"
|
|
1626
|
-
"
|
|
1649
|
+
"shape": "Sc",
|
|
1650
|
+
"locationName": "tags"
|
|
1627
1651
|
},
|
|
1628
1652
|
"TranscodeProfileName": {},
|
|
1629
1653
|
"VideoContentSourceUrl": {}
|
|
1630
|
-
}
|
|
1631
|
-
|
|
1632
|
-
|
|
1654
|
+
}
|
|
1655
|
+
},
|
|
1656
|
+
"idempotent": true
|
|
1633
1657
|
},
|
|
1634
1658
|
"StartChannel": {
|
|
1635
1659
|
"http": {
|
|
1636
1660
|
"method": "PUT",
|
|
1637
|
-
"requestUri": "/channel/{
|
|
1661
|
+
"requestUri": "/channel/{ChannelName}/start",
|
|
1638
1662
|
"responseCode": 200
|
|
1639
1663
|
},
|
|
1640
1664
|
"input": {
|
|
1665
|
+
"type": "structure",
|
|
1666
|
+
"required": [
|
|
1667
|
+
"ChannelName"
|
|
1668
|
+
],
|
|
1641
1669
|
"members": {
|
|
1642
1670
|
"ChannelName": {
|
|
1643
1671
|
"location": "uri",
|
|
1644
|
-
"locationName": "
|
|
1672
|
+
"locationName": "ChannelName"
|
|
1645
1673
|
}
|
|
1646
|
-
}
|
|
1647
|
-
"required": [
|
|
1648
|
-
"ChannelName"
|
|
1649
|
-
],
|
|
1650
|
-
"type": "structure"
|
|
1674
|
+
}
|
|
1651
1675
|
},
|
|
1652
1676
|
"output": {
|
|
1653
|
-
"
|
|
1654
|
-
"
|
|
1655
|
-
}
|
|
1677
|
+
"type": "structure",
|
|
1678
|
+
"members": {}
|
|
1679
|
+
},
|
|
1680
|
+
"idempotent": true
|
|
1656
1681
|
},
|
|
1657
1682
|
"StopChannel": {
|
|
1658
1683
|
"http": {
|
|
1659
1684
|
"method": "PUT",
|
|
1660
|
-
"requestUri": "/channel/{
|
|
1685
|
+
"requestUri": "/channel/{ChannelName}/stop",
|
|
1661
1686
|
"responseCode": 200
|
|
1662
1687
|
},
|
|
1663
1688
|
"input": {
|
|
1689
|
+
"type": "structure",
|
|
1690
|
+
"required": [
|
|
1691
|
+
"ChannelName"
|
|
1692
|
+
],
|
|
1664
1693
|
"members": {
|
|
1665
1694
|
"ChannelName": {
|
|
1666
1695
|
"location": "uri",
|
|
1667
|
-
"locationName": "
|
|
1696
|
+
"locationName": "ChannelName"
|
|
1668
1697
|
}
|
|
1669
|
-
}
|
|
1670
|
-
"required": [
|
|
1671
|
-
"ChannelName"
|
|
1672
|
-
],
|
|
1673
|
-
"type": "structure"
|
|
1698
|
+
}
|
|
1674
1699
|
},
|
|
1675
1700
|
"output": {
|
|
1676
|
-
"
|
|
1677
|
-
"
|
|
1678
|
-
}
|
|
1701
|
+
"type": "structure",
|
|
1702
|
+
"members": {}
|
|
1703
|
+
},
|
|
1704
|
+
"idempotent": true
|
|
1679
1705
|
},
|
|
1680
1706
|
"TagResource": {
|
|
1681
1707
|
"http": {
|
|
@@ -1683,21 +1709,21 @@
|
|
|
1683
1709
|
"responseCode": 204
|
|
1684
1710
|
},
|
|
1685
1711
|
"input": {
|
|
1712
|
+
"type": "structure",
|
|
1713
|
+
"required": [
|
|
1714
|
+
"ResourceArn",
|
|
1715
|
+
"Tags"
|
|
1716
|
+
],
|
|
1686
1717
|
"members": {
|
|
1687
1718
|
"ResourceArn": {
|
|
1688
1719
|
"location": "uri",
|
|
1689
1720
|
"locationName": "ResourceArn"
|
|
1690
1721
|
},
|
|
1691
1722
|
"Tags": {
|
|
1692
|
-
"
|
|
1693
|
-
"
|
|
1723
|
+
"shape": "Sc",
|
|
1724
|
+
"locationName": "tags"
|
|
1694
1725
|
}
|
|
1695
|
-
}
|
|
1696
|
-
"required": [
|
|
1697
|
-
"ResourceArn",
|
|
1698
|
-
"Tags"
|
|
1699
|
-
],
|
|
1700
|
-
"type": "structure"
|
|
1726
|
+
}
|
|
1701
1727
|
}
|
|
1702
1728
|
},
|
|
1703
1729
|
"UntagResource": {
|
|
@@ -1707,35 +1733,41 @@
|
|
|
1707
1733
|
"responseCode": 204
|
|
1708
1734
|
},
|
|
1709
1735
|
"input": {
|
|
1736
|
+
"type": "structure",
|
|
1737
|
+
"required": [
|
|
1738
|
+
"ResourceArn",
|
|
1739
|
+
"TagKeys"
|
|
1740
|
+
],
|
|
1710
1741
|
"members": {
|
|
1711
1742
|
"ResourceArn": {
|
|
1712
1743
|
"location": "uri",
|
|
1713
1744
|
"locationName": "ResourceArn"
|
|
1714
1745
|
},
|
|
1715
1746
|
"TagKeys": {
|
|
1747
|
+
"shape": "S32",
|
|
1716
1748
|
"location": "querystring",
|
|
1717
|
-
"locationName": "tagKeys"
|
|
1718
|
-
"shape": "S32"
|
|
1749
|
+
"locationName": "tagKeys"
|
|
1719
1750
|
}
|
|
1720
|
-
}
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
"TagKeys"
|
|
1724
|
-
],
|
|
1725
|
-
"type": "structure"
|
|
1726
|
-
}
|
|
1751
|
+
}
|
|
1752
|
+
},
|
|
1753
|
+
"idempotent": true
|
|
1727
1754
|
},
|
|
1728
1755
|
"UpdateChannel": {
|
|
1729
1756
|
"http": {
|
|
1730
1757
|
"method": "PUT",
|
|
1731
|
-
"requestUri": "/channel/{
|
|
1758
|
+
"requestUri": "/channel/{ChannelName}",
|
|
1732
1759
|
"responseCode": 200
|
|
1733
1760
|
},
|
|
1734
1761
|
"input": {
|
|
1762
|
+
"type": "structure",
|
|
1763
|
+
"required": [
|
|
1764
|
+
"ChannelName",
|
|
1765
|
+
"Outputs"
|
|
1766
|
+
],
|
|
1735
1767
|
"members": {
|
|
1736
1768
|
"ChannelName": {
|
|
1737
1769
|
"location": "uri",
|
|
1738
|
-
"locationName": "
|
|
1770
|
+
"locationName": "ChannelName"
|
|
1739
1771
|
},
|
|
1740
1772
|
"FillerSlate": {
|
|
1741
1773
|
"shape": "S6"
|
|
@@ -1743,14 +1775,10 @@
|
|
|
1743
1775
|
"Outputs": {
|
|
1744
1776
|
"shape": "S7"
|
|
1745
1777
|
}
|
|
1746
|
-
}
|
|
1747
|
-
"required": [
|
|
1748
|
-
"ChannelName",
|
|
1749
|
-
"Outputs"
|
|
1750
|
-
],
|
|
1751
|
-
"type": "structure"
|
|
1778
|
+
}
|
|
1752
1779
|
},
|
|
1753
1780
|
"output": {
|
|
1781
|
+
"type": "structure",
|
|
1754
1782
|
"members": {
|
|
1755
1783
|
"Arn": {},
|
|
1756
1784
|
"ChannelName": {},
|
|
@@ -1769,42 +1797,43 @@
|
|
|
1769
1797
|
},
|
|
1770
1798
|
"PlaybackMode": {},
|
|
1771
1799
|
"Tags": {
|
|
1772
|
-
"
|
|
1773
|
-
"
|
|
1800
|
+
"shape": "Sc",
|
|
1801
|
+
"locationName": "tags"
|
|
1774
1802
|
},
|
|
1775
1803
|
"Tier": {}
|
|
1776
|
-
}
|
|
1777
|
-
|
|
1778
|
-
|
|
1804
|
+
}
|
|
1805
|
+
},
|
|
1806
|
+
"idempotent": true
|
|
1779
1807
|
},
|
|
1780
1808
|
"UpdateLiveSource": {
|
|
1781
1809
|
"http": {
|
|
1782
1810
|
"method": "PUT",
|
|
1783
|
-
"requestUri": "/sourceLocation/{
|
|
1811
|
+
"requestUri": "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}",
|
|
1784
1812
|
"responseCode": 200
|
|
1785
1813
|
},
|
|
1786
1814
|
"input": {
|
|
1815
|
+
"type": "structure",
|
|
1816
|
+
"required": [
|
|
1817
|
+
"HttpPackageConfigurations",
|
|
1818
|
+
"LiveSourceName",
|
|
1819
|
+
"SourceLocationName"
|
|
1820
|
+
],
|
|
1787
1821
|
"members": {
|
|
1788
1822
|
"HttpPackageConfigurations": {
|
|
1789
1823
|
"shape": "Sk"
|
|
1790
1824
|
},
|
|
1791
1825
|
"LiveSourceName": {
|
|
1792
1826
|
"location": "uri",
|
|
1793
|
-
"locationName": "
|
|
1827
|
+
"locationName": "LiveSourceName"
|
|
1794
1828
|
},
|
|
1795
1829
|
"SourceLocationName": {
|
|
1796
1830
|
"location": "uri",
|
|
1797
|
-
"locationName": "
|
|
1831
|
+
"locationName": "SourceLocationName"
|
|
1798
1832
|
}
|
|
1799
|
-
}
|
|
1800
|
-
"required": [
|
|
1801
|
-
"SourceLocationName",
|
|
1802
|
-
"LiveSourceName",
|
|
1803
|
-
"HttpPackageConfigurations"
|
|
1804
|
-
],
|
|
1805
|
-
"type": "structure"
|
|
1833
|
+
}
|
|
1806
1834
|
},
|
|
1807
1835
|
"output": {
|
|
1836
|
+
"type": "structure",
|
|
1808
1837
|
"members": {
|
|
1809
1838
|
"Arn": {},
|
|
1810
1839
|
"CreationTime": {
|
|
@@ -1819,20 +1848,25 @@
|
|
|
1819
1848
|
"LiveSourceName": {},
|
|
1820
1849
|
"SourceLocationName": {},
|
|
1821
1850
|
"Tags": {
|
|
1822
|
-
"
|
|
1823
|
-
"
|
|
1851
|
+
"shape": "Sc",
|
|
1852
|
+
"locationName": "tags"
|
|
1824
1853
|
}
|
|
1825
|
-
}
|
|
1826
|
-
|
|
1827
|
-
|
|
1854
|
+
}
|
|
1855
|
+
},
|
|
1856
|
+
"idempotent": true
|
|
1828
1857
|
},
|
|
1829
1858
|
"UpdateSourceLocation": {
|
|
1830
1859
|
"http": {
|
|
1831
1860
|
"method": "PUT",
|
|
1832
|
-
"requestUri": "/sourceLocation/{
|
|
1861
|
+
"requestUri": "/sourceLocation/{SourceLocationName}",
|
|
1833
1862
|
"responseCode": 200
|
|
1834
1863
|
},
|
|
1835
1864
|
"input": {
|
|
1865
|
+
"type": "structure",
|
|
1866
|
+
"required": [
|
|
1867
|
+
"HttpConfiguration",
|
|
1868
|
+
"SourceLocationName"
|
|
1869
|
+
],
|
|
1836
1870
|
"members": {
|
|
1837
1871
|
"AccessConfiguration": {
|
|
1838
1872
|
"shape": "S16"
|
|
@@ -1848,16 +1882,12 @@
|
|
|
1848
1882
|
},
|
|
1849
1883
|
"SourceLocationName": {
|
|
1850
1884
|
"location": "uri",
|
|
1851
|
-
"locationName": "
|
|
1885
|
+
"locationName": "SourceLocationName"
|
|
1852
1886
|
}
|
|
1853
|
-
}
|
|
1854
|
-
"required": [
|
|
1855
|
-
"SourceLocationName",
|
|
1856
|
-
"HttpConfiguration"
|
|
1857
|
-
],
|
|
1858
|
-
"type": "structure"
|
|
1887
|
+
}
|
|
1859
1888
|
},
|
|
1860
1889
|
"output": {
|
|
1890
|
+
"type": "structure",
|
|
1861
1891
|
"members": {
|
|
1862
1892
|
"AccessConfiguration": {
|
|
1863
1893
|
"shape": "S16"
|
|
@@ -1880,41 +1910,42 @@
|
|
|
1880
1910
|
},
|
|
1881
1911
|
"SourceLocationName": {},
|
|
1882
1912
|
"Tags": {
|
|
1883
|
-
"
|
|
1884
|
-
"
|
|
1913
|
+
"shape": "Sc",
|
|
1914
|
+
"locationName": "tags"
|
|
1885
1915
|
}
|
|
1886
|
-
}
|
|
1887
|
-
|
|
1888
|
-
|
|
1916
|
+
}
|
|
1917
|
+
},
|
|
1918
|
+
"idempotent": true
|
|
1889
1919
|
},
|
|
1890
1920
|
"UpdateVodSource": {
|
|
1891
1921
|
"http": {
|
|
1892
1922
|
"method": "PUT",
|
|
1893
|
-
"requestUri": "/sourceLocation/{
|
|
1923
|
+
"requestUri": "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}",
|
|
1894
1924
|
"responseCode": 200
|
|
1895
1925
|
},
|
|
1896
1926
|
"input": {
|
|
1927
|
+
"type": "structure",
|
|
1928
|
+
"required": [
|
|
1929
|
+
"HttpPackageConfigurations",
|
|
1930
|
+
"SourceLocationName",
|
|
1931
|
+
"VodSourceName"
|
|
1932
|
+
],
|
|
1897
1933
|
"members": {
|
|
1898
1934
|
"HttpPackageConfigurations": {
|
|
1899
1935
|
"shape": "Sk"
|
|
1900
1936
|
},
|
|
1901
1937
|
"SourceLocationName": {
|
|
1902
1938
|
"location": "uri",
|
|
1903
|
-
"locationName": "
|
|
1939
|
+
"locationName": "SourceLocationName"
|
|
1904
1940
|
},
|
|
1905
1941
|
"VodSourceName": {
|
|
1906
1942
|
"location": "uri",
|
|
1907
|
-
"locationName": "
|
|
1943
|
+
"locationName": "VodSourceName"
|
|
1908
1944
|
}
|
|
1909
|
-
}
|
|
1910
|
-
"required": [
|
|
1911
|
-
"SourceLocationName",
|
|
1912
|
-
"VodSourceName",
|
|
1913
|
-
"HttpPackageConfigurations"
|
|
1914
|
-
],
|
|
1915
|
-
"type": "structure"
|
|
1945
|
+
}
|
|
1916
1946
|
},
|
|
1917
1947
|
"output": {
|
|
1948
|
+
"type": "structure",
|
|
1918
1949
|
"members": {
|
|
1919
1950
|
"Arn": {},
|
|
1920
1951
|
"CreationTime": {
|
|
@@ -1928,25 +1959,31 @@
|
|
|
1928
1959
|
},
|
|
1929
1960
|
"SourceLocationName": {},
|
|
1930
1961
|
"Tags": {
|
|
1931
|
-
"
|
|
1932
|
-
"
|
|
1962
|
+
"shape": "Sc",
|
|
1963
|
+
"locationName": "tags"
|
|
1933
1964
|
},
|
|
1934
1965
|
"VodSourceName": {}
|
|
1935
|
-
}
|
|
1936
|
-
|
|
1937
|
-
|
|
1966
|
+
}
|
|
1967
|
+
},
|
|
1968
|
+
"idempotent": true
|
|
1938
1969
|
}
|
|
1939
1970
|
},
|
|
1940
1971
|
"shapes": {
|
|
1941
1972
|
"S6": {
|
|
1973
|
+
"type": "structure",
|
|
1942
1974
|
"members": {
|
|
1943
1975
|
"SourceLocationName": {},
|
|
1944
1976
|
"VodSourceName": {}
|
|
1945
|
-
}
|
|
1946
|
-
"type": "structure"
|
|
1977
|
+
}
|
|
1947
1978
|
},
|
|
1948
1979
|
"S7": {
|
|
1980
|
+
"type": "list",
|
|
1949
1981
|
"member": {
|
|
1982
|
+
"type": "structure",
|
|
1983
|
+
"required": [
|
|
1984
|
+
"ManifestName",
|
|
1985
|
+
"SourceGroup"
|
|
1986
|
+
],
|
|
1950
1987
|
"members": {
|
|
1951
1988
|
"DashPlaylistSettings": {
|
|
1952
1989
|
"shape": "S9"
|
|
@@ -1956,16 +1993,11 @@
|
|
|
1956
1993
|
},
|
|
1957
1994
|
"ManifestName": {},
|
|
1958
1995
|
"SourceGroup": {}
|
|
1959
|
-
}
|
|
1960
|
-
|
|
1961
|
-
"ManifestName",
|
|
1962
|
-
"SourceGroup"
|
|
1963
|
-
],
|
|
1964
|
-
"type": "structure"
|
|
1965
|
-
},
|
|
1966
|
-
"type": "list"
|
|
1996
|
+
}
|
|
1997
|
+
}
|
|
1967
1998
|
},
|
|
1968
1999
|
"S9": {
|
|
2000
|
+
"type": "structure",
|
|
1969
2001
|
"members": {
|
|
1970
2002
|
"ManifestWindowSeconds": {
|
|
1971
2003
|
"type": "integer"
|
|
@@ -1979,28 +2011,34 @@
|
|
|
1979
2011
|
"SuggestedPresentationDelaySeconds": {
|
|
1980
2012
|
"type": "integer"
|
|
1981
2013
|
}
|
|
1982
|
-
}
|
|
1983
|
-
"type": "structure"
|
|
2014
|
+
}
|
|
1984
2015
|
},
|
|
1985
2016
|
"Sa": {
|
|
2017
|
+
"type": "structure",
|
|
1986
2018
|
"members": {
|
|
1987
2019
|
"ManifestWindowSeconds": {
|
|
1988
2020
|
"type": "integer"
|
|
1989
2021
|
}
|
|
1990
|
-
}
|
|
1991
|
-
"type": "structure"
|
|
2022
|
+
}
|
|
1992
2023
|
},
|
|
1993
2024
|
"Sc": {
|
|
1994
|
-
"key": {},
|
|
1995
2025
|
"type": "map",
|
|
2026
|
+
"key": {},
|
|
1996
2027
|
"value": {}
|
|
1997
2028
|
},
|
|
1998
2029
|
"Sg": {
|
|
1999
|
-
"
|
|
2000
|
-
"
|
|
2030
|
+
"type": "timestamp",
|
|
2031
|
+
"timestampFormat": "unixTimestamp"
|
|
2001
2032
|
},
|
|
2002
2033
|
"Sh": {
|
|
2034
|
+
"type": "list",
|
|
2003
2035
|
"member": {
|
|
2036
|
+
"type": "structure",
|
|
2037
|
+
"required": [
|
|
2038
|
+
"ManifestName",
|
|
2039
|
+
"PlaybackUrl",
|
|
2040
|
+
"SourceGroup"
|
|
2041
|
+
],
|
|
2004
2042
|
"members": {
|
|
2005
2043
|
"DashPlaylistSettings": {
|
|
2006
2044
|
"shape": "S9"
|
|
@@ -2011,47 +2049,44 @@
|
|
|
2011
2049
|
"ManifestName": {},
|
|
2012
2050
|
"PlaybackUrl": {},
|
|
2013
2051
|
"SourceGroup": {}
|
|
2014
|
-
}
|
|
2015
|
-
|
|
2016
|
-
"ManifestName",
|
|
2017
|
-
"PlaybackUrl",
|
|
2018
|
-
"SourceGroup"
|
|
2019
|
-
],
|
|
2020
|
-
"type": "structure"
|
|
2021
|
-
},
|
|
2022
|
-
"type": "list"
|
|
2052
|
+
}
|
|
2053
|
+
}
|
|
2023
2054
|
},
|
|
2024
2055
|
"Sk": {
|
|
2056
|
+
"type": "list",
|
|
2025
2057
|
"member": {
|
|
2058
|
+
"type": "structure",
|
|
2059
|
+
"required": [
|
|
2060
|
+
"Path",
|
|
2061
|
+
"SourceGroup",
|
|
2062
|
+
"Type"
|
|
2063
|
+
],
|
|
2026
2064
|
"members": {
|
|
2027
2065
|
"Path": {},
|
|
2028
2066
|
"SourceGroup": {},
|
|
2029
2067
|
"Type": {}
|
|
2030
|
-
}
|
|
2031
|
-
|
|
2032
|
-
"Path",
|
|
2033
|
-
"Type",
|
|
2034
|
-
"SourceGroup"
|
|
2035
|
-
],
|
|
2036
|
-
"type": "structure"
|
|
2037
|
-
},
|
|
2038
|
-
"type": "list"
|
|
2068
|
+
}
|
|
2069
|
+
}
|
|
2039
2070
|
},
|
|
2040
2071
|
"Sp": {
|
|
2072
|
+
"type": "structure",
|
|
2073
|
+
"required": [
|
|
2074
|
+
"EndTime"
|
|
2075
|
+
],
|
|
2041
2076
|
"members": {
|
|
2042
2077
|
"AvailMatchingCriteria": {
|
|
2078
|
+
"type": "list",
|
|
2043
2079
|
"member": {
|
|
2080
|
+
"type": "structure",
|
|
2081
|
+
"required": [
|
|
2082
|
+
"DynamicVariable",
|
|
2083
|
+
"Operator"
|
|
2084
|
+
],
|
|
2044
2085
|
"members": {
|
|
2045
2086
|
"DynamicVariable": {},
|
|
2046
2087
|
"Operator": {}
|
|
2047
|
-
}
|
|
2048
|
-
|
|
2049
|
-
"Operator",
|
|
2050
|
-
"DynamicVariable"
|
|
2051
|
-
],
|
|
2052
|
-
"type": "structure"
|
|
2053
|
-
},
|
|
2054
|
-
"type": "list"
|
|
2088
|
+
}
|
|
2089
|
+
}
|
|
2055
2090
|
},
|
|
2056
2091
|
"EndTime": {
|
|
2057
2092
|
"shape": "Sg"
|
|
@@ -2059,13 +2094,13 @@
|
|
|
2059
2094
|
"StartTime": {
|
|
2060
2095
|
"shape": "Sg"
|
|
2061
2096
|
}
|
|
2062
|
-
}
|
|
2097
|
+
}
|
|
2098
|
+
},
|
|
2099
|
+
"St": {
|
|
2100
|
+
"type": "structure",
|
|
2063
2101
|
"required": [
|
|
2064
2102
|
"EndTime"
|
|
2065
2103
|
],
|
|
2066
|
-
"type": "structure"
|
|
2067
|
-
},
|
|
2068
|
-
"St": {
|
|
2069
2104
|
"members": {
|
|
2070
2105
|
"DynamicVariables": {
|
|
2071
2106
|
"shape": "Sc"
|
|
@@ -2076,14 +2111,12 @@
|
|
|
2076
2111
|
"StartTime": {
|
|
2077
2112
|
"shape": "Sg"
|
|
2078
2113
|
}
|
|
2079
|
-
}
|
|
2080
|
-
"required": [
|
|
2081
|
-
"EndTime"
|
|
2082
|
-
],
|
|
2083
|
-
"type": "structure"
|
|
2114
|
+
}
|
|
2084
2115
|
},
|
|
2085
2116
|
"Sw": {
|
|
2117
|
+
"type": "list",
|
|
2086
2118
|
"member": {
|
|
2119
|
+
"type": "structure",
|
|
2087
2120
|
"members": {
|
|
2088
2121
|
"MessageType": {},
|
|
2089
2122
|
"OffsetMillis": {
|
|
@@ -2093,6 +2126,7 @@
|
|
|
2093
2126
|
"shape": "S6"
|
|
2094
2127
|
},
|
|
2095
2128
|
"SpliceInsertMessage": {
|
|
2129
|
+
"type": "structure",
|
|
2096
2130
|
"members": {
|
|
2097
2131
|
"AvailNum": {
|
|
2098
2132
|
"type": "integer"
|
|
@@ -2106,131 +2140,128 @@
|
|
|
2106
2140
|
"UniqueProgramId": {
|
|
2107
2141
|
"type": "integer"
|
|
2108
2142
|
}
|
|
2109
|
-
}
|
|
2110
|
-
"type": "structure"
|
|
2143
|
+
}
|
|
2111
2144
|
}
|
|
2112
|
-
}
|
|
2113
|
-
|
|
2114
|
-
},
|
|
2115
|
-
"type": "list"
|
|
2145
|
+
}
|
|
2146
|
+
}
|
|
2116
2147
|
},
|
|
2117
2148
|
"S16": {
|
|
2149
|
+
"type": "structure",
|
|
2118
2150
|
"members": {
|
|
2119
2151
|
"AccessType": {},
|
|
2120
2152
|
"SecretsManagerAccessTokenConfiguration": {
|
|
2153
|
+
"type": "structure",
|
|
2121
2154
|
"members": {
|
|
2122
2155
|
"HeaderName": {},
|
|
2123
2156
|
"SecretArn": {},
|
|
2124
2157
|
"SecretStringKey": {}
|
|
2125
|
-
}
|
|
2126
|
-
"type": "structure"
|
|
2158
|
+
}
|
|
2127
2159
|
}
|
|
2128
|
-
}
|
|
2129
|
-
"type": "structure"
|
|
2160
|
+
}
|
|
2130
2161
|
},
|
|
2131
2162
|
"S19": {
|
|
2163
|
+
"type": "structure",
|
|
2132
2164
|
"members": {
|
|
2133
2165
|
"BaseUrl": {}
|
|
2134
|
-
}
|
|
2135
|
-
"type": "structure"
|
|
2166
|
+
}
|
|
2136
2167
|
},
|
|
2137
2168
|
"S1a": {
|
|
2138
|
-
"
|
|
2139
|
-
"BaseUrl": {}
|
|
2140
|
-
},
|
|
2169
|
+
"type": "structure",
|
|
2141
2170
|
"required": [
|
|
2142
2171
|
"BaseUrl"
|
|
2143
2172
|
],
|
|
2144
|
-
"
|
|
2173
|
+
"members": {
|
|
2174
|
+
"BaseUrl": {}
|
|
2175
|
+
}
|
|
2145
2176
|
},
|
|
2146
2177
|
"S1b": {
|
|
2178
|
+
"type": "list",
|
|
2147
2179
|
"member": {
|
|
2180
|
+
"type": "structure",
|
|
2148
2181
|
"members": {
|
|
2149
2182
|
"BaseUrl": {},
|
|
2150
2183
|
"Name": {}
|
|
2151
|
-
}
|
|
2152
|
-
|
|
2153
|
-
},
|
|
2154
|
-
"type": "list"
|
|
2184
|
+
}
|
|
2185
|
+
}
|
|
2155
2186
|
},
|
|
2156
2187
|
"S2i": {
|
|
2188
|
+
"type": "structure",
|
|
2157
2189
|
"members": {
|
|
2158
2190
|
"Mode": {},
|
|
2159
2191
|
"Value": {}
|
|
2160
|
-
}
|
|
2161
|
-
"type": "structure"
|
|
2192
|
+
}
|
|
2162
2193
|
},
|
|
2163
2194
|
"S2k": {
|
|
2195
|
+
"type": "structure",
|
|
2164
2196
|
"members": {
|
|
2165
2197
|
"EndUrl": {},
|
|
2166
2198
|
"StartUrl": {}
|
|
2167
|
-
}
|
|
2168
|
-
"type": "structure"
|
|
2199
|
+
}
|
|
2169
2200
|
},
|
|
2170
2201
|
"S2l": {
|
|
2202
|
+
"type": "structure",
|
|
2171
2203
|
"members": {
|
|
2172
2204
|
"AdSegmentUrlPrefix": {},
|
|
2173
2205
|
"ContentSegmentUrlPrefix": {}
|
|
2174
|
-
}
|
|
2175
|
-
"type": "structure"
|
|
2206
|
+
}
|
|
2176
2207
|
},
|
|
2177
2208
|
"S2m": {
|
|
2178
|
-
"key": {},
|
|
2179
2209
|
"type": "map",
|
|
2210
|
+
"key": {},
|
|
2180
2211
|
"value": {
|
|
2181
2212
|
"shape": "Sc"
|
|
2182
2213
|
}
|
|
2183
2214
|
},
|
|
2184
2215
|
"S2n": {
|
|
2216
|
+
"type": "structure",
|
|
2185
2217
|
"members": {
|
|
2186
2218
|
"ManifestEndpointPrefix": {},
|
|
2187
2219
|
"MpdLocation": {},
|
|
2188
2220
|
"OriginManifestType": {}
|
|
2189
|
-
}
|
|
2190
|
-
"type": "structure"
|
|
2221
|
+
}
|
|
2191
2222
|
},
|
|
2192
2223
|
"S2p": {
|
|
2224
|
+
"type": "structure",
|
|
2193
2225
|
"members": {
|
|
2194
2226
|
"ManifestEndpointPrefix": {}
|
|
2195
|
-
}
|
|
2196
|
-
"type": "structure"
|
|
2227
|
+
}
|
|
2197
2228
|
},
|
|
2198
2229
|
"S2q": {
|
|
2230
|
+
"type": "structure",
|
|
2199
2231
|
"members": {
|
|
2200
2232
|
"AdDecisionServerUrl": {},
|
|
2201
2233
|
"MaxDurationSeconds": {
|
|
2202
2234
|
"type": "integer"
|
|
2203
2235
|
}
|
|
2204
|
-
}
|
|
2205
|
-
"type": "structure"
|
|
2236
|
+
}
|
|
2206
2237
|
},
|
|
2207
2238
|
"S2r": {
|
|
2239
|
+
"type": "structure",
|
|
2240
|
+
"required": [
|
|
2241
|
+
"PercentEnabled"
|
|
2242
|
+
],
|
|
2208
2243
|
"members": {
|
|
2209
2244
|
"PercentEnabled": {
|
|
2210
2245
|
"type": "integer"
|
|
2211
2246
|
}
|
|
2212
|
-
}
|
|
2213
|
-
"required": [
|
|
2214
|
-
"PercentEnabled"
|
|
2215
|
-
],
|
|
2216
|
-
"type": "structure"
|
|
2247
|
+
}
|
|
2217
2248
|
},
|
|
2218
2249
|
"S2s": {
|
|
2250
|
+
"type": "structure",
|
|
2219
2251
|
"members": {
|
|
2220
2252
|
"AdMarkerPassthrough": {
|
|
2253
|
+
"type": "structure",
|
|
2221
2254
|
"members": {
|
|
2222
2255
|
"Enabled": {
|
|
2223
2256
|
"type": "boolean"
|
|
2224
2257
|
}
|
|
2225
|
-
}
|
|
2226
|
-
"type": "structure"
|
|
2258
|
+
}
|
|
2227
2259
|
}
|
|
2228
|
-
}
|
|
2229
|
-
"type": "structure"
|
|
2260
|
+
}
|
|
2230
2261
|
},
|
|
2231
2262
|
"S32": {
|
|
2232
|
-
"
|
|
2233
|
-
"
|
|
2263
|
+
"type": "list",
|
|
2264
|
+
"member": {}
|
|
2234
2265
|
}
|
|
2235
2266
|
}
|
|
2236
2267
|
}
|