@aws-sdk/client-mediapackage 3.169.0 → 3.171.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 +16 -0
  2. package/dist-types/ts3.4/MediaPackage.d.ts +327 -97
  3. package/dist-types/ts3.4/MediaPackageClient.d.ts +219 -92
  4. package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CreateHarvestJobCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/CreateOriginEndpointCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteOriginEndpointCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DescribeChannelCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DescribeHarvestJobCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/DescribeOriginEndpointCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/ListHarvestJobsCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/ListOriginEndpointsCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -16
  17. package/dist-types/ts3.4/commands/RotateChannelCredentialsCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/RotateIngestEndpointCredentialsCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -16
  20. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -16
  21. package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/UpdateOriginEndpointCommand.d.ts +39 -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 +7 -6
  27. package/dist-types/ts3.4/models/index.d.ts +1 -1
  28. package/dist-types/ts3.4/models/models_0.d.ts +719 -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 +65 -38
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  39. package/package.json +34 -34
@@ -1,1010 +1,719 @@
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
+ export interface EgressAccessLogs {
17
+ LogGroupName?: string;
18
+ }
19
+ export interface IngestEndpoint {
20
+ Id?: string;
21
+ Password?: string;
22
+ Url?: string;
23
+ Username?: string;
24
+ }
25
+ export interface HlsIngest {
26
+ IngestEndpoints?: IngestEndpoint[];
27
+ }
28
+ export interface IngressAccessLogs {
29
+ LogGroupName?: string;
30
+ }
31
+ export interface Channel {
32
+ Arn?: string;
33
+ Description?: string;
34
+ EgressAccessLogs?: EgressAccessLogs;
35
+ HlsIngest?: HlsIngest;
36
+ Id?: string;
37
+ IngressAccessLogs?: IngressAccessLogs;
38
+ Tags?: Record<string, string>;
39
+ }
40
+ export interface S3Destination {
41
+ BucketName: string | undefined;
42
+ ManifestKey: string | undefined;
43
+ RoleArn: string | undefined;
44
+ }
45
+ export declare enum Status {
46
+ FAILED = "FAILED",
47
+ IN_PROGRESS = "IN_PROGRESS",
48
+ SUCCEEDED = "SUCCEEDED",
49
+ }
50
+ export interface HarvestJob {
51
+ Arn?: string;
52
+ ChannelId?: string;
53
+ CreatedAt?: string;
54
+ EndTime?: string;
55
+ Id?: string;
56
+ OriginEndpointId?: string;
57
+ S3Destination?: S3Destination;
58
+ StartTime?: string;
59
+ Status?: Status | string;
60
+ }
61
+ export declare enum AdMarkers {
62
+ DATERANGE = "DATERANGE",
63
+ NONE = "NONE",
64
+ PASSTHROUGH = "PASSTHROUGH",
65
+ SCTE35_ENHANCED = "SCTE35_ENHANCED",
66
+ }
67
+ export declare enum AdsOnDeliveryRestrictions {
68
+ BOTH = "BOTH",
69
+ NONE = "NONE",
70
+ RESTRICTED = "RESTRICTED",
71
+ UNRESTRICTED = "UNRESTRICTED",
72
+ }
73
+ export declare enum PlaylistType {
74
+ EVENT = "EVENT",
75
+ NONE = "NONE",
76
+ VOD = "VOD",
77
+ }
78
+ export interface HlsManifest {
79
+ AdMarkers?: AdMarkers | string;
80
+ Id: string | undefined;
81
+ IncludeIframeOnlyStream?: boolean;
82
+ ManifestName?: string;
83
+ PlaylistType?: PlaylistType | string;
84
+ PlaylistWindowSeconds?: number;
85
+ ProgramDateTimeIntervalSeconds?: number;
86
+ Url?: string;
87
+ AdTriggers?: (__AdTriggersElement | string)[];
88
+ AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | string;
89
+ }
90
+ export interface HlsManifestCreateOrUpdateParameters {
91
+ AdMarkers?: AdMarkers | string;
92
+ AdTriggers?: (__AdTriggersElement | string)[];
93
+ AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | string;
94
+ Id: string | undefined;
95
+ IncludeIframeOnlyStream?: boolean;
96
+ ManifestName?: string;
97
+ PlaylistType?: PlaylistType | string;
98
+ PlaylistWindowSeconds?: number;
99
+ ProgramDateTimeIntervalSeconds?: number;
100
+ }
101
+ export interface Authorization {
102
+ CdnIdentifierSecret: string | undefined;
103
+ SecretsRoleArn: string | undefined;
104
+ }
105
+ export declare enum CmafEncryptionMethod {
106
+ AES_CTR = "AES_CTR",
107
+ SAMPLE_AES = "SAMPLE_AES",
108
+ }
109
+ export declare enum PresetSpeke20Audio {
110
+ PRESET_AUDIO_1 = "PRESET-AUDIO-1",
111
+ PRESET_AUDIO_2 = "PRESET-AUDIO-2",
112
+ PRESET_AUDIO_3 = "PRESET-AUDIO-3",
113
+ SHARED = "SHARED",
114
+ UNENCRYPTED = "UNENCRYPTED",
115
+ }
116
+ export declare enum PresetSpeke20Video {
117
+ PRESET_VIDEO_1 = "PRESET-VIDEO-1",
118
+ PRESET_VIDEO_2 = "PRESET-VIDEO-2",
119
+ PRESET_VIDEO_3 = "PRESET-VIDEO-3",
120
+ PRESET_VIDEO_4 = "PRESET-VIDEO-4",
121
+ PRESET_VIDEO_5 = "PRESET-VIDEO-5",
122
+ PRESET_VIDEO_6 = "PRESET-VIDEO-6",
123
+ PRESET_VIDEO_7 = "PRESET-VIDEO-7",
124
+ PRESET_VIDEO_8 = "PRESET-VIDEO-8",
125
+ SHARED = "SHARED",
126
+ UNENCRYPTED = "UNENCRYPTED",
127
+ }
128
+ export interface EncryptionContractConfiguration {
129
+ PresetSpeke20Audio: PresetSpeke20Audio | string | undefined;
130
+ PresetSpeke20Video: PresetSpeke20Video | string | undefined;
131
+ }
132
+ export interface SpekeKeyProvider {
133
+ CertificateArn?: string;
134
+ EncryptionContractConfiguration?: EncryptionContractConfiguration;
135
+ ResourceId: string | undefined;
136
+ RoleArn: string | undefined;
137
+ SystemIds: string[] | undefined;
138
+ Url: string | undefined;
139
+ }
140
+ export interface CmafEncryption {
141
+ ConstantInitializationVector?: string;
142
+ EncryptionMethod?: CmafEncryptionMethod | string;
143
+ KeyRotationIntervalSeconds?: number;
144
+ SpekeKeyProvider: SpekeKeyProvider | undefined;
145
+ }
146
+ export declare enum StreamOrder {
147
+ ORIGINAL = "ORIGINAL",
148
+ VIDEO_BITRATE_ASCENDING = "VIDEO_BITRATE_ASCENDING",
149
+ VIDEO_BITRATE_DESCENDING = "VIDEO_BITRATE_DESCENDING",
150
+ }
151
+ export interface StreamSelection {
152
+ MaxVideoBitsPerSecond?: number;
153
+ MinVideoBitsPerSecond?: number;
154
+ StreamOrder?: StreamOrder | string;
155
+ }
156
+ export interface CmafPackage {
157
+ Encryption?: CmafEncryption;
158
+ HlsManifests?: HlsManifest[];
159
+ SegmentDurationSeconds?: number;
160
+ SegmentPrefix?: string;
161
+ StreamSelection?: StreamSelection;
162
+ }
163
+ export interface DashEncryption {
164
+ KeyRotationIntervalSeconds?: number;
165
+ SpekeKeyProvider: SpekeKeyProvider | undefined;
166
+ }
167
+ export declare enum ManifestLayout {
168
+ COMPACT = "COMPACT",
169
+ FULL = "FULL",
170
+ }
171
+ export declare enum Profile {
172
+ DVB_DASH_2014 = "DVB_DASH_2014",
173
+ HBBTV_1_5 = "HBBTV_1_5",
174
+ HYBRIDCAST = "HYBRIDCAST",
175
+ NONE = "NONE",
176
+ }
177
+ export declare enum SegmentTemplateFormat {
178
+ NUMBER_WITH_DURATION = "NUMBER_WITH_DURATION",
179
+ NUMBER_WITH_TIMELINE = "NUMBER_WITH_TIMELINE",
180
+ TIME_WITH_TIMELINE = "TIME_WITH_TIMELINE",
181
+ }
182
+ export declare enum UtcTiming {
183
+ HTTP_HEAD = "HTTP-HEAD",
184
+ HTTP_ISO = "HTTP-ISO",
185
+ HTTP_XSDATE = "HTTP-XSDATE",
186
+ NONE = "NONE",
187
+ }
188
+ export interface DashPackage {
189
+ AdTriggers?: (__AdTriggersElement | string)[];
190
+ AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | string;
191
+ Encryption?: DashEncryption;
192
+ IncludeIframeOnlyStream?: boolean;
193
+ ManifestLayout?: ManifestLayout | string;
194
+ ManifestWindowSeconds?: number;
195
+ MinBufferTimeSeconds?: number;
196
+ MinUpdatePeriodSeconds?: number;
197
+ PeriodTriggers?: (__PeriodTriggersElement | string)[];
198
+ Profile?: Profile | string;
199
+ SegmentDurationSeconds?: number;
200
+ SegmentTemplateFormat?: SegmentTemplateFormat | string;
201
+ StreamSelection?: StreamSelection;
202
+ SuggestedPresentationDelaySeconds?: number;
203
+ UtcTiming?: UtcTiming | string;
204
+ UtcTimingUri?: string;
205
+ }
206
+ export declare enum EncryptionMethod {
207
+ AES_128 = "AES_128",
208
+ SAMPLE_AES = "SAMPLE_AES",
209
+ }
210
+ export interface HlsEncryption {
211
+ ConstantInitializationVector?: string;
212
+ EncryptionMethod?: EncryptionMethod | string;
213
+ KeyRotationIntervalSeconds?: number;
214
+ RepeatExtXKey?: boolean;
215
+ SpekeKeyProvider: SpekeKeyProvider | undefined;
216
+ }
217
+ export interface HlsPackage {
218
+ AdMarkers?: AdMarkers | string;
219
+ AdTriggers?: (__AdTriggersElement | string)[];
220
+ AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | string;
221
+ Encryption?: HlsEncryption;
222
+ IncludeDvbSubtitles?: boolean;
223
+ IncludeIframeOnlyStream?: boolean;
224
+ PlaylistType?: PlaylistType | string;
225
+ PlaylistWindowSeconds?: number;
226
+ ProgramDateTimeIntervalSeconds?: number;
227
+ SegmentDurationSeconds?: number;
228
+ StreamSelection?: StreamSelection;
229
+ UseAudioRenditionGroup?: boolean;
230
+ }
231
+ export interface MssEncryption {
232
+ SpekeKeyProvider: SpekeKeyProvider | undefined;
233
+ }
234
+ export interface MssPackage {
235
+ Encryption?: MssEncryption;
236
+ ManifestWindowSeconds?: number;
237
+ SegmentDurationSeconds?: number;
238
+ StreamSelection?: StreamSelection;
239
+ }
240
+ export declare enum Origination {
241
+ ALLOW = "ALLOW",
242
+ DENY = "DENY",
243
+ }
244
+ export interface OriginEndpoint {
245
+ Arn?: string;
246
+ Authorization?: Authorization;
247
+ ChannelId?: string;
248
+ CmafPackage?: CmafPackage;
249
+ DashPackage?: DashPackage;
250
+ Description?: string;
251
+ HlsPackage?: HlsPackage;
252
+ Id?: string;
253
+ ManifestName?: string;
254
+ MssPackage?: MssPackage;
255
+ Origination?: Origination | string;
256
+ StartoverWindowSeconds?: number;
257
+ Tags?: Record<string, string>;
258
+ TimeDelaySeconds?: number;
259
+ Url?: string;
260
+ Whitelist?: string[];
261
+ }
262
+ export interface CmafPackageCreateOrUpdateParameters {
263
+ Encryption?: CmafEncryption;
264
+ HlsManifests?: HlsManifestCreateOrUpdateParameters[];
265
+ SegmentDurationSeconds?: number;
266
+ SegmentPrefix?: string;
267
+ StreamSelection?: StreamSelection;
268
+ }
269
+ export interface ConfigureLogsRequest {
270
+ EgressAccessLogs?: EgressAccessLogs;
271
+ Id: string | undefined;
272
+ IngressAccessLogs?: IngressAccessLogs;
273
+ }
274
+ export interface ConfigureLogsResponse {
275
+ Arn?: string;
276
+ Description?: string;
277
+ EgressAccessLogs?: EgressAccessLogs;
278
+ HlsIngest?: HlsIngest;
279
+ Id?: string;
280
+ IngressAccessLogs?: IngressAccessLogs;
281
+ Tags?: Record<string, string>;
282
+ }
283
+ export declare class ForbiddenException extends __BaseException {
284
+ readonly name: "ForbiddenException";
285
+ readonly $fault: "client";
286
+ Message?: string;
287
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
288
+ }
289
+ export declare class InternalServerErrorException extends __BaseException {
290
+ readonly name: "InternalServerErrorException";
291
+ readonly $fault: "server";
292
+ Message?: string;
293
+ constructor(
294
+ opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
295
+ );
296
+ }
297
+ export declare class NotFoundException extends __BaseException {
298
+ readonly name: "NotFoundException";
299
+ readonly $fault: "client";
300
+ Message?: string;
301
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
302
+ }
303
+ export declare class ServiceUnavailableException extends __BaseException {
304
+ readonly name: "ServiceUnavailableException";
305
+ readonly $fault: "server";
306
+ Message?: string;
307
+ constructor(
308
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
309
+ );
310
+ }
311
+ export declare class TooManyRequestsException extends __BaseException {
312
+ readonly name: "TooManyRequestsException";
313
+ readonly $fault: "client";
314
+ Message?: string;
315
+ constructor(
316
+ opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
317
+ );
318
+ }
319
+ export declare class UnprocessableEntityException extends __BaseException {
320
+ readonly name: "UnprocessableEntityException";
321
+ readonly $fault: "client";
322
+ Message?: string;
323
+ constructor(
324
+ opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
325
+ );
326
+ }
327
+ export interface CreateChannelRequest {
328
+ Description?: string;
329
+ Id: string | undefined;
330
+ Tags?: Record<string, string>;
331
+ }
332
+ export interface CreateChannelResponse {
333
+ Arn?: string;
334
+ Description?: string;
335
+ EgressAccessLogs?: EgressAccessLogs;
336
+ HlsIngest?: HlsIngest;
337
+ Id?: string;
338
+ IngressAccessLogs?: IngressAccessLogs;
339
+ Tags?: Record<string, string>;
340
+ }
341
+ export interface CreateHarvestJobRequest {
342
+ EndTime: string | undefined;
343
+ Id: string | undefined;
344
+ OriginEndpointId: string | undefined;
345
+ S3Destination: S3Destination | undefined;
346
+ StartTime: string | undefined;
347
+ }
348
+ export interface CreateHarvestJobResponse {
349
+ Arn?: string;
350
+ ChannelId?: string;
351
+ CreatedAt?: string;
352
+ EndTime?: string;
353
+ Id?: string;
354
+ OriginEndpointId?: string;
355
+ S3Destination?: S3Destination;
356
+ StartTime?: string;
357
+ Status?: Status | string;
358
+ }
359
+ export interface CreateOriginEndpointRequest {
360
+ Authorization?: Authorization;
361
+ ChannelId: string | undefined;
362
+ CmafPackage?: CmafPackageCreateOrUpdateParameters;
363
+ DashPackage?: DashPackage;
364
+ Description?: string;
365
+ HlsPackage?: HlsPackage;
366
+ Id: string | undefined;
367
+ ManifestName?: string;
368
+ MssPackage?: MssPackage;
369
+ Origination?: Origination | string;
370
+ StartoverWindowSeconds?: number;
371
+ Tags?: Record<string, string>;
372
+ TimeDelaySeconds?: number;
373
+ Whitelist?: string[];
374
+ }
375
+ export interface CreateOriginEndpointResponse {
376
+ Arn?: string;
377
+ Authorization?: Authorization;
378
+ ChannelId?: string;
379
+ CmafPackage?: CmafPackage;
380
+ DashPackage?: DashPackage;
381
+ Description?: string;
382
+ HlsPackage?: HlsPackage;
383
+ Id?: string;
384
+ ManifestName?: string;
385
+ MssPackage?: MssPackage;
386
+ Origination?: Origination | string;
387
+ StartoverWindowSeconds?: number;
388
+ Tags?: Record<string, string>;
389
+ TimeDelaySeconds?: number;
390
+ Url?: string;
391
+ Whitelist?: string[];
392
+ }
393
+ export interface DeleteChannelRequest {
394
+ Id: string | undefined;
395
+ }
396
+ export interface DeleteChannelResponse {}
397
+ export interface DeleteOriginEndpointRequest {
398
+ Id: string | undefined;
399
+ }
400
+ export interface DeleteOriginEndpointResponse {}
401
+ export interface DescribeChannelRequest {
402
+ Id: string | undefined;
403
+ }
404
+ export interface DescribeChannelResponse {
405
+ Arn?: string;
406
+ Description?: string;
407
+ EgressAccessLogs?: EgressAccessLogs;
408
+ HlsIngest?: HlsIngest;
409
+ Id?: string;
410
+ IngressAccessLogs?: IngressAccessLogs;
411
+ Tags?: Record<string, string>;
412
+ }
413
+ export interface DescribeHarvestJobRequest {
414
+ Id: string | undefined;
415
+ }
416
+ export interface DescribeHarvestJobResponse {
417
+ Arn?: string;
418
+ ChannelId?: string;
419
+ CreatedAt?: string;
420
+ EndTime?: string;
421
+ Id?: string;
422
+ OriginEndpointId?: string;
423
+ S3Destination?: S3Destination;
424
+ StartTime?: string;
425
+ Status?: Status | string;
426
+ }
427
+ export interface DescribeOriginEndpointRequest {
428
+ Id: string | undefined;
429
+ }
430
+ export interface DescribeOriginEndpointResponse {
431
+ Arn?: string;
432
+ Authorization?: Authorization;
433
+ ChannelId?: string;
434
+ CmafPackage?: CmafPackage;
435
+ DashPackage?: DashPackage;
436
+ Description?: string;
437
+ HlsPackage?: HlsPackage;
438
+ Id?: string;
439
+ ManifestName?: string;
440
+ MssPackage?: MssPackage;
441
+ Origination?: Origination | string;
442
+ StartoverWindowSeconds?: number;
443
+ Tags?: Record<string, string>;
444
+ TimeDelaySeconds?: number;
445
+ Url?: string;
446
+ Whitelist?: string[];
447
+ }
448
+ export interface ListChannelsRequest {
449
+ MaxResults?: number;
450
+ NextToken?: string;
451
+ }
452
+ export interface ListChannelsResponse {
453
+ Channels?: Channel[];
454
+ NextToken?: string;
455
+ }
456
+ export interface ListHarvestJobsRequest {
457
+ IncludeChannelId?: string;
458
+ IncludeStatus?: string;
459
+ MaxResults?: number;
460
+ NextToken?: string;
461
+ }
462
+ export interface ListHarvestJobsResponse {
463
+ HarvestJobs?: HarvestJob[];
464
+ NextToken?: string;
465
+ }
466
+ export interface ListOriginEndpointsRequest {
467
+ ChannelId?: string;
468
+ MaxResults?: number;
469
+ NextToken?: string;
470
+ }
471
+ export interface ListOriginEndpointsResponse {
472
+ NextToken?: string;
473
+ OriginEndpoints?: OriginEndpoint[];
474
+ }
475
+ export interface ListTagsForResourceRequest {
476
+ ResourceArn: string | undefined;
477
+ }
478
+ export interface ListTagsForResourceResponse {
479
+ Tags?: Record<string, string>;
480
+ }
481
+ export interface RotateChannelCredentialsRequest {
482
+ Id: string | undefined;
483
+ }
484
+ export interface RotateChannelCredentialsResponse {
485
+ Arn?: string;
486
+ Description?: string;
487
+ EgressAccessLogs?: EgressAccessLogs;
488
+ HlsIngest?: HlsIngest;
489
+ Id?: string;
490
+ IngressAccessLogs?: IngressAccessLogs;
491
+ Tags?: Record<string, string>;
492
+ }
493
+ export interface RotateIngestEndpointCredentialsRequest {
494
+ Id: string | undefined;
495
+ IngestEndpointId: string | undefined;
496
+ }
497
+ export interface RotateIngestEndpointCredentialsResponse {
498
+ Arn?: string;
499
+ Description?: string;
500
+ EgressAccessLogs?: EgressAccessLogs;
501
+ HlsIngest?: HlsIngest;
502
+ Id?: string;
503
+ IngressAccessLogs?: IngressAccessLogs;
504
+ Tags?: Record<string, string>;
505
+ }
506
+ export interface TagResourceRequest {
507
+ ResourceArn: string | undefined;
508
+ Tags: Record<string, string> | undefined;
509
+ }
510
+ export interface UntagResourceRequest {
511
+ ResourceArn: string | undefined;
512
+ TagKeys: string[] | undefined;
513
+ }
514
+ export interface UpdateChannelRequest {
515
+ Description?: string;
516
+ Id: string | undefined;
517
+ }
518
+ export interface UpdateChannelResponse {
519
+ Arn?: string;
520
+ Description?: string;
521
+ EgressAccessLogs?: EgressAccessLogs;
522
+ HlsIngest?: HlsIngest;
523
+ Id?: string;
524
+ IngressAccessLogs?: IngressAccessLogs;
525
+ Tags?: Record<string, string>;
526
+ }
527
+ export interface UpdateOriginEndpointRequest {
528
+ Authorization?: Authorization;
529
+ CmafPackage?: CmafPackageCreateOrUpdateParameters;
530
+ DashPackage?: DashPackage;
531
+ Description?: string;
532
+ HlsPackage?: HlsPackage;
533
+ Id: string | undefined;
534
+ ManifestName?: string;
535
+ MssPackage?: MssPackage;
536
+ Origination?: Origination | string;
537
+ StartoverWindowSeconds?: number;
538
+ TimeDelaySeconds?: number;
539
+ Whitelist?: string[];
540
+ }
541
+ export interface UpdateOriginEndpointResponse {
542
+ Arn?: string;
543
+ Authorization?: Authorization;
544
+ ChannelId?: string;
545
+ CmafPackage?: CmafPackage;
546
+ DashPackage?: DashPackage;
547
+ Description?: string;
548
+ HlsPackage?: HlsPackage;
549
+ Id?: string;
550
+ ManifestName?: string;
551
+ MssPackage?: MssPackage;
552
+ Origination?: Origination | string;
553
+ StartoverWindowSeconds?: number;
554
+ Tags?: Record<string, string>;
555
+ TimeDelaySeconds?: number;
556
+ Url?: string;
557
+ Whitelist?: string[];
558
+ }
559
+ export declare const EgressAccessLogsFilterSensitiveLog: (
560
+ obj: EgressAccessLogs
561
+ ) => any;
562
+ export declare const IngestEndpointFilterSensitiveLog: (
563
+ obj: IngestEndpoint
564
+ ) => any;
565
+ export declare const HlsIngestFilterSensitiveLog: (obj: HlsIngest) => any;
566
+ export declare const IngressAccessLogsFilterSensitiveLog: (
567
+ obj: IngressAccessLogs
568
+ ) => any;
569
+ export declare const ChannelFilterSensitiveLog: (obj: Channel) => any;
570
+ export declare const S3DestinationFilterSensitiveLog: (
571
+ obj: S3Destination
572
+ ) => any;
573
+ export declare const HarvestJobFilterSensitiveLog: (obj: HarvestJob) => any;
574
+ export declare const HlsManifestFilterSensitiveLog: (obj: HlsManifest) => any;
575
+ export declare const HlsManifestCreateOrUpdateParametersFilterSensitiveLog: (
576
+ obj: HlsManifestCreateOrUpdateParameters
577
+ ) => any;
578
+ export declare const AuthorizationFilterSensitiveLog: (
579
+ obj: Authorization
580
+ ) => any;
581
+ export declare const EncryptionContractConfigurationFilterSensitiveLog: (
582
+ obj: EncryptionContractConfiguration
583
+ ) => any;
584
+ export declare const SpekeKeyProviderFilterSensitiveLog: (
585
+ obj: SpekeKeyProvider
586
+ ) => any;
587
+ export declare const CmafEncryptionFilterSensitiveLog: (
588
+ obj: CmafEncryption
589
+ ) => any;
590
+ export declare const StreamSelectionFilterSensitiveLog: (
591
+ obj: StreamSelection
592
+ ) => any;
593
+ export declare const CmafPackageFilterSensitiveLog: (obj: CmafPackage) => any;
594
+ export declare const DashEncryptionFilterSensitiveLog: (
595
+ obj: DashEncryption
596
+ ) => any;
597
+ export declare const DashPackageFilterSensitiveLog: (obj: DashPackage) => any;
598
+ export declare const HlsEncryptionFilterSensitiveLog: (
599
+ obj: HlsEncryption
600
+ ) => any;
601
+ export declare const HlsPackageFilterSensitiveLog: (obj: HlsPackage) => any;
602
+ export declare const MssEncryptionFilterSensitiveLog: (
603
+ obj: MssEncryption
604
+ ) => any;
605
+ export declare const MssPackageFilterSensitiveLog: (obj: MssPackage) => any;
606
+ export declare const OriginEndpointFilterSensitiveLog: (
607
+ obj: OriginEndpoint
608
+ ) => any;
609
+ export declare const CmafPackageCreateOrUpdateParametersFilterSensitiveLog: (
610
+ obj: CmafPackageCreateOrUpdateParameters
611
+ ) => any;
612
+ export declare const ConfigureLogsRequestFilterSensitiveLog: (
613
+ obj: ConfigureLogsRequest
614
+ ) => any;
615
+ export declare const ConfigureLogsResponseFilterSensitiveLog: (
616
+ obj: ConfigureLogsResponse
617
+ ) => any;
618
+ export declare const CreateChannelRequestFilterSensitiveLog: (
619
+ obj: CreateChannelRequest
620
+ ) => any;
621
+ export declare const CreateChannelResponseFilterSensitiveLog: (
622
+ obj: CreateChannelResponse
623
+ ) => any;
624
+ export declare const CreateHarvestJobRequestFilterSensitiveLog: (
625
+ obj: CreateHarvestJobRequest
626
+ ) => any;
627
+ export declare const CreateHarvestJobResponseFilterSensitiveLog: (
628
+ obj: CreateHarvestJobResponse
629
+ ) => any;
630
+ export declare const CreateOriginEndpointRequestFilterSensitiveLog: (
631
+ obj: CreateOriginEndpointRequest
632
+ ) => any;
633
+ export declare const CreateOriginEndpointResponseFilterSensitiveLog: (
634
+ obj: CreateOriginEndpointResponse
635
+ ) => any;
636
+ export declare const DeleteChannelRequestFilterSensitiveLog: (
637
+ obj: DeleteChannelRequest
638
+ ) => any;
639
+ export declare const DeleteChannelResponseFilterSensitiveLog: (
640
+ obj: DeleteChannelResponse
641
+ ) => any;
642
+ export declare const DeleteOriginEndpointRequestFilterSensitiveLog: (
643
+ obj: DeleteOriginEndpointRequest
644
+ ) => any;
645
+ export declare const DeleteOriginEndpointResponseFilterSensitiveLog: (
646
+ obj: DeleteOriginEndpointResponse
647
+ ) => any;
648
+ export declare const DescribeChannelRequestFilterSensitiveLog: (
649
+ obj: DescribeChannelRequest
650
+ ) => any;
651
+ export declare const DescribeChannelResponseFilterSensitiveLog: (
652
+ obj: DescribeChannelResponse
653
+ ) => any;
654
+ export declare const DescribeHarvestJobRequestFilterSensitiveLog: (
655
+ obj: DescribeHarvestJobRequest
656
+ ) => any;
657
+ export declare const DescribeHarvestJobResponseFilterSensitiveLog: (
658
+ obj: DescribeHarvestJobResponse
659
+ ) => any;
660
+ export declare const DescribeOriginEndpointRequestFilterSensitiveLog: (
661
+ obj: DescribeOriginEndpointRequest
662
+ ) => any;
663
+ export declare const DescribeOriginEndpointResponseFilterSensitiveLog: (
664
+ obj: DescribeOriginEndpointResponse
665
+ ) => any;
666
+ export declare const ListChannelsRequestFilterSensitiveLog: (
667
+ obj: ListChannelsRequest
668
+ ) => any;
669
+ export declare const ListChannelsResponseFilterSensitiveLog: (
670
+ obj: ListChannelsResponse
671
+ ) => any;
672
+ export declare const ListHarvestJobsRequestFilterSensitiveLog: (
673
+ obj: ListHarvestJobsRequest
674
+ ) => any;
675
+ export declare const ListHarvestJobsResponseFilterSensitiveLog: (
676
+ obj: ListHarvestJobsResponse
677
+ ) => any;
678
+ export declare const ListOriginEndpointsRequestFilterSensitiveLog: (
679
+ obj: ListOriginEndpointsRequest
680
+ ) => any;
681
+ export declare const ListOriginEndpointsResponseFilterSensitiveLog: (
682
+ obj: ListOriginEndpointsResponse
683
+ ) => any;
684
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
685
+ obj: ListTagsForResourceRequest
686
+ ) => any;
687
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
688
+ obj: ListTagsForResourceResponse
689
+ ) => any;
690
+ export declare const RotateChannelCredentialsRequestFilterSensitiveLog: (
691
+ obj: RotateChannelCredentialsRequest
692
+ ) => any;
693
+ export declare const RotateChannelCredentialsResponseFilterSensitiveLog: (
694
+ obj: RotateChannelCredentialsResponse
695
+ ) => any;
696
+ export declare const RotateIngestEndpointCredentialsRequestFilterSensitiveLog: (
697
+ obj: RotateIngestEndpointCredentialsRequest
698
+ ) => any;
699
+ export declare const RotateIngestEndpointCredentialsResponseFilterSensitiveLog: (
700
+ obj: RotateIngestEndpointCredentialsResponse
701
+ ) => any;
702
+ export declare const TagResourceRequestFilterSensitiveLog: (
703
+ obj: TagResourceRequest
704
+ ) => any;
705
+ export declare const UntagResourceRequestFilterSensitiveLog: (
706
+ obj: UntagResourceRequest
707
+ ) => any;
708
+ export declare const UpdateChannelRequestFilterSensitiveLog: (
709
+ obj: UpdateChannelRequest
710
+ ) => any;
711
+ export declare const UpdateChannelResponseFilterSensitiveLog: (
712
+ obj: UpdateChannelResponse
713
+ ) => any;
714
+ export declare const UpdateOriginEndpointRequestFilterSensitiveLog: (
715
+ obj: UpdateOriginEndpointRequest
716
+ ) => any;
717
+ export declare const UpdateOriginEndpointResponseFilterSensitiveLog: (
718
+ obj: UpdateOriginEndpointResponse
719
+ ) => any;