@aws-sdk/client-mediapackage 3.169.0 → 3.170.0

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.
Files changed (39) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/MediaPackage.d.ts +343 -97
  3. package/dist-types/ts3.4/MediaPackageClient.d.ts +244 -92
  4. package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/CreateHarvestJobCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateOriginEndpointCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteOriginEndpointCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DescribeChannelCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DescribeHarvestJobCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/DescribeOriginEndpointCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/ListHarvestJobsCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/ListOriginEndpointsCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +37 -16
  17. package/dist-types/ts3.4/commands/RotateChannelCredentialsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/RotateIngestEndpointCredentialsCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +31 -16
  20. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +31 -16
  21. package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/UpdateOriginEndpointCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/index.d.ts +19 -19
  24. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  25. package/dist-types/ts3.4/index.d.ts +6 -6
  26. package/dist-types/ts3.4/models/MediaPackageServiceException.d.ts +8 -6
  27. package/dist-types/ts3.4/models/index.d.ts +1 -1
  28. package/dist-types/ts3.4/models/models_0.d.ts +1065 -1010
  29. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  30. package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +11 -4
  31. package/dist-types/ts3.4/pagination/ListHarvestJobsPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/ListOriginEndpointsPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  34. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +233 -59
  35. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  39. package/package.json +34 -34
@@ -1,1010 +1,1065 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { MediaPackageServiceException as __BaseException } from "./MediaPackageServiceException";
3
- export declare enum __AdTriggersElement {
4
- BREAK = "BREAK",
5
- DISTRIBUTOR_ADVERTISEMENT = "DISTRIBUTOR_ADVERTISEMENT",
6
- DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY = "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
7
- DISTRIBUTOR_PLACEMENT_OPPORTUNITY = "DISTRIBUTOR_PLACEMENT_OPPORTUNITY",
8
- PROVIDER_ADVERTISEMENT = "PROVIDER_ADVERTISEMENT",
9
- PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY = "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY",
10
- PROVIDER_PLACEMENT_OPPORTUNITY = "PROVIDER_PLACEMENT_OPPORTUNITY",
11
- SPLICE_INSERT = "SPLICE_INSERT"
12
- }
13
- export declare enum __PeriodTriggersElement {
14
- ADS = "ADS"
15
- }
16
-
17
- export interface EgressAccessLogs {
18
-
19
- LogGroupName?: string;
20
- }
21
-
22
- export interface IngestEndpoint {
23
-
24
- Id?: string;
25
-
26
- Password?: string;
27
-
28
- Url?: string;
29
-
30
- Username?: string;
31
- }
32
-
33
- export interface HlsIngest {
34
-
35
- IngestEndpoints?: IngestEndpoint[];
36
- }
37
-
38
- export interface IngressAccessLogs {
39
-
40
- LogGroupName?: string;
41
- }
42
-
43
- export interface Channel {
44
-
45
- Arn?: string;
46
-
47
- Description?: string;
48
-
49
- EgressAccessLogs?: EgressAccessLogs;
50
-
51
- HlsIngest?: HlsIngest;
52
-
53
- Id?: string;
54
-
55
- IngressAccessLogs?: IngressAccessLogs;
56
-
57
- Tags?: Record<string, string>;
58
- }
59
-
60
- export interface S3Destination {
61
-
62
- BucketName: string | undefined;
63
-
64
- ManifestKey: string | undefined;
65
-
66
- RoleArn: string | undefined;
67
- }
68
- export declare enum Status {
69
- FAILED = "FAILED",
70
- IN_PROGRESS = "IN_PROGRESS",
71
- SUCCEEDED = "SUCCEEDED"
72
- }
73
-
74
- export interface HarvestJob {
75
-
76
- Arn?: string;
77
-
78
- ChannelId?: string;
79
-
80
- CreatedAt?: string;
81
-
82
- EndTime?: string;
83
-
84
- Id?: string;
85
-
86
- OriginEndpointId?: string;
87
-
88
- S3Destination?: S3Destination;
89
-
90
- StartTime?: string;
91
-
92
- Status?: Status | string;
93
- }
94
- export declare enum AdMarkers {
95
- DATERANGE = "DATERANGE",
96
- NONE = "NONE",
97
- PASSTHROUGH = "PASSTHROUGH",
98
- SCTE35_ENHANCED = "SCTE35_ENHANCED"
99
- }
100
- export declare enum AdsOnDeliveryRestrictions {
101
- BOTH = "BOTH",
102
- NONE = "NONE",
103
- RESTRICTED = "RESTRICTED",
104
- UNRESTRICTED = "UNRESTRICTED"
105
- }
106
- export declare enum PlaylistType {
107
- EVENT = "EVENT",
108
- NONE = "NONE",
109
- VOD = "VOD"
110
- }
111
-
112
- export interface HlsManifest {
113
-
114
- AdMarkers?: AdMarkers | string;
115
-
116
- Id: string | undefined;
117
-
118
- IncludeIframeOnlyStream?: boolean;
119
-
120
- ManifestName?: string;
121
-
122
- PlaylistType?: PlaylistType | string;
123
-
124
- PlaylistWindowSeconds?: number;
125
-
126
- ProgramDateTimeIntervalSeconds?: number;
127
-
128
- Url?: string;
129
-
130
- AdTriggers?: (__AdTriggersElement | string)[];
131
-
132
- AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | string;
133
- }
134
-
135
- export interface HlsManifestCreateOrUpdateParameters {
136
-
137
- AdMarkers?: AdMarkers | string;
138
-
139
- AdTriggers?: (__AdTriggersElement | string)[];
140
-
141
- AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | string;
142
-
143
- Id: string | undefined;
144
-
145
- IncludeIframeOnlyStream?: boolean;
146
-
147
- ManifestName?: string;
148
-
149
- PlaylistType?: PlaylistType | string;
150
-
151
- PlaylistWindowSeconds?: number;
152
-
153
- ProgramDateTimeIntervalSeconds?: number;
154
- }
155
-
156
- export interface Authorization {
157
-
158
- CdnIdentifierSecret: string | undefined;
159
-
160
- SecretsRoleArn: string | undefined;
161
- }
162
- export declare enum CmafEncryptionMethod {
163
- AES_CTR = "AES_CTR",
164
- SAMPLE_AES = "SAMPLE_AES"
165
- }
166
- export declare enum PresetSpeke20Audio {
167
- PRESET_AUDIO_1 = "PRESET-AUDIO-1",
168
- PRESET_AUDIO_2 = "PRESET-AUDIO-2",
169
- PRESET_AUDIO_3 = "PRESET-AUDIO-3",
170
- SHARED = "SHARED",
171
- UNENCRYPTED = "UNENCRYPTED"
172
- }
173
- export declare enum PresetSpeke20Video {
174
- PRESET_VIDEO_1 = "PRESET-VIDEO-1",
175
- PRESET_VIDEO_2 = "PRESET-VIDEO-2",
176
- PRESET_VIDEO_3 = "PRESET-VIDEO-3",
177
- PRESET_VIDEO_4 = "PRESET-VIDEO-4",
178
- PRESET_VIDEO_5 = "PRESET-VIDEO-5",
179
- PRESET_VIDEO_6 = "PRESET-VIDEO-6",
180
- PRESET_VIDEO_7 = "PRESET-VIDEO-7",
181
- PRESET_VIDEO_8 = "PRESET-VIDEO-8",
182
- SHARED = "SHARED",
183
- UNENCRYPTED = "UNENCRYPTED"
184
- }
185
-
186
- export interface EncryptionContractConfiguration {
187
-
188
- PresetSpeke20Audio: PresetSpeke20Audio | string | undefined;
189
-
190
- PresetSpeke20Video: PresetSpeke20Video | string | undefined;
191
- }
192
-
193
- export interface SpekeKeyProvider {
194
-
195
- CertificateArn?: string;
196
-
197
- EncryptionContractConfiguration?: EncryptionContractConfiguration;
198
-
199
- ResourceId: string | undefined;
200
-
201
- RoleArn: string | undefined;
202
-
203
- SystemIds: string[] | undefined;
204
-
205
- Url: string | undefined;
206
- }
207
-
208
- export interface CmafEncryption {
209
-
210
- ConstantInitializationVector?: string;
211
-
212
- EncryptionMethod?: CmafEncryptionMethod | string;
213
-
214
- KeyRotationIntervalSeconds?: number;
215
-
216
- SpekeKeyProvider: SpekeKeyProvider | undefined;
217
- }
218
- export declare enum StreamOrder {
219
- ORIGINAL = "ORIGINAL",
220
- VIDEO_BITRATE_ASCENDING = "VIDEO_BITRATE_ASCENDING",
221
- VIDEO_BITRATE_DESCENDING = "VIDEO_BITRATE_DESCENDING"
222
- }
223
-
224
- export interface StreamSelection {
225
-
226
- MaxVideoBitsPerSecond?: number;
227
-
228
- MinVideoBitsPerSecond?: number;
229
-
230
- StreamOrder?: StreamOrder | string;
231
- }
232
-
233
- export interface CmafPackage {
234
-
235
- Encryption?: CmafEncryption;
236
-
237
- HlsManifests?: HlsManifest[];
238
-
239
- SegmentDurationSeconds?: number;
240
-
241
- SegmentPrefix?: string;
242
-
243
- StreamSelection?: StreamSelection;
244
- }
245
-
246
- export interface DashEncryption {
247
-
248
- KeyRotationIntervalSeconds?: number;
249
-
250
- SpekeKeyProvider: SpekeKeyProvider | undefined;
251
- }
252
- export declare enum ManifestLayout {
253
- COMPACT = "COMPACT",
254
- FULL = "FULL"
255
- }
256
- export declare enum Profile {
257
- DVB_DASH_2014 = "DVB_DASH_2014",
258
- HBBTV_1_5 = "HBBTV_1_5",
259
- HYBRIDCAST = "HYBRIDCAST",
260
- NONE = "NONE"
261
- }
262
- export declare enum SegmentTemplateFormat {
263
- NUMBER_WITH_DURATION = "NUMBER_WITH_DURATION",
264
- NUMBER_WITH_TIMELINE = "NUMBER_WITH_TIMELINE",
265
- TIME_WITH_TIMELINE = "TIME_WITH_TIMELINE"
266
- }
267
- export declare enum UtcTiming {
268
- HTTP_HEAD = "HTTP-HEAD",
269
- HTTP_ISO = "HTTP-ISO",
270
- HTTP_XSDATE = "HTTP-XSDATE",
271
- NONE = "NONE"
272
- }
273
-
274
- export interface DashPackage {
275
-
276
- AdTriggers?: (__AdTriggersElement | string)[];
277
-
278
- AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | string;
279
-
280
- Encryption?: DashEncryption;
281
-
282
- IncludeIframeOnlyStream?: boolean;
283
-
284
- ManifestLayout?: ManifestLayout | string;
285
-
286
- ManifestWindowSeconds?: number;
287
-
288
- MinBufferTimeSeconds?: number;
289
-
290
- MinUpdatePeriodSeconds?: number;
291
-
292
- PeriodTriggers?: (__PeriodTriggersElement | string)[];
293
-
294
- Profile?: Profile | string;
295
-
296
- SegmentDurationSeconds?: number;
297
-
298
- SegmentTemplateFormat?: SegmentTemplateFormat | string;
299
-
300
- StreamSelection?: StreamSelection;
301
-
302
- SuggestedPresentationDelaySeconds?: number;
303
-
304
- UtcTiming?: UtcTiming | string;
305
-
306
- UtcTimingUri?: string;
307
- }
308
- export declare enum EncryptionMethod {
309
- AES_128 = "AES_128",
310
- SAMPLE_AES = "SAMPLE_AES"
311
- }
312
-
313
- export interface HlsEncryption {
314
-
315
- ConstantInitializationVector?: string;
316
-
317
- EncryptionMethod?: EncryptionMethod | string;
318
-
319
- KeyRotationIntervalSeconds?: number;
320
-
321
- RepeatExtXKey?: boolean;
322
-
323
- SpekeKeyProvider: SpekeKeyProvider | undefined;
324
- }
325
-
326
- export interface HlsPackage {
327
-
328
- AdMarkers?: AdMarkers | string;
329
-
330
- AdTriggers?: (__AdTriggersElement | string)[];
331
-
332
- AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | string;
333
-
334
- Encryption?: HlsEncryption;
335
-
336
- IncludeDvbSubtitles?: boolean;
337
-
338
- IncludeIframeOnlyStream?: boolean;
339
-
340
- PlaylistType?: PlaylistType | string;
341
-
342
- PlaylistWindowSeconds?: number;
343
-
344
- ProgramDateTimeIntervalSeconds?: number;
345
-
346
- SegmentDurationSeconds?: number;
347
-
348
- StreamSelection?: StreamSelection;
349
-
350
- UseAudioRenditionGroup?: boolean;
351
- }
352
-
353
- export interface MssEncryption {
354
-
355
- SpekeKeyProvider: SpekeKeyProvider | undefined;
356
- }
357
-
358
- export interface MssPackage {
359
-
360
- Encryption?: MssEncryption;
361
-
362
- ManifestWindowSeconds?: number;
363
-
364
- SegmentDurationSeconds?: number;
365
-
366
- StreamSelection?: StreamSelection;
367
- }
368
- export declare enum Origination {
369
- ALLOW = "ALLOW",
370
- DENY = "DENY"
371
- }
372
-
373
- export interface OriginEndpoint {
374
-
375
- Arn?: string;
376
-
377
- Authorization?: Authorization;
378
-
379
- ChannelId?: string;
380
-
381
- CmafPackage?: CmafPackage;
382
-
383
- DashPackage?: DashPackage;
384
-
385
- Description?: string;
386
-
387
- HlsPackage?: HlsPackage;
388
-
389
- Id?: string;
390
-
391
- ManifestName?: string;
392
-
393
- MssPackage?: MssPackage;
394
-
395
- Origination?: Origination | string;
396
-
397
- StartoverWindowSeconds?: number;
398
-
399
- Tags?: Record<string, string>;
400
-
401
- TimeDelaySeconds?: number;
402
-
403
- Url?: string;
404
-
405
- Whitelist?: string[];
406
- }
407
-
408
- export interface CmafPackageCreateOrUpdateParameters {
409
-
410
- Encryption?: CmafEncryption;
411
-
412
- HlsManifests?: HlsManifestCreateOrUpdateParameters[];
413
-
414
- SegmentDurationSeconds?: number;
415
-
416
- SegmentPrefix?: string;
417
-
418
- StreamSelection?: StreamSelection;
419
- }
420
-
421
- export interface ConfigureLogsRequest {
422
-
423
- EgressAccessLogs?: EgressAccessLogs;
424
-
425
- Id: string | undefined;
426
-
427
- IngressAccessLogs?: IngressAccessLogs;
428
- }
429
- export interface ConfigureLogsResponse {
430
-
431
- Arn?: string;
432
-
433
- Description?: string;
434
-
435
- EgressAccessLogs?: EgressAccessLogs;
436
-
437
- HlsIngest?: HlsIngest;
438
-
439
- Id?: string;
440
-
441
- IngressAccessLogs?: IngressAccessLogs;
442
-
443
- Tags?: Record<string, string>;
444
- }
445
-
446
- export declare class ForbiddenException extends __BaseException {
447
- readonly name: "ForbiddenException";
448
- readonly $fault: "client";
449
- Message?: string;
450
-
451
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
452
- }
453
-
454
- export declare class InternalServerErrorException extends __BaseException {
455
- readonly name: "InternalServerErrorException";
456
- readonly $fault: "server";
457
- Message?: string;
458
-
459
- constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
460
- }
461
-
462
- export declare class NotFoundException extends __BaseException {
463
- readonly name: "NotFoundException";
464
- readonly $fault: "client";
465
- Message?: string;
466
-
467
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
468
- }
469
-
470
- export declare class ServiceUnavailableException extends __BaseException {
471
- readonly name: "ServiceUnavailableException";
472
- readonly $fault: "server";
473
- Message?: string;
474
-
475
- constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
476
- }
477
-
478
- export declare class TooManyRequestsException extends __BaseException {
479
- readonly name: "TooManyRequestsException";
480
- readonly $fault: "client";
481
- Message?: string;
482
-
483
- constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
484
- }
485
-
486
- export declare class UnprocessableEntityException extends __BaseException {
487
- readonly name: "UnprocessableEntityException";
488
- readonly $fault: "client";
489
- Message?: string;
490
-
491
- constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
492
- }
493
-
494
- export interface CreateChannelRequest {
495
-
496
- Description?: string;
497
-
498
- Id: string | undefined;
499
-
500
- Tags?: Record<string, string>;
501
- }
502
- export interface CreateChannelResponse {
503
-
504
- Arn?: string;
505
-
506
- Description?: string;
507
-
508
- EgressAccessLogs?: EgressAccessLogs;
509
-
510
- HlsIngest?: HlsIngest;
511
-
512
- Id?: string;
513
-
514
- IngressAccessLogs?: IngressAccessLogs;
515
-
516
- Tags?: Record<string, string>;
517
- }
518
-
519
- export interface CreateHarvestJobRequest {
520
-
521
- EndTime: string | undefined;
522
-
523
- Id: string | undefined;
524
-
525
- OriginEndpointId: string | undefined;
526
-
527
- S3Destination: S3Destination | undefined;
528
-
529
- StartTime: string | undefined;
530
- }
531
- export interface CreateHarvestJobResponse {
532
-
533
- Arn?: string;
534
-
535
- ChannelId?: string;
536
-
537
- CreatedAt?: string;
538
-
539
- EndTime?: string;
540
-
541
- Id?: string;
542
-
543
- OriginEndpointId?: string;
544
-
545
- S3Destination?: S3Destination;
546
-
547
- StartTime?: string;
548
-
549
- Status?: Status | string;
550
- }
551
-
552
- export interface CreateOriginEndpointRequest {
553
-
554
- Authorization?: Authorization;
555
-
556
- ChannelId: string | undefined;
557
-
558
- CmafPackage?: CmafPackageCreateOrUpdateParameters;
559
-
560
- DashPackage?: DashPackage;
561
-
562
- Description?: string;
563
-
564
- HlsPackage?: HlsPackage;
565
-
566
- Id: string | undefined;
567
-
568
- ManifestName?: string;
569
-
570
- MssPackage?: MssPackage;
571
-
572
- Origination?: Origination | string;
573
-
574
- StartoverWindowSeconds?: number;
575
-
576
- Tags?: Record<string, string>;
577
-
578
- TimeDelaySeconds?: number;
579
-
580
- Whitelist?: string[];
581
- }
582
- export interface CreateOriginEndpointResponse {
583
-
584
- Arn?: string;
585
-
586
- Authorization?: Authorization;
587
-
588
- ChannelId?: string;
589
-
590
- CmafPackage?: CmafPackage;
591
-
592
- DashPackage?: DashPackage;
593
-
594
- Description?: string;
595
-
596
- HlsPackage?: HlsPackage;
597
-
598
- Id?: string;
599
-
600
- ManifestName?: string;
601
-
602
- MssPackage?: MssPackage;
603
-
604
- Origination?: Origination | string;
605
-
606
- StartoverWindowSeconds?: number;
607
-
608
- Tags?: Record<string, string>;
609
-
610
- TimeDelaySeconds?: number;
611
-
612
- Url?: string;
613
-
614
- Whitelist?: string[];
615
- }
616
- export interface DeleteChannelRequest {
617
-
618
- Id: string | undefined;
619
- }
620
- export interface DeleteChannelResponse {
621
- }
622
- export interface DeleteOriginEndpointRequest {
623
-
624
- Id: string | undefined;
625
- }
626
- export interface DeleteOriginEndpointResponse {
627
- }
628
- export interface DescribeChannelRequest {
629
-
630
- Id: string | undefined;
631
- }
632
- export interface DescribeChannelResponse {
633
-
634
- Arn?: string;
635
-
636
- Description?: string;
637
-
638
- EgressAccessLogs?: EgressAccessLogs;
639
-
640
- HlsIngest?: HlsIngest;
641
-
642
- Id?: string;
643
-
644
- IngressAccessLogs?: IngressAccessLogs;
645
-
646
- Tags?: Record<string, string>;
647
- }
648
- export interface DescribeHarvestJobRequest {
649
-
650
- Id: string | undefined;
651
- }
652
- export interface DescribeHarvestJobResponse {
653
-
654
- Arn?: string;
655
-
656
- ChannelId?: string;
657
-
658
- CreatedAt?: string;
659
-
660
- EndTime?: string;
661
-
662
- Id?: string;
663
-
664
- OriginEndpointId?: string;
665
-
666
- S3Destination?: S3Destination;
667
-
668
- StartTime?: string;
669
-
670
- Status?: Status | string;
671
- }
672
- export interface DescribeOriginEndpointRequest {
673
-
674
- Id: string | undefined;
675
- }
676
- export interface DescribeOriginEndpointResponse {
677
-
678
- Arn?: string;
679
-
680
- Authorization?: Authorization;
681
-
682
- ChannelId?: string;
683
-
684
- CmafPackage?: CmafPackage;
685
-
686
- DashPackage?: DashPackage;
687
-
688
- Description?: string;
689
-
690
- HlsPackage?: HlsPackage;
691
-
692
- Id?: string;
693
-
694
- ManifestName?: string;
695
-
696
- MssPackage?: MssPackage;
697
-
698
- Origination?: Origination | string;
699
-
700
- StartoverWindowSeconds?: number;
701
-
702
- Tags?: Record<string, string>;
703
-
704
- TimeDelaySeconds?: number;
705
-
706
- Url?: string;
707
-
708
- Whitelist?: string[];
709
- }
710
- export interface ListChannelsRequest {
711
-
712
- MaxResults?: number;
713
-
714
- NextToken?: string;
715
- }
716
- export interface ListChannelsResponse {
717
-
718
- Channels?: Channel[];
719
-
720
- NextToken?: string;
721
- }
722
- export interface ListHarvestJobsRequest {
723
-
724
- IncludeChannelId?: string;
725
-
726
- IncludeStatus?: string;
727
-
728
- MaxResults?: number;
729
-
730
- NextToken?: string;
731
- }
732
- export interface ListHarvestJobsResponse {
733
-
734
- HarvestJobs?: HarvestJob[];
735
-
736
- NextToken?: string;
737
- }
738
- export interface ListOriginEndpointsRequest {
739
-
740
- ChannelId?: string;
741
-
742
- MaxResults?: number;
743
-
744
- NextToken?: string;
745
- }
746
- export interface ListOriginEndpointsResponse {
747
-
748
- NextToken?: string;
749
-
750
- OriginEndpoints?: OriginEndpoint[];
751
- }
752
- export interface ListTagsForResourceRequest {
753
- ResourceArn: string | undefined;
754
- }
755
- export interface ListTagsForResourceResponse {
756
- Tags?: Record<string, string>;
757
- }
758
- export interface RotateChannelCredentialsRequest {
759
-
760
- Id: string | undefined;
761
- }
762
- export interface RotateChannelCredentialsResponse {
763
-
764
- Arn?: string;
765
-
766
- Description?: string;
767
-
768
- EgressAccessLogs?: EgressAccessLogs;
769
-
770
- HlsIngest?: HlsIngest;
771
-
772
- Id?: string;
773
-
774
- IngressAccessLogs?: IngressAccessLogs;
775
-
776
- Tags?: Record<string, string>;
777
- }
778
- export interface RotateIngestEndpointCredentialsRequest {
779
-
780
- Id: string | undefined;
781
-
782
- IngestEndpointId: string | undefined;
783
- }
784
- export interface RotateIngestEndpointCredentialsResponse {
785
-
786
- Arn?: string;
787
-
788
- Description?: string;
789
-
790
- EgressAccessLogs?: EgressAccessLogs;
791
-
792
- HlsIngest?: HlsIngest;
793
-
794
- Id?: string;
795
-
796
- IngressAccessLogs?: IngressAccessLogs;
797
-
798
- Tags?: Record<string, string>;
799
- }
800
- export interface TagResourceRequest {
801
- ResourceArn: string | undefined;
802
- Tags: Record<string, string> | undefined;
803
- }
804
- export interface UntagResourceRequest {
805
- ResourceArn: string | undefined;
806
-
807
- TagKeys: string[] | undefined;
808
- }
809
-
810
- export interface UpdateChannelRequest {
811
-
812
- Description?: string;
813
-
814
- Id: string | undefined;
815
- }
816
- export interface UpdateChannelResponse {
817
-
818
- Arn?: string;
819
-
820
- Description?: string;
821
-
822
- EgressAccessLogs?: EgressAccessLogs;
823
-
824
- HlsIngest?: HlsIngest;
825
-
826
- Id?: string;
827
-
828
- IngressAccessLogs?: IngressAccessLogs;
829
-
830
- Tags?: Record<string, string>;
831
- }
832
-
833
- export interface UpdateOriginEndpointRequest {
834
-
835
- Authorization?: Authorization;
836
-
837
- CmafPackage?: CmafPackageCreateOrUpdateParameters;
838
-
839
- DashPackage?: DashPackage;
840
-
841
- Description?: string;
842
-
843
- HlsPackage?: HlsPackage;
844
-
845
- Id: string | undefined;
846
-
847
- ManifestName?: string;
848
-
849
- MssPackage?: MssPackage;
850
-
851
- Origination?: Origination | string;
852
-
853
- StartoverWindowSeconds?: number;
854
-
855
- TimeDelaySeconds?: number;
856
-
857
- Whitelist?: string[];
858
- }
859
- export interface UpdateOriginEndpointResponse {
860
-
861
- Arn?: string;
862
-
863
- Authorization?: Authorization;
864
-
865
- ChannelId?: string;
866
-
867
- CmafPackage?: CmafPackage;
868
-
869
- DashPackage?: DashPackage;
870
-
871
- Description?: string;
872
-
873
- HlsPackage?: HlsPackage;
874
-
875
- Id?: string;
876
-
877
- ManifestName?: string;
878
-
879
- MssPackage?: MssPackage;
880
-
881
- Origination?: Origination | string;
882
-
883
- StartoverWindowSeconds?: number;
884
-
885
- Tags?: Record<string, string>;
886
-
887
- TimeDelaySeconds?: number;
888
-
889
- Url?: string;
890
-
891
- Whitelist?: string[];
892
- }
893
-
894
- export declare const EgressAccessLogsFilterSensitiveLog: (obj: EgressAccessLogs) => any;
895
-
896
- export declare const IngestEndpointFilterSensitiveLog: (obj: IngestEndpoint) => any;
897
-
898
- export declare const HlsIngestFilterSensitiveLog: (obj: HlsIngest) => any;
899
-
900
- export declare const IngressAccessLogsFilterSensitiveLog: (obj: IngressAccessLogs) => any;
901
-
902
- export declare const ChannelFilterSensitiveLog: (obj: Channel) => any;
903
-
904
- export declare const S3DestinationFilterSensitiveLog: (obj: S3Destination) => any;
905
-
906
- export declare const HarvestJobFilterSensitiveLog: (obj: HarvestJob) => any;
907
-
908
- export declare const HlsManifestFilterSensitiveLog: (obj: HlsManifest) => any;
909
-
910
- export declare const HlsManifestCreateOrUpdateParametersFilterSensitiveLog: (obj: HlsManifestCreateOrUpdateParameters) => any;
911
-
912
- export declare const AuthorizationFilterSensitiveLog: (obj: Authorization) => any;
913
-
914
- export declare const EncryptionContractConfigurationFilterSensitiveLog: (obj: EncryptionContractConfiguration) => any;
915
-
916
- export declare const SpekeKeyProviderFilterSensitiveLog: (obj: SpekeKeyProvider) => any;
917
-
918
- export declare const CmafEncryptionFilterSensitiveLog: (obj: CmafEncryption) => any;
919
-
920
- export declare const StreamSelectionFilterSensitiveLog: (obj: StreamSelection) => any;
921
-
922
- export declare const CmafPackageFilterSensitiveLog: (obj: CmafPackage) => any;
923
-
924
- export declare const DashEncryptionFilterSensitiveLog: (obj: DashEncryption) => any;
925
-
926
- export declare const DashPackageFilterSensitiveLog: (obj: DashPackage) => any;
927
-
928
- export declare const HlsEncryptionFilterSensitiveLog: (obj: HlsEncryption) => any;
929
-
930
- export declare const HlsPackageFilterSensitiveLog: (obj: HlsPackage) => any;
931
-
932
- export declare const MssEncryptionFilterSensitiveLog: (obj: MssEncryption) => any;
933
-
934
- export declare const MssPackageFilterSensitiveLog: (obj: MssPackage) => any;
935
-
936
- export declare const OriginEndpointFilterSensitiveLog: (obj: OriginEndpoint) => any;
937
-
938
- export declare const CmafPackageCreateOrUpdateParametersFilterSensitiveLog: (obj: CmafPackageCreateOrUpdateParameters) => any;
939
-
940
- export declare const ConfigureLogsRequestFilterSensitiveLog: (obj: ConfigureLogsRequest) => any;
941
-
942
- export declare const ConfigureLogsResponseFilterSensitiveLog: (obj: ConfigureLogsResponse) => any;
943
-
944
- export declare const CreateChannelRequestFilterSensitiveLog: (obj: CreateChannelRequest) => any;
945
-
946
- export declare const CreateChannelResponseFilterSensitiveLog: (obj: CreateChannelResponse) => any;
947
-
948
- export declare const CreateHarvestJobRequestFilterSensitiveLog: (obj: CreateHarvestJobRequest) => any;
949
-
950
- export declare const CreateHarvestJobResponseFilterSensitiveLog: (obj: CreateHarvestJobResponse) => any;
951
-
952
- export declare const CreateOriginEndpointRequestFilterSensitiveLog: (obj: CreateOriginEndpointRequest) => any;
953
-
954
- export declare const CreateOriginEndpointResponseFilterSensitiveLog: (obj: CreateOriginEndpointResponse) => any;
955
-
956
- export declare const DeleteChannelRequestFilterSensitiveLog: (obj: DeleteChannelRequest) => any;
957
-
958
- export declare const DeleteChannelResponseFilterSensitiveLog: (obj: DeleteChannelResponse) => any;
959
-
960
- export declare const DeleteOriginEndpointRequestFilterSensitiveLog: (obj: DeleteOriginEndpointRequest) => any;
961
-
962
- export declare const DeleteOriginEndpointResponseFilterSensitiveLog: (obj: DeleteOriginEndpointResponse) => any;
963
-
964
- export declare const DescribeChannelRequestFilterSensitiveLog: (obj: DescribeChannelRequest) => any;
965
-
966
- export declare const DescribeChannelResponseFilterSensitiveLog: (obj: DescribeChannelResponse) => any;
967
-
968
- export declare const DescribeHarvestJobRequestFilterSensitiveLog: (obj: DescribeHarvestJobRequest) => any;
969
-
970
- export declare const DescribeHarvestJobResponseFilterSensitiveLog: (obj: DescribeHarvestJobResponse) => any;
971
-
972
- export declare const DescribeOriginEndpointRequestFilterSensitiveLog: (obj: DescribeOriginEndpointRequest) => any;
973
-
974
- export declare const DescribeOriginEndpointResponseFilterSensitiveLog: (obj: DescribeOriginEndpointResponse) => any;
975
-
976
- export declare const ListChannelsRequestFilterSensitiveLog: (obj: ListChannelsRequest) => any;
977
-
978
- export declare const ListChannelsResponseFilterSensitiveLog: (obj: ListChannelsResponse) => any;
979
-
980
- export declare const ListHarvestJobsRequestFilterSensitiveLog: (obj: ListHarvestJobsRequest) => any;
981
-
982
- export declare const ListHarvestJobsResponseFilterSensitiveLog: (obj: ListHarvestJobsResponse) => any;
983
-
984
- export declare const ListOriginEndpointsRequestFilterSensitiveLog: (obj: ListOriginEndpointsRequest) => any;
985
-
986
- export declare const ListOriginEndpointsResponseFilterSensitiveLog: (obj: ListOriginEndpointsResponse) => any;
987
-
988
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
989
-
990
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
991
-
992
- export declare const RotateChannelCredentialsRequestFilterSensitiveLog: (obj: RotateChannelCredentialsRequest) => any;
993
-
994
- export declare const RotateChannelCredentialsResponseFilterSensitiveLog: (obj: RotateChannelCredentialsResponse) => any;
995
-
996
- export declare const RotateIngestEndpointCredentialsRequestFilterSensitiveLog: (obj: RotateIngestEndpointCredentialsRequest) => any;
997
-
998
- export declare const RotateIngestEndpointCredentialsResponseFilterSensitiveLog: (obj: RotateIngestEndpointCredentialsResponse) => any;
999
-
1000
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1001
-
1002
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1003
-
1004
- export declare const UpdateChannelRequestFilterSensitiveLog: (obj: UpdateChannelRequest) => any;
1005
-
1006
- export declare const UpdateChannelResponseFilterSensitiveLog: (obj: UpdateChannelResponse) => any;
1007
-
1008
- export declare const UpdateOriginEndpointRequestFilterSensitiveLog: (obj: UpdateOriginEndpointRequest) => any;
1009
-
1010
- export declare const UpdateOriginEndpointResponseFilterSensitiveLog: (obj: UpdateOriginEndpointResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { MediaPackageServiceException as __BaseException } from "./MediaPackageServiceException";
3
+ export declare enum __AdTriggersElement {
4
+ BREAK = "BREAK",
5
+ DISTRIBUTOR_ADVERTISEMENT = "DISTRIBUTOR_ADVERTISEMENT",
6
+ DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY = "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
7
+ DISTRIBUTOR_PLACEMENT_OPPORTUNITY = "DISTRIBUTOR_PLACEMENT_OPPORTUNITY",
8
+ PROVIDER_ADVERTISEMENT = "PROVIDER_ADVERTISEMENT",
9
+ PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY = "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY",
10
+ PROVIDER_PLACEMENT_OPPORTUNITY = "PROVIDER_PLACEMENT_OPPORTUNITY",
11
+ SPLICE_INSERT = "SPLICE_INSERT",
12
+ }
13
+ export declare enum __PeriodTriggersElement {
14
+ ADS = "ADS",
15
+ }
16
+
17
+ export interface EgressAccessLogs {
18
+ LogGroupName?: string;
19
+ }
20
+
21
+ export interface IngestEndpoint {
22
+ Id?: string;
23
+
24
+ Password?: string;
25
+
26
+ Url?: string;
27
+
28
+ Username?: string;
29
+ }
30
+
31
+ export interface HlsIngest {
32
+ IngestEndpoints?: IngestEndpoint[];
33
+ }
34
+
35
+ export interface IngressAccessLogs {
36
+ LogGroupName?: string;
37
+ }
38
+
39
+ export interface Channel {
40
+ Arn?: string;
41
+
42
+ Description?: string;
43
+
44
+ EgressAccessLogs?: EgressAccessLogs;
45
+
46
+ HlsIngest?: HlsIngest;
47
+
48
+ Id?: string;
49
+
50
+ IngressAccessLogs?: IngressAccessLogs;
51
+
52
+ Tags?: Record<string, string>;
53
+ }
54
+
55
+ export interface S3Destination {
56
+ BucketName: string | undefined;
57
+
58
+ ManifestKey: string | undefined;
59
+
60
+ RoleArn: string | undefined;
61
+ }
62
+ export declare enum Status {
63
+ FAILED = "FAILED",
64
+ IN_PROGRESS = "IN_PROGRESS",
65
+ SUCCEEDED = "SUCCEEDED",
66
+ }
67
+
68
+ export interface HarvestJob {
69
+ Arn?: string;
70
+
71
+ ChannelId?: string;
72
+
73
+ CreatedAt?: string;
74
+
75
+ EndTime?: string;
76
+
77
+ Id?: string;
78
+
79
+ OriginEndpointId?: string;
80
+
81
+ S3Destination?: S3Destination;
82
+
83
+ StartTime?: string;
84
+
85
+ Status?: Status | string;
86
+ }
87
+ export declare enum AdMarkers {
88
+ DATERANGE = "DATERANGE",
89
+ NONE = "NONE",
90
+ PASSTHROUGH = "PASSTHROUGH",
91
+ SCTE35_ENHANCED = "SCTE35_ENHANCED",
92
+ }
93
+ export declare enum AdsOnDeliveryRestrictions {
94
+ BOTH = "BOTH",
95
+ NONE = "NONE",
96
+ RESTRICTED = "RESTRICTED",
97
+ UNRESTRICTED = "UNRESTRICTED",
98
+ }
99
+ export declare enum PlaylistType {
100
+ EVENT = "EVENT",
101
+ NONE = "NONE",
102
+ VOD = "VOD",
103
+ }
104
+
105
+ export interface HlsManifest {
106
+ AdMarkers?: AdMarkers | string;
107
+
108
+ Id: string | undefined;
109
+
110
+ IncludeIframeOnlyStream?: boolean;
111
+
112
+ ManifestName?: string;
113
+
114
+ PlaylistType?: PlaylistType | string;
115
+
116
+ PlaylistWindowSeconds?: number;
117
+
118
+ ProgramDateTimeIntervalSeconds?: number;
119
+
120
+ Url?: string;
121
+
122
+ AdTriggers?: (__AdTriggersElement | string)[];
123
+
124
+ AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | string;
125
+ }
126
+
127
+ export interface HlsManifestCreateOrUpdateParameters {
128
+ AdMarkers?: AdMarkers | string;
129
+
130
+ AdTriggers?: (__AdTriggersElement | string)[];
131
+
132
+ AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | string;
133
+
134
+ Id: string | undefined;
135
+
136
+ IncludeIframeOnlyStream?: boolean;
137
+
138
+ ManifestName?: string;
139
+
140
+ PlaylistType?: PlaylistType | string;
141
+
142
+ PlaylistWindowSeconds?: number;
143
+
144
+ ProgramDateTimeIntervalSeconds?: number;
145
+ }
146
+
147
+ export interface Authorization {
148
+ CdnIdentifierSecret: string | undefined;
149
+
150
+ SecretsRoleArn: string | undefined;
151
+ }
152
+ export declare enum CmafEncryptionMethod {
153
+ AES_CTR = "AES_CTR",
154
+ SAMPLE_AES = "SAMPLE_AES",
155
+ }
156
+ export declare enum PresetSpeke20Audio {
157
+ PRESET_AUDIO_1 = "PRESET-AUDIO-1",
158
+ PRESET_AUDIO_2 = "PRESET-AUDIO-2",
159
+ PRESET_AUDIO_3 = "PRESET-AUDIO-3",
160
+ SHARED = "SHARED",
161
+ UNENCRYPTED = "UNENCRYPTED",
162
+ }
163
+ export declare enum PresetSpeke20Video {
164
+ PRESET_VIDEO_1 = "PRESET-VIDEO-1",
165
+ PRESET_VIDEO_2 = "PRESET-VIDEO-2",
166
+ PRESET_VIDEO_3 = "PRESET-VIDEO-3",
167
+ PRESET_VIDEO_4 = "PRESET-VIDEO-4",
168
+ PRESET_VIDEO_5 = "PRESET-VIDEO-5",
169
+ PRESET_VIDEO_6 = "PRESET-VIDEO-6",
170
+ PRESET_VIDEO_7 = "PRESET-VIDEO-7",
171
+ PRESET_VIDEO_8 = "PRESET-VIDEO-8",
172
+ SHARED = "SHARED",
173
+ UNENCRYPTED = "UNENCRYPTED",
174
+ }
175
+
176
+ export interface EncryptionContractConfiguration {
177
+ PresetSpeke20Audio: PresetSpeke20Audio | string | undefined;
178
+
179
+ PresetSpeke20Video: PresetSpeke20Video | string | undefined;
180
+ }
181
+
182
+ export interface SpekeKeyProvider {
183
+ CertificateArn?: string;
184
+
185
+ EncryptionContractConfiguration?: EncryptionContractConfiguration;
186
+
187
+ ResourceId: string | undefined;
188
+
189
+ RoleArn: string | undefined;
190
+
191
+ SystemIds: string[] | undefined;
192
+
193
+ Url: string | undefined;
194
+ }
195
+
196
+ export interface CmafEncryption {
197
+ ConstantInitializationVector?: string;
198
+
199
+ EncryptionMethod?: CmafEncryptionMethod | string;
200
+
201
+ KeyRotationIntervalSeconds?: number;
202
+
203
+ SpekeKeyProvider: SpekeKeyProvider | undefined;
204
+ }
205
+ export declare enum StreamOrder {
206
+ ORIGINAL = "ORIGINAL",
207
+ VIDEO_BITRATE_ASCENDING = "VIDEO_BITRATE_ASCENDING",
208
+ VIDEO_BITRATE_DESCENDING = "VIDEO_BITRATE_DESCENDING",
209
+ }
210
+
211
+ export interface StreamSelection {
212
+ MaxVideoBitsPerSecond?: number;
213
+
214
+ MinVideoBitsPerSecond?: number;
215
+
216
+ StreamOrder?: StreamOrder | string;
217
+ }
218
+
219
+ export interface CmafPackage {
220
+ Encryption?: CmafEncryption;
221
+
222
+ HlsManifests?: HlsManifest[];
223
+
224
+ SegmentDurationSeconds?: number;
225
+
226
+ SegmentPrefix?: string;
227
+
228
+ StreamSelection?: StreamSelection;
229
+ }
230
+
231
+ export interface DashEncryption {
232
+ KeyRotationIntervalSeconds?: number;
233
+
234
+ SpekeKeyProvider: SpekeKeyProvider | undefined;
235
+ }
236
+ export declare enum ManifestLayout {
237
+ COMPACT = "COMPACT",
238
+ FULL = "FULL",
239
+ }
240
+ export declare enum Profile {
241
+ DVB_DASH_2014 = "DVB_DASH_2014",
242
+ HBBTV_1_5 = "HBBTV_1_5",
243
+ HYBRIDCAST = "HYBRIDCAST",
244
+ NONE = "NONE",
245
+ }
246
+ export declare enum SegmentTemplateFormat {
247
+ NUMBER_WITH_DURATION = "NUMBER_WITH_DURATION",
248
+ NUMBER_WITH_TIMELINE = "NUMBER_WITH_TIMELINE",
249
+ TIME_WITH_TIMELINE = "TIME_WITH_TIMELINE",
250
+ }
251
+ export declare enum UtcTiming {
252
+ HTTP_HEAD = "HTTP-HEAD",
253
+ HTTP_ISO = "HTTP-ISO",
254
+ HTTP_XSDATE = "HTTP-XSDATE",
255
+ NONE = "NONE",
256
+ }
257
+
258
+ export interface DashPackage {
259
+ AdTriggers?: (__AdTriggersElement | string)[];
260
+
261
+ AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | string;
262
+
263
+ Encryption?: DashEncryption;
264
+
265
+ IncludeIframeOnlyStream?: boolean;
266
+
267
+ ManifestLayout?: ManifestLayout | string;
268
+
269
+ ManifestWindowSeconds?: number;
270
+
271
+ MinBufferTimeSeconds?: number;
272
+
273
+ MinUpdatePeriodSeconds?: number;
274
+
275
+ PeriodTriggers?: (__PeriodTriggersElement | string)[];
276
+
277
+ Profile?: Profile | string;
278
+
279
+ SegmentDurationSeconds?: number;
280
+
281
+ SegmentTemplateFormat?: SegmentTemplateFormat | string;
282
+
283
+ StreamSelection?: StreamSelection;
284
+
285
+ SuggestedPresentationDelaySeconds?: number;
286
+
287
+ UtcTiming?: UtcTiming | string;
288
+
289
+ UtcTimingUri?: string;
290
+ }
291
+ export declare enum EncryptionMethod {
292
+ AES_128 = "AES_128",
293
+ SAMPLE_AES = "SAMPLE_AES",
294
+ }
295
+
296
+ export interface HlsEncryption {
297
+ ConstantInitializationVector?: string;
298
+
299
+ EncryptionMethod?: EncryptionMethod | string;
300
+
301
+ KeyRotationIntervalSeconds?: number;
302
+
303
+ RepeatExtXKey?: boolean;
304
+
305
+ SpekeKeyProvider: SpekeKeyProvider | undefined;
306
+ }
307
+
308
+ export interface HlsPackage {
309
+ AdMarkers?: AdMarkers | string;
310
+
311
+ AdTriggers?: (__AdTriggersElement | string)[];
312
+
313
+ AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | string;
314
+
315
+ Encryption?: HlsEncryption;
316
+
317
+ IncludeDvbSubtitles?: boolean;
318
+
319
+ IncludeIframeOnlyStream?: boolean;
320
+
321
+ PlaylistType?: PlaylistType | string;
322
+
323
+ PlaylistWindowSeconds?: number;
324
+
325
+ ProgramDateTimeIntervalSeconds?: number;
326
+
327
+ SegmentDurationSeconds?: number;
328
+
329
+ StreamSelection?: StreamSelection;
330
+
331
+ UseAudioRenditionGroup?: boolean;
332
+ }
333
+
334
+ export interface MssEncryption {
335
+ SpekeKeyProvider: SpekeKeyProvider | undefined;
336
+ }
337
+
338
+ export interface MssPackage {
339
+ Encryption?: MssEncryption;
340
+
341
+ ManifestWindowSeconds?: number;
342
+
343
+ SegmentDurationSeconds?: number;
344
+
345
+ StreamSelection?: StreamSelection;
346
+ }
347
+ export declare enum Origination {
348
+ ALLOW = "ALLOW",
349
+ DENY = "DENY",
350
+ }
351
+
352
+ export interface OriginEndpoint {
353
+ Arn?: string;
354
+
355
+ Authorization?: Authorization;
356
+
357
+ ChannelId?: string;
358
+
359
+ CmafPackage?: CmafPackage;
360
+
361
+ DashPackage?: DashPackage;
362
+
363
+ Description?: string;
364
+
365
+ HlsPackage?: HlsPackage;
366
+
367
+ Id?: string;
368
+
369
+ ManifestName?: string;
370
+
371
+ MssPackage?: MssPackage;
372
+
373
+ Origination?: Origination | string;
374
+
375
+ StartoverWindowSeconds?: number;
376
+
377
+ Tags?: Record<string, string>;
378
+
379
+ TimeDelaySeconds?: number;
380
+
381
+ Url?: string;
382
+
383
+ Whitelist?: string[];
384
+ }
385
+
386
+ export interface CmafPackageCreateOrUpdateParameters {
387
+ Encryption?: CmafEncryption;
388
+
389
+ HlsManifests?: HlsManifestCreateOrUpdateParameters[];
390
+
391
+ SegmentDurationSeconds?: number;
392
+
393
+ SegmentPrefix?: string;
394
+
395
+ StreamSelection?: StreamSelection;
396
+ }
397
+
398
+ export interface ConfigureLogsRequest {
399
+ EgressAccessLogs?: EgressAccessLogs;
400
+
401
+ Id: string | undefined;
402
+
403
+ IngressAccessLogs?: IngressAccessLogs;
404
+ }
405
+ export interface ConfigureLogsResponse {
406
+ Arn?: string;
407
+
408
+ Description?: string;
409
+
410
+ EgressAccessLogs?: EgressAccessLogs;
411
+
412
+ HlsIngest?: HlsIngest;
413
+
414
+ Id?: string;
415
+
416
+ IngressAccessLogs?: IngressAccessLogs;
417
+
418
+ Tags?: Record<string, string>;
419
+ }
420
+
421
+ export declare class ForbiddenException extends __BaseException {
422
+ readonly name: "ForbiddenException";
423
+ readonly $fault: "client";
424
+ Message?: string;
425
+
426
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
427
+ }
428
+
429
+ export declare class InternalServerErrorException extends __BaseException {
430
+ readonly name: "InternalServerErrorException";
431
+ readonly $fault: "server";
432
+ Message?: string;
433
+
434
+ constructor(
435
+ opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
436
+ );
437
+ }
438
+
439
+ export declare class NotFoundException extends __BaseException {
440
+ readonly name: "NotFoundException";
441
+ readonly $fault: "client";
442
+ Message?: string;
443
+
444
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
445
+ }
446
+
447
+ export declare class ServiceUnavailableException extends __BaseException {
448
+ readonly name: "ServiceUnavailableException";
449
+ readonly $fault: "server";
450
+ Message?: string;
451
+
452
+ constructor(
453
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
454
+ );
455
+ }
456
+
457
+ export declare class TooManyRequestsException extends __BaseException {
458
+ readonly name: "TooManyRequestsException";
459
+ readonly $fault: "client";
460
+ Message?: string;
461
+
462
+ constructor(
463
+ opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
464
+ );
465
+ }
466
+
467
+ export declare class UnprocessableEntityException extends __BaseException {
468
+ readonly name: "UnprocessableEntityException";
469
+ readonly $fault: "client";
470
+ Message?: string;
471
+
472
+ constructor(
473
+ opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
474
+ );
475
+ }
476
+
477
+ export interface CreateChannelRequest {
478
+ Description?: string;
479
+
480
+ Id: string | undefined;
481
+
482
+ Tags?: Record<string, string>;
483
+ }
484
+ export interface CreateChannelResponse {
485
+ Arn?: string;
486
+
487
+ Description?: string;
488
+
489
+ EgressAccessLogs?: EgressAccessLogs;
490
+
491
+ HlsIngest?: HlsIngest;
492
+
493
+ Id?: string;
494
+
495
+ IngressAccessLogs?: IngressAccessLogs;
496
+
497
+ Tags?: Record<string, string>;
498
+ }
499
+
500
+ export interface CreateHarvestJobRequest {
501
+ EndTime: string | undefined;
502
+
503
+ Id: string | undefined;
504
+
505
+ OriginEndpointId: string | undefined;
506
+
507
+ S3Destination: S3Destination | undefined;
508
+
509
+ StartTime: string | undefined;
510
+ }
511
+ export interface CreateHarvestJobResponse {
512
+ Arn?: string;
513
+
514
+ ChannelId?: string;
515
+
516
+ CreatedAt?: string;
517
+
518
+ EndTime?: string;
519
+
520
+ Id?: string;
521
+
522
+ OriginEndpointId?: string;
523
+
524
+ S3Destination?: S3Destination;
525
+
526
+ StartTime?: string;
527
+
528
+ Status?: Status | string;
529
+ }
530
+
531
+ export interface CreateOriginEndpointRequest {
532
+ Authorization?: Authorization;
533
+
534
+ ChannelId: string | undefined;
535
+
536
+ CmafPackage?: CmafPackageCreateOrUpdateParameters;
537
+
538
+ DashPackage?: DashPackage;
539
+
540
+ Description?: string;
541
+
542
+ HlsPackage?: HlsPackage;
543
+
544
+ Id: string | undefined;
545
+
546
+ ManifestName?: string;
547
+
548
+ MssPackage?: MssPackage;
549
+
550
+ Origination?: Origination | string;
551
+
552
+ StartoverWindowSeconds?: number;
553
+
554
+ Tags?: Record<string, string>;
555
+
556
+ TimeDelaySeconds?: number;
557
+
558
+ Whitelist?: string[];
559
+ }
560
+ export interface CreateOriginEndpointResponse {
561
+ Arn?: string;
562
+
563
+ Authorization?: Authorization;
564
+
565
+ ChannelId?: string;
566
+
567
+ CmafPackage?: CmafPackage;
568
+
569
+ DashPackage?: DashPackage;
570
+
571
+ Description?: string;
572
+
573
+ HlsPackage?: HlsPackage;
574
+
575
+ Id?: string;
576
+
577
+ ManifestName?: string;
578
+
579
+ MssPackage?: MssPackage;
580
+
581
+ Origination?: Origination | string;
582
+
583
+ StartoverWindowSeconds?: number;
584
+
585
+ Tags?: Record<string, string>;
586
+
587
+ TimeDelaySeconds?: number;
588
+
589
+ Url?: string;
590
+
591
+ Whitelist?: string[];
592
+ }
593
+ export interface DeleteChannelRequest {
594
+ Id: string | undefined;
595
+ }
596
+ export interface DeleteChannelResponse {}
597
+ export interface DeleteOriginEndpointRequest {
598
+ Id: string | undefined;
599
+ }
600
+ export interface DeleteOriginEndpointResponse {}
601
+ export interface DescribeChannelRequest {
602
+ Id: string | undefined;
603
+ }
604
+ export interface DescribeChannelResponse {
605
+ Arn?: string;
606
+
607
+ Description?: string;
608
+
609
+ EgressAccessLogs?: EgressAccessLogs;
610
+
611
+ HlsIngest?: HlsIngest;
612
+
613
+ Id?: string;
614
+
615
+ IngressAccessLogs?: IngressAccessLogs;
616
+
617
+ Tags?: Record<string, string>;
618
+ }
619
+ export interface DescribeHarvestJobRequest {
620
+ Id: string | undefined;
621
+ }
622
+ export interface DescribeHarvestJobResponse {
623
+ Arn?: string;
624
+
625
+ ChannelId?: string;
626
+
627
+ CreatedAt?: string;
628
+
629
+ EndTime?: string;
630
+
631
+ Id?: string;
632
+
633
+ OriginEndpointId?: string;
634
+
635
+ S3Destination?: S3Destination;
636
+
637
+ StartTime?: string;
638
+
639
+ Status?: Status | string;
640
+ }
641
+ export interface DescribeOriginEndpointRequest {
642
+ Id: string | undefined;
643
+ }
644
+ export interface DescribeOriginEndpointResponse {
645
+ Arn?: string;
646
+
647
+ Authorization?: Authorization;
648
+
649
+ ChannelId?: string;
650
+
651
+ CmafPackage?: CmafPackage;
652
+
653
+ DashPackage?: DashPackage;
654
+
655
+ Description?: string;
656
+
657
+ HlsPackage?: HlsPackage;
658
+
659
+ Id?: string;
660
+
661
+ ManifestName?: string;
662
+
663
+ MssPackage?: MssPackage;
664
+
665
+ Origination?: Origination | string;
666
+
667
+ StartoverWindowSeconds?: number;
668
+
669
+ Tags?: Record<string, string>;
670
+
671
+ TimeDelaySeconds?: number;
672
+
673
+ Url?: string;
674
+
675
+ Whitelist?: string[];
676
+ }
677
+ export interface ListChannelsRequest {
678
+ MaxResults?: number;
679
+
680
+ NextToken?: string;
681
+ }
682
+ export interface ListChannelsResponse {
683
+ Channels?: Channel[];
684
+
685
+ NextToken?: string;
686
+ }
687
+ export interface ListHarvestJobsRequest {
688
+ IncludeChannelId?: string;
689
+
690
+ IncludeStatus?: string;
691
+
692
+ MaxResults?: number;
693
+
694
+ NextToken?: string;
695
+ }
696
+ export interface ListHarvestJobsResponse {
697
+ HarvestJobs?: HarvestJob[];
698
+
699
+ NextToken?: string;
700
+ }
701
+ export interface ListOriginEndpointsRequest {
702
+ ChannelId?: string;
703
+
704
+ MaxResults?: number;
705
+
706
+ NextToken?: string;
707
+ }
708
+ export interface ListOriginEndpointsResponse {
709
+ NextToken?: string;
710
+
711
+ OriginEndpoints?: OriginEndpoint[];
712
+ }
713
+ export interface ListTagsForResourceRequest {
714
+ ResourceArn: string | undefined;
715
+ }
716
+ export interface ListTagsForResourceResponse {
717
+ Tags?: Record<string, string>;
718
+ }
719
+ export interface RotateChannelCredentialsRequest {
720
+ Id: string | undefined;
721
+ }
722
+ export interface RotateChannelCredentialsResponse {
723
+ Arn?: string;
724
+
725
+ Description?: string;
726
+
727
+ EgressAccessLogs?: EgressAccessLogs;
728
+
729
+ HlsIngest?: HlsIngest;
730
+
731
+ Id?: string;
732
+
733
+ IngressAccessLogs?: IngressAccessLogs;
734
+
735
+ Tags?: Record<string, string>;
736
+ }
737
+ export interface RotateIngestEndpointCredentialsRequest {
738
+ Id: string | undefined;
739
+
740
+ IngestEndpointId: string | undefined;
741
+ }
742
+ export interface RotateIngestEndpointCredentialsResponse {
743
+ Arn?: string;
744
+
745
+ Description?: string;
746
+
747
+ EgressAccessLogs?: EgressAccessLogs;
748
+
749
+ HlsIngest?: HlsIngest;
750
+
751
+ Id?: string;
752
+
753
+ IngressAccessLogs?: IngressAccessLogs;
754
+
755
+ Tags?: Record<string, string>;
756
+ }
757
+ export interface TagResourceRequest {
758
+ ResourceArn: string | undefined;
759
+ Tags: Record<string, string> | undefined;
760
+ }
761
+ export interface UntagResourceRequest {
762
+ ResourceArn: string | undefined;
763
+
764
+ TagKeys: string[] | undefined;
765
+ }
766
+
767
+ export interface UpdateChannelRequest {
768
+ Description?: string;
769
+
770
+ Id: string | undefined;
771
+ }
772
+ export interface UpdateChannelResponse {
773
+ Arn?: string;
774
+
775
+ Description?: string;
776
+
777
+ EgressAccessLogs?: EgressAccessLogs;
778
+
779
+ HlsIngest?: HlsIngest;
780
+
781
+ Id?: string;
782
+
783
+ IngressAccessLogs?: IngressAccessLogs;
784
+
785
+ Tags?: Record<string, string>;
786
+ }
787
+
788
+ export interface UpdateOriginEndpointRequest {
789
+ Authorization?: Authorization;
790
+
791
+ CmafPackage?: CmafPackageCreateOrUpdateParameters;
792
+
793
+ DashPackage?: DashPackage;
794
+
795
+ Description?: string;
796
+
797
+ HlsPackage?: HlsPackage;
798
+
799
+ Id: string | undefined;
800
+
801
+ ManifestName?: string;
802
+
803
+ MssPackage?: MssPackage;
804
+
805
+ Origination?: Origination | string;
806
+
807
+ StartoverWindowSeconds?: number;
808
+
809
+ TimeDelaySeconds?: number;
810
+
811
+ Whitelist?: string[];
812
+ }
813
+ export interface UpdateOriginEndpointResponse {
814
+ Arn?: string;
815
+
816
+ Authorization?: Authorization;
817
+
818
+ ChannelId?: string;
819
+
820
+ CmafPackage?: CmafPackage;
821
+
822
+ DashPackage?: DashPackage;
823
+
824
+ Description?: string;
825
+
826
+ HlsPackage?: HlsPackage;
827
+
828
+ Id?: string;
829
+
830
+ ManifestName?: string;
831
+
832
+ MssPackage?: MssPackage;
833
+
834
+ Origination?: Origination | string;
835
+
836
+ StartoverWindowSeconds?: number;
837
+
838
+ Tags?: Record<string, string>;
839
+
840
+ TimeDelaySeconds?: number;
841
+
842
+ Url?: string;
843
+
844
+ Whitelist?: string[];
845
+ }
846
+
847
+ export declare const EgressAccessLogsFilterSensitiveLog: (
848
+ obj: EgressAccessLogs
849
+ ) => any;
850
+
851
+ export declare const IngestEndpointFilterSensitiveLog: (
852
+ obj: IngestEndpoint
853
+ ) => any;
854
+
855
+ export declare const HlsIngestFilterSensitiveLog: (obj: HlsIngest) => any;
856
+
857
+ export declare const IngressAccessLogsFilterSensitiveLog: (
858
+ obj: IngressAccessLogs
859
+ ) => any;
860
+
861
+ export declare const ChannelFilterSensitiveLog: (obj: Channel) => any;
862
+
863
+ export declare const S3DestinationFilterSensitiveLog: (
864
+ obj: S3Destination
865
+ ) => any;
866
+
867
+ export declare const HarvestJobFilterSensitiveLog: (obj: HarvestJob) => any;
868
+
869
+ export declare const HlsManifestFilterSensitiveLog: (obj: HlsManifest) => any;
870
+
871
+ export declare const HlsManifestCreateOrUpdateParametersFilterSensitiveLog: (
872
+ obj: HlsManifestCreateOrUpdateParameters
873
+ ) => any;
874
+
875
+ export declare const AuthorizationFilterSensitiveLog: (
876
+ obj: Authorization
877
+ ) => any;
878
+
879
+ export declare const EncryptionContractConfigurationFilterSensitiveLog: (
880
+ obj: EncryptionContractConfiguration
881
+ ) => any;
882
+
883
+ export declare const SpekeKeyProviderFilterSensitiveLog: (
884
+ obj: SpekeKeyProvider
885
+ ) => any;
886
+
887
+ export declare const CmafEncryptionFilterSensitiveLog: (
888
+ obj: CmafEncryption
889
+ ) => any;
890
+
891
+ export declare const StreamSelectionFilterSensitiveLog: (
892
+ obj: StreamSelection
893
+ ) => any;
894
+
895
+ export declare const CmafPackageFilterSensitiveLog: (obj: CmafPackage) => any;
896
+
897
+ export declare const DashEncryptionFilterSensitiveLog: (
898
+ obj: DashEncryption
899
+ ) => any;
900
+
901
+ export declare const DashPackageFilterSensitiveLog: (obj: DashPackage) => any;
902
+
903
+ export declare const HlsEncryptionFilterSensitiveLog: (
904
+ obj: HlsEncryption
905
+ ) => any;
906
+
907
+ export declare const HlsPackageFilterSensitiveLog: (obj: HlsPackage) => any;
908
+
909
+ export declare const MssEncryptionFilterSensitiveLog: (
910
+ obj: MssEncryption
911
+ ) => any;
912
+
913
+ export declare const MssPackageFilterSensitiveLog: (obj: MssPackage) => any;
914
+
915
+ export declare const OriginEndpointFilterSensitiveLog: (
916
+ obj: OriginEndpoint
917
+ ) => any;
918
+
919
+ export declare const CmafPackageCreateOrUpdateParametersFilterSensitiveLog: (
920
+ obj: CmafPackageCreateOrUpdateParameters
921
+ ) => any;
922
+
923
+ export declare const ConfigureLogsRequestFilterSensitiveLog: (
924
+ obj: ConfigureLogsRequest
925
+ ) => any;
926
+
927
+ export declare const ConfigureLogsResponseFilterSensitiveLog: (
928
+ obj: ConfigureLogsResponse
929
+ ) => any;
930
+
931
+ export declare const CreateChannelRequestFilterSensitiveLog: (
932
+ obj: CreateChannelRequest
933
+ ) => any;
934
+
935
+ export declare const CreateChannelResponseFilterSensitiveLog: (
936
+ obj: CreateChannelResponse
937
+ ) => any;
938
+
939
+ export declare const CreateHarvestJobRequestFilterSensitiveLog: (
940
+ obj: CreateHarvestJobRequest
941
+ ) => any;
942
+
943
+ export declare const CreateHarvestJobResponseFilterSensitiveLog: (
944
+ obj: CreateHarvestJobResponse
945
+ ) => any;
946
+
947
+ export declare const CreateOriginEndpointRequestFilterSensitiveLog: (
948
+ obj: CreateOriginEndpointRequest
949
+ ) => any;
950
+
951
+ export declare const CreateOriginEndpointResponseFilterSensitiveLog: (
952
+ obj: CreateOriginEndpointResponse
953
+ ) => any;
954
+
955
+ export declare const DeleteChannelRequestFilterSensitiveLog: (
956
+ obj: DeleteChannelRequest
957
+ ) => any;
958
+
959
+ export declare const DeleteChannelResponseFilterSensitiveLog: (
960
+ obj: DeleteChannelResponse
961
+ ) => any;
962
+
963
+ export declare const DeleteOriginEndpointRequestFilterSensitiveLog: (
964
+ obj: DeleteOriginEndpointRequest
965
+ ) => any;
966
+
967
+ export declare const DeleteOriginEndpointResponseFilterSensitiveLog: (
968
+ obj: DeleteOriginEndpointResponse
969
+ ) => any;
970
+
971
+ export declare const DescribeChannelRequestFilterSensitiveLog: (
972
+ obj: DescribeChannelRequest
973
+ ) => any;
974
+
975
+ export declare const DescribeChannelResponseFilterSensitiveLog: (
976
+ obj: DescribeChannelResponse
977
+ ) => any;
978
+
979
+ export declare const DescribeHarvestJobRequestFilterSensitiveLog: (
980
+ obj: DescribeHarvestJobRequest
981
+ ) => any;
982
+
983
+ export declare const DescribeHarvestJobResponseFilterSensitiveLog: (
984
+ obj: DescribeHarvestJobResponse
985
+ ) => any;
986
+
987
+ export declare const DescribeOriginEndpointRequestFilterSensitiveLog: (
988
+ obj: DescribeOriginEndpointRequest
989
+ ) => any;
990
+
991
+ export declare const DescribeOriginEndpointResponseFilterSensitiveLog: (
992
+ obj: DescribeOriginEndpointResponse
993
+ ) => any;
994
+
995
+ export declare const ListChannelsRequestFilterSensitiveLog: (
996
+ obj: ListChannelsRequest
997
+ ) => any;
998
+
999
+ export declare const ListChannelsResponseFilterSensitiveLog: (
1000
+ obj: ListChannelsResponse
1001
+ ) => any;
1002
+
1003
+ export declare const ListHarvestJobsRequestFilterSensitiveLog: (
1004
+ obj: ListHarvestJobsRequest
1005
+ ) => any;
1006
+
1007
+ export declare const ListHarvestJobsResponseFilterSensitiveLog: (
1008
+ obj: ListHarvestJobsResponse
1009
+ ) => any;
1010
+
1011
+ export declare const ListOriginEndpointsRequestFilterSensitiveLog: (
1012
+ obj: ListOriginEndpointsRequest
1013
+ ) => any;
1014
+
1015
+ export declare const ListOriginEndpointsResponseFilterSensitiveLog: (
1016
+ obj: ListOriginEndpointsResponse
1017
+ ) => any;
1018
+
1019
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
1020
+ obj: ListTagsForResourceRequest
1021
+ ) => any;
1022
+
1023
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
1024
+ obj: ListTagsForResourceResponse
1025
+ ) => any;
1026
+
1027
+ export declare const RotateChannelCredentialsRequestFilterSensitiveLog: (
1028
+ obj: RotateChannelCredentialsRequest
1029
+ ) => any;
1030
+
1031
+ export declare const RotateChannelCredentialsResponseFilterSensitiveLog: (
1032
+ obj: RotateChannelCredentialsResponse
1033
+ ) => any;
1034
+
1035
+ export declare const RotateIngestEndpointCredentialsRequestFilterSensitiveLog: (
1036
+ obj: RotateIngestEndpointCredentialsRequest
1037
+ ) => any;
1038
+
1039
+ export declare const RotateIngestEndpointCredentialsResponseFilterSensitiveLog: (
1040
+ obj: RotateIngestEndpointCredentialsResponse
1041
+ ) => any;
1042
+
1043
+ export declare const TagResourceRequestFilterSensitiveLog: (
1044
+ obj: TagResourceRequest
1045
+ ) => any;
1046
+
1047
+ export declare const UntagResourceRequestFilterSensitiveLog: (
1048
+ obj: UntagResourceRequest
1049
+ ) => any;
1050
+
1051
+ export declare const UpdateChannelRequestFilterSensitiveLog: (
1052
+ obj: UpdateChannelRequest
1053
+ ) => any;
1054
+
1055
+ export declare const UpdateChannelResponseFilterSensitiveLog: (
1056
+ obj: UpdateChannelResponse
1057
+ ) => any;
1058
+
1059
+ export declare const UpdateOriginEndpointRequestFilterSensitiveLog: (
1060
+ obj: UpdateOriginEndpointRequest
1061
+ ) => any;
1062
+
1063
+ export declare const UpdateOriginEndpointResponseFilterSensitiveLog: (
1064
+ obj: UpdateOriginEndpointResponse
1065
+ ) => any;