mediapackagevod.d.ts
22.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
interface Blob {}
declare class MediaPackageVod extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: MediaPackageVod.Types.ClientConfiguration)
config: Config & MediaPackageVod.Types.ClientConfiguration;
/**
* Creates a new MediaPackage VOD Asset resource.
*/
createAsset(params: MediaPackageVod.Types.CreateAssetRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.CreateAssetResponse) => void): Request<MediaPackageVod.Types.CreateAssetResponse, AWSError>;
/**
* Creates a new MediaPackage VOD Asset resource.
*/
createAsset(callback?: (err: AWSError, data: MediaPackageVod.Types.CreateAssetResponse) => void): Request<MediaPackageVod.Types.CreateAssetResponse, AWSError>;
/**
* Creates a new MediaPackage VOD PackagingConfiguration resource.
*/
createPackagingConfiguration(params: MediaPackageVod.Types.CreatePackagingConfigurationRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.CreatePackagingConfigurationResponse) => void): Request<MediaPackageVod.Types.CreatePackagingConfigurationResponse, AWSError>;
/**
* Creates a new MediaPackage VOD PackagingConfiguration resource.
*/
createPackagingConfiguration(callback?: (err: AWSError, data: MediaPackageVod.Types.CreatePackagingConfigurationResponse) => void): Request<MediaPackageVod.Types.CreatePackagingConfigurationResponse, AWSError>;
/**
* Creates a new MediaPackage VOD PackagingGroup resource.
*/
createPackagingGroup(params: MediaPackageVod.Types.CreatePackagingGroupRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.CreatePackagingGroupResponse) => void): Request<MediaPackageVod.Types.CreatePackagingGroupResponse, AWSError>;
/**
* Creates a new MediaPackage VOD PackagingGroup resource.
*/
createPackagingGroup(callback?: (err: AWSError, data: MediaPackageVod.Types.CreatePackagingGroupResponse) => void): Request<MediaPackageVod.Types.CreatePackagingGroupResponse, AWSError>;
/**
* Deletes an existing MediaPackage VOD Asset resource.
*/
deleteAsset(params: MediaPackageVod.Types.DeleteAssetRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.DeleteAssetResponse) => void): Request<MediaPackageVod.Types.DeleteAssetResponse, AWSError>;
/**
* Deletes an existing MediaPackage VOD Asset resource.
*/
deleteAsset(callback?: (err: AWSError, data: MediaPackageVod.Types.DeleteAssetResponse) => void): Request<MediaPackageVod.Types.DeleteAssetResponse, AWSError>;
/**
* Deletes a MediaPackage VOD PackagingConfiguration resource.
*/
deletePackagingConfiguration(params: MediaPackageVod.Types.DeletePackagingConfigurationRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.DeletePackagingConfigurationResponse) => void): Request<MediaPackageVod.Types.DeletePackagingConfigurationResponse, AWSError>;
/**
* Deletes a MediaPackage VOD PackagingConfiguration resource.
*/
deletePackagingConfiguration(callback?: (err: AWSError, data: MediaPackageVod.Types.DeletePackagingConfigurationResponse) => void): Request<MediaPackageVod.Types.DeletePackagingConfigurationResponse, AWSError>;
/**
* Deletes a MediaPackage VOD PackagingGroup resource.
*/
deletePackagingGroup(params: MediaPackageVod.Types.DeletePackagingGroupRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.DeletePackagingGroupResponse) => void): Request<MediaPackageVod.Types.DeletePackagingGroupResponse, AWSError>;
/**
* Deletes a MediaPackage VOD PackagingGroup resource.
*/
deletePackagingGroup(callback?: (err: AWSError, data: MediaPackageVod.Types.DeletePackagingGroupResponse) => void): Request<MediaPackageVod.Types.DeletePackagingGroupResponse, AWSError>;
/**
* Returns a description of a MediaPackage VOD Asset resource.
*/
describeAsset(params: MediaPackageVod.Types.DescribeAssetRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.DescribeAssetResponse) => void): Request<MediaPackageVod.Types.DescribeAssetResponse, AWSError>;
/**
* Returns a description of a MediaPackage VOD Asset resource.
*/
describeAsset(callback?: (err: AWSError, data: MediaPackageVod.Types.DescribeAssetResponse) => void): Request<MediaPackageVod.Types.DescribeAssetResponse, AWSError>;
/**
* Returns a description of a MediaPackage VOD PackagingConfiguration resource.
*/
describePackagingConfiguration(params: MediaPackageVod.Types.DescribePackagingConfigurationRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.DescribePackagingConfigurationResponse) => void): Request<MediaPackageVod.Types.DescribePackagingConfigurationResponse, AWSError>;
/**
* Returns a description of a MediaPackage VOD PackagingConfiguration resource.
*/
describePackagingConfiguration(callback?: (err: AWSError, data: MediaPackageVod.Types.DescribePackagingConfigurationResponse) => void): Request<MediaPackageVod.Types.DescribePackagingConfigurationResponse, AWSError>;
/**
* Returns a description of a MediaPackage VOD PackagingGroup resource.
*/
describePackagingGroup(params: MediaPackageVod.Types.DescribePackagingGroupRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.DescribePackagingGroupResponse) => void): Request<MediaPackageVod.Types.DescribePackagingGroupResponse, AWSError>;
/**
* Returns a description of a MediaPackage VOD PackagingGroup resource.
*/
describePackagingGroup(callback?: (err: AWSError, data: MediaPackageVod.Types.DescribePackagingGroupResponse) => void): Request<MediaPackageVod.Types.DescribePackagingGroupResponse, AWSError>;
/**
* Returns a collection of MediaPackage VOD Asset resources.
*/
listAssets(params: MediaPackageVod.Types.ListAssetsRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.ListAssetsResponse) => void): Request<MediaPackageVod.Types.ListAssetsResponse, AWSError>;
/**
* Returns a collection of MediaPackage VOD Asset resources.
*/
listAssets(callback?: (err: AWSError, data: MediaPackageVod.Types.ListAssetsResponse) => void): Request<MediaPackageVod.Types.ListAssetsResponse, AWSError>;
/**
* Returns a collection of MediaPackage VOD PackagingConfiguration resources.
*/
listPackagingConfigurations(params: MediaPackageVod.Types.ListPackagingConfigurationsRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.ListPackagingConfigurationsResponse) => void): Request<MediaPackageVod.Types.ListPackagingConfigurationsResponse, AWSError>;
/**
* Returns a collection of MediaPackage VOD PackagingConfiguration resources.
*/
listPackagingConfigurations(callback?: (err: AWSError, data: MediaPackageVod.Types.ListPackagingConfigurationsResponse) => void): Request<MediaPackageVod.Types.ListPackagingConfigurationsResponse, AWSError>;
/**
* Returns a collection of MediaPackage VOD PackagingGroup resources.
*/
listPackagingGroups(params: MediaPackageVod.Types.ListPackagingGroupsRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.ListPackagingGroupsResponse) => void): Request<MediaPackageVod.Types.ListPackagingGroupsResponse, AWSError>;
/**
* Returns a collection of MediaPackage VOD PackagingGroup resources.
*/
listPackagingGroups(callback?: (err: AWSError, data: MediaPackageVod.Types.ListPackagingGroupsResponse) => void): Request<MediaPackageVod.Types.ListPackagingGroupsResponse, AWSError>;
}
declare namespace MediaPackageVod {
export type AdMarkers = "NONE"|"SCTE35_ENHANCED"|"PASSTHROUGH"|string;
export interface AssetShallow {
/**
* The ARN of the Asset.
*/
Arn?: __string;
/**
* The time the Asset was initially submitted for Ingest.
*/
CreatedAt?: __string;
/**
* The unique identifier for the Asset.
*/
Id?: __string;
/**
* The ID of the PackagingGroup for the Asset.
*/
PackagingGroupId?: __string;
/**
* The resource ID to include in SPEKE key requests.
*/
ResourceId?: __string;
/**
* ARN of the source object in S3.
*/
SourceArn?: __string;
/**
* The IAM role ARN used to access the source S3 bucket.
*/
SourceRoleArn?: __string;
}
export interface CmafEncryption {
SpekeKeyProvider: SpekeKeyProvider;
}
export interface CmafPackage {
Encryption?: CmafEncryption;
/**
* A list of HLS manifest configurations.
*/
HlsManifests: __listOfHlsManifest;
/**
* Duration (in seconds) of each fragment. Actual fragments will be
rounded to the nearest multiple of the source fragment duration.
*/
SegmentDurationSeconds?: __integer;
}
export interface CreateAssetRequest {
/**
* The unique identifier for the Asset.
*/
Id: __string;
/**
* The ID of the PackagingGroup for the Asset.
*/
PackagingGroupId: __string;
/**
* The resource ID to include in SPEKE key requests.
*/
ResourceId?: __string;
/**
* ARN of the source object in S3.
*/
SourceArn: __string;
/**
* The IAM role ARN used to access the source S3 bucket.
*/
SourceRoleArn: __string;
}
export interface CreateAssetResponse {
/**
* The ARN of the Asset.
*/
Arn?: __string;
/**
* The time the Asset was initially submitted for Ingest.
*/
CreatedAt?: __string;
/**
* The list of egress endpoints available for the Asset.
*/
EgressEndpoints?: __listOfEgressEndpoint;
/**
* The unique identifier for the Asset.
*/
Id?: __string;
/**
* The ID of the PackagingGroup for the Asset.
*/
PackagingGroupId?: __string;
/**
* The resource ID to include in SPEKE key requests.
*/
ResourceId?: __string;
/**
* ARN of the source object in S3.
*/
SourceArn?: __string;
/**
* The IAM role_arn used to access the source S3 bucket.
*/
SourceRoleArn?: __string;
}
export interface CreatePackagingConfigurationRequest {
CmafPackage?: CmafPackage;
DashPackage?: DashPackage;
HlsPackage?: HlsPackage;
/**
* The ID of the PackagingConfiguration.
*/
Id: __string;
MssPackage?: MssPackage;
/**
* The ID of a PackagingGroup.
*/
PackagingGroupId: __string;
}
export interface CreatePackagingConfigurationResponse {
/**
* The ARN of the PackagingConfiguration.
*/
Arn?: __string;
CmafPackage?: CmafPackage;
DashPackage?: DashPackage;
HlsPackage?: HlsPackage;
/**
* The ID of the PackagingConfiguration.
*/
Id?: __string;
MssPackage?: MssPackage;
/**
* The ID of a PackagingGroup.
*/
PackagingGroupId?: __string;
}
export interface CreatePackagingGroupRequest {
/**
* The ID of the PackagingGroup.
*/
Id: __string;
}
export interface CreatePackagingGroupResponse {
/**
* The ARN of the PackagingGroup.
*/
Arn?: __string;
/**
* The fully qualified domain name for Assets in the PackagingGroup.
*/
DomainName?: __string;
/**
* The ID of the PackagingGroup.
*/
Id?: __string;
}
export interface DashEncryption {
SpekeKeyProvider: SpekeKeyProvider;
}
export interface DashManifest {
/**
* An optional string to include in the name of the manifest.
*/
ManifestName?: __string;
/**
* Minimum duration (in seconds) that a player will buffer media before starting the presentation.
*/
MinBufferTimeSeconds?: __integer;
/**
* The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled.
*/
Profile?: Profile;
StreamSelection?: StreamSelection;
}
export interface DashPackage {
/**
* A list of DASH manifest configurations.
*/
DashManifests: __listOfDashManifest;
Encryption?: DashEncryption;
/**
* Duration (in seconds) of each segment. Actual segments will be
rounded to the nearest multiple of the source segment duration.
*/
SegmentDurationSeconds?: __integer;
}
export interface DeleteAssetRequest {
/**
* The ID of the MediaPackage VOD Asset resource to delete.
*/
Id: __string;
}
export interface DeleteAssetResponse {
}
export interface DeletePackagingConfigurationRequest {
/**
* The ID of the MediaPackage VOD PackagingConfiguration resource to delete.
*/
Id: __string;
}
export interface DeletePackagingConfigurationResponse {
}
export interface DeletePackagingGroupRequest {
/**
* The ID of the MediaPackage VOD PackagingGroup resource to delete.
*/
Id: __string;
}
export interface DeletePackagingGroupResponse {
}
export interface DescribeAssetRequest {
/**
* The ID of an MediaPackage VOD Asset resource.
*/
Id: __string;
}
export interface DescribeAssetResponse {
/**
* The ARN of the Asset.
*/
Arn?: __string;
/**
* The time the Asset was initially submitted for Ingest.
*/
CreatedAt?: __string;
/**
* The list of egress endpoints available for the Asset.
*/
EgressEndpoints?: __listOfEgressEndpoint;
/**
* The unique identifier for the Asset.
*/
Id?: __string;
/**
* The ID of the PackagingGroup for the Asset.
*/
PackagingGroupId?: __string;
/**
* The resource ID to include in SPEKE key requests.
*/
ResourceId?: __string;
/**
* ARN of the source object in S3.
*/
SourceArn?: __string;
/**
* The IAM role_arn used to access the source S3 bucket.
*/
SourceRoleArn?: __string;
}
export interface DescribePackagingConfigurationRequest {
/**
* The ID of a MediaPackage VOD PackagingConfiguration resource.
*/
Id: __string;
}
export interface DescribePackagingConfigurationResponse {
/**
* The ARN of the PackagingConfiguration.
*/
Arn?: __string;
CmafPackage?: CmafPackage;
DashPackage?: DashPackage;
HlsPackage?: HlsPackage;
/**
* The ID of the PackagingConfiguration.
*/
Id?: __string;
MssPackage?: MssPackage;
/**
* The ID of a PackagingGroup.
*/
PackagingGroupId?: __string;
}
export interface DescribePackagingGroupRequest {
/**
* The ID of a MediaPackage VOD PackagingGroup resource.
*/
Id: __string;
}
export interface DescribePackagingGroupResponse {
/**
* The ARN of the PackagingGroup.
*/
Arn?: __string;
/**
* The fully qualified domain name for Assets in the PackagingGroup.
*/
DomainName?: __string;
/**
* The ID of the PackagingGroup.
*/
Id?: __string;
}
export interface EgressEndpoint {
/**
* The ID of the PackagingConfiguration being applied to the Asset.
*/
PackagingConfigurationId?: __string;
/**
* The URL of the parent manifest for the repackaged Asset.
*/
Url?: __string;
}
export type EncryptionMethod = "AES_128"|"SAMPLE_AES"|string;
export interface HlsEncryption {
/**
* A constant initialization vector for encryption (optional).
When not specified the initialization vector will be periodically rotated.
*/
ConstantInitializationVector?: __string;
/**
* The encryption method to use.
*/
EncryptionMethod?: EncryptionMethod;
SpekeKeyProvider: SpekeKeyProvider;
}
export interface HlsManifest {
/**
* This setting controls how ad markers are included in the packaged OriginEndpoint.
"NONE" will omit all SCTE-35 ad markers from the output.
"PASSTHROUGH" causes the manifest to contain a copy of the SCTE-35 ad
markers (comments) taken directly from the input HTTP Live Streaming (HLS) manifest.
"SCTE35_ENHANCED" generates ad markers and blackout tags based on SCTE-35
messages in the input source.
*/
AdMarkers?: AdMarkers;
/**
* When enabled, an I-Frame only stream will be included in the output.
*/
IncludeIframeOnlyStream?: __boolean;
/**
* An optional string to include in the name of the manifest.
*/
ManifestName?: __string;
/**
* The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag
inserted into manifests. Additionally, when an interval is specified
ID3Timed Metadata messages will be generated every 5 seconds using the
ingest time of the content.
If the interval is not specified, or set to 0, then
no EXT-X-PROGRAM-DATE-TIME tags will be inserted into manifests and no
ID3Timed Metadata messages will be generated. Note that irrespective
of this parameter, if any ID3 Timed Metadata is found in HTTP Live Streaming (HLS) input,
it will be passed through to HLS output.
*/
ProgramDateTimeIntervalSeconds?: __integer;
/**
* When enabled, the EXT-X-KEY tag will be repeated in output manifests.
*/
RepeatExtXKey?: __boolean;
StreamSelection?: StreamSelection;
}
export interface HlsPackage {
Encryption?: HlsEncryption;
/**
* A list of HLS manifest configurations.
*/
HlsManifests: __listOfHlsManifest;
/**
* Duration (in seconds) of each fragment. Actual fragments will be
rounded to the nearest multiple of the source fragment duration.
*/
SegmentDurationSeconds?: __integer;
/**
* When enabled, audio streams will be placed in rendition groups in the output.
*/
UseAudioRenditionGroup?: __boolean;
}
export interface ListAssetsRequest {
/**
* Upper bound on number of records to return.
*/
MaxResults?: MaxResults;
/**
* A token used to resume pagination from the end of a previous request.
*/
NextToken?: __string;
/**
* Returns Assets associated with the specified PackagingGroup.
*/
PackagingGroupId?: __string;
}
export interface ListAssetsResponse {
/**
* A list of MediaPackage VOD Asset resources.
*/
Assets?: __listOfAssetShallow;
/**
* A token that can be used to resume pagination from the end of the collection.
*/
NextToken?: __string;
}
export interface ListPackagingConfigurationsRequest {
/**
* Upper bound on number of records to return.
*/
MaxResults?: MaxResults;
/**
* A token used to resume pagination from the end of a previous request.
*/
NextToken?: __string;
/**
* Returns MediaPackage VOD PackagingConfigurations associated with the specified PackagingGroup.
*/
PackagingGroupId?: __string;
}
export interface ListPackagingConfigurationsResponse {
/**
* A token that can be used to resume pagination from the end of the collection.
*/
NextToken?: __string;
/**
* A list of MediaPackage VOD PackagingConfiguration resources.
*/
PackagingConfigurations?: __listOfPackagingConfiguration;
}
export interface ListPackagingGroupsRequest {
/**
* Upper bound on number of records to return.
*/
MaxResults?: MaxResults;
/**
* A token used to resume pagination from the end of a previous request.
*/
NextToken?: __string;
}
export interface ListPackagingGroupsResponse {
/**
* A token that can be used to resume pagination from the end of the collection.
*/
NextToken?: __string;
/**
* A list of MediaPackage VOD PackagingGroup resources.
*/
PackagingGroups?: __listOfPackagingGroup;
}
export type MaxResults = number;
export interface MssEncryption {
SpekeKeyProvider: SpekeKeyProvider;
}
export interface MssManifest {
/**
* An optional string to include in the name of the manifest.
*/
ManifestName?: __string;
StreamSelection?: StreamSelection;
}
export interface MssPackage {
Encryption?: MssEncryption;
/**
* A list of MSS manifest configurations.
*/
MssManifests: __listOfMssManifest;
/**
* The duration (in seconds) of each segment.
*/
SegmentDurationSeconds?: __integer;
}
export interface PackagingConfiguration {
/**
* The ARN of the PackagingConfiguration.
*/
Arn?: __string;
CmafPackage?: CmafPackage;
DashPackage?: DashPackage;
HlsPackage?: HlsPackage;
/**
* The ID of the PackagingConfiguration.
*/
Id?: __string;
MssPackage?: MssPackage;
/**
* The ID of a PackagingGroup.
*/
PackagingGroupId?: __string;
}
export interface PackagingGroup {
/**
* The ARN of the PackagingGroup.
*/
Arn?: __string;
/**
* The fully qualified domain name for Assets in the PackagingGroup.
*/
DomainName?: __string;
/**
* The ID of the PackagingGroup.
*/
Id?: __string;
}
export type Profile = "NONE"|"HBBTV_1_5"|string;
export interface SpekeKeyProvider {
/**
* An Amazon Resource Name (ARN) of an IAM role that AWS Elemental
MediaPackage will assume when accessing the key provider service.
*/
RoleArn: __string;
/**
* The system IDs to include in key requests.
*/
SystemIds: __listOf__string;
/**
* The URL of the external key provider service.
*/
Url: __string;
}
export type StreamOrder = "ORIGINAL"|"VIDEO_BITRATE_ASCENDING"|"VIDEO_BITRATE_DESCENDING"|string;
export interface StreamSelection {
/**
* The maximum video bitrate (bps) to include in output.
*/
MaxVideoBitsPerSecond?: __integer;
/**
* The minimum video bitrate (bps) to include in output.
*/
MinVideoBitsPerSecond?: __integer;
/**
* A directive that determines the order of streams in the output.
*/
StreamOrder?: StreamOrder;
}
export type __boolean = boolean;
export type __integer = number;
export type __listOfAssetShallow = AssetShallow[];
export type __listOfDashManifest = DashManifest[];
export type __listOfEgressEndpoint = EgressEndpoint[];
export type __listOfHlsManifest = HlsManifest[];
export type __listOfMssManifest = MssManifest[];
export type __listOfPackagingConfiguration = PackagingConfiguration[];
export type __listOfPackagingGroup = PackagingGroup[];
export type __listOf__string = __string[];
export type __string = string;
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2018-11-07"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the MediaPackageVod client.
*/
export import Types = MediaPackageVod;
}
export = MediaPackageVod;