@aws-sdk/client-mediapackage 3.132.0 → 3.142.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.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/ConfigureLogsCommand.js +2 -2
- package/dist-cjs/commands/CreateChannelCommand.js +2 -2
- package/dist-cjs/commands/CreateHarvestJobCommand.js +2 -2
- package/dist-cjs/commands/CreateOriginEndpointCommand.js +2 -2
- package/dist-cjs/commands/DeleteChannelCommand.js +2 -2
- package/dist-cjs/commands/DeleteOriginEndpointCommand.js +2 -2
- package/dist-cjs/commands/DescribeChannelCommand.js +2 -2
- package/dist-cjs/commands/DescribeHarvestJobCommand.js +2 -2
- package/dist-cjs/commands/DescribeOriginEndpointCommand.js +2 -2
- package/dist-cjs/commands/ListChannelsCommand.js +2 -2
- package/dist-cjs/commands/ListHarvestJobsCommand.js +2 -2
- package/dist-cjs/commands/ListOriginEndpointsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/RotateChannelCredentialsCommand.js +2 -2
- package/dist-cjs/commands/RotateIngestEndpointCredentialsCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +1 -1
- package/dist-cjs/commands/UntagResourceCommand.js +1 -1
- package/dist-cjs/commands/UpdateChannelCommand.js +2 -2
- package/dist-cjs/commands/UpdateOriginEndpointCommand.js +2 -2
- package/dist-cjs/models/models_0.js +238 -356
- package/dist-cjs/protocols/Aws_restJson1.js +318 -636
- package/dist-es/commands/ConfigureLogsCommand.js +3 -3
- package/dist-es/commands/CreateChannelCommand.js +3 -3
- package/dist-es/commands/CreateHarvestJobCommand.js +3 -3
- package/dist-es/commands/CreateOriginEndpointCommand.js +3 -3
- package/dist-es/commands/DeleteChannelCommand.js +3 -3
- package/dist-es/commands/DeleteOriginEndpointCommand.js +3 -3
- package/dist-es/commands/DescribeChannelCommand.js +3 -3
- package/dist-es/commands/DescribeHarvestJobCommand.js +3 -3
- package/dist-es/commands/DescribeOriginEndpointCommand.js +3 -3
- package/dist-es/commands/ListChannelsCommand.js +3 -3
- package/dist-es/commands/ListHarvestJobsCommand.js +3 -3
- package/dist-es/commands/ListOriginEndpointsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/RotateChannelCredentialsCommand.js +3 -3
- package/dist-es/commands/RotateIngestEndpointCredentialsCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateChannelCommand.js +3 -3
- package/dist-es/commands/UpdateOriginEndpointCommand.js +3 -3
- package/dist-es/models/models_0.js +59 -236
- package/dist-es/protocols/Aws_restJson1.js +383 -636
- package/dist-types/models/models_0.d.ts +236 -354
- package/dist-types/ts3.4/models/models_0.d.ts +118 -236
- package/package.json +6 -6
|
@@ -18,10 +18,6 @@ export interface EgressAccessLogs {
|
|
|
18
18
|
|
|
19
19
|
LogGroupName?: string;
|
|
20
20
|
}
|
|
21
|
-
export declare namespace EgressAccessLogs {
|
|
22
|
-
|
|
23
|
-
const filterSensitiveLog: (obj: EgressAccessLogs) => any;
|
|
24
|
-
}
|
|
25
21
|
|
|
26
22
|
export interface IngestEndpoint {
|
|
27
23
|
|
|
@@ -33,28 +29,16 @@ export interface IngestEndpoint {
|
|
|
33
29
|
|
|
34
30
|
Username?: string;
|
|
35
31
|
}
|
|
36
|
-
export declare namespace IngestEndpoint {
|
|
37
|
-
|
|
38
|
-
const filterSensitiveLog: (obj: IngestEndpoint) => any;
|
|
39
|
-
}
|
|
40
32
|
|
|
41
33
|
export interface HlsIngest {
|
|
42
34
|
|
|
43
35
|
IngestEndpoints?: IngestEndpoint[];
|
|
44
36
|
}
|
|
45
|
-
export declare namespace HlsIngest {
|
|
46
|
-
|
|
47
|
-
const filterSensitiveLog: (obj: HlsIngest) => any;
|
|
48
|
-
}
|
|
49
37
|
|
|
50
38
|
export interface IngressAccessLogs {
|
|
51
39
|
|
|
52
40
|
LogGroupName?: string;
|
|
53
41
|
}
|
|
54
|
-
export declare namespace IngressAccessLogs {
|
|
55
|
-
|
|
56
|
-
const filterSensitiveLog: (obj: IngressAccessLogs) => any;
|
|
57
|
-
}
|
|
58
42
|
|
|
59
43
|
export interface Channel {
|
|
60
44
|
|
|
@@ -72,10 +56,6 @@ export interface Channel {
|
|
|
72
56
|
|
|
73
57
|
Tags?: Record<string, string>;
|
|
74
58
|
}
|
|
75
|
-
export declare namespace Channel {
|
|
76
|
-
|
|
77
|
-
const filterSensitiveLog: (obj: Channel) => any;
|
|
78
|
-
}
|
|
79
59
|
|
|
80
60
|
export interface S3Destination {
|
|
81
61
|
|
|
@@ -85,10 +65,6 @@ export interface S3Destination {
|
|
|
85
65
|
|
|
86
66
|
RoleArn: string | undefined;
|
|
87
67
|
}
|
|
88
|
-
export declare namespace S3Destination {
|
|
89
|
-
|
|
90
|
-
const filterSensitiveLog: (obj: S3Destination) => any;
|
|
91
|
-
}
|
|
92
68
|
export declare enum Status {
|
|
93
69
|
FAILED = "FAILED",
|
|
94
70
|
IN_PROGRESS = "IN_PROGRESS",
|
|
@@ -115,10 +91,6 @@ export interface HarvestJob {
|
|
|
115
91
|
|
|
116
92
|
Status?: Status | string;
|
|
117
93
|
}
|
|
118
|
-
export declare namespace HarvestJob {
|
|
119
|
-
|
|
120
|
-
const filterSensitiveLog: (obj: HarvestJob) => any;
|
|
121
|
-
}
|
|
122
94
|
export declare enum AdMarkers {
|
|
123
95
|
DATERANGE = "DATERANGE",
|
|
124
96
|
NONE = "NONE",
|
|
@@ -149,10 +121,6 @@ export interface HlsManifest {
|
|
|
149
121
|
|
|
150
122
|
Url?: string;
|
|
151
123
|
}
|
|
152
|
-
export declare namespace HlsManifest {
|
|
153
|
-
|
|
154
|
-
const filterSensitiveLog: (obj: HlsManifest) => any;
|
|
155
|
-
}
|
|
156
124
|
export declare enum AdsOnDeliveryRestrictions {
|
|
157
125
|
BOTH = "BOTH",
|
|
158
126
|
NONE = "NONE",
|
|
@@ -180,10 +148,6 @@ export interface HlsManifestCreateOrUpdateParameters {
|
|
|
180
148
|
|
|
181
149
|
ProgramDateTimeIntervalSeconds?: number;
|
|
182
150
|
}
|
|
183
|
-
export declare namespace HlsManifestCreateOrUpdateParameters {
|
|
184
|
-
|
|
185
|
-
const filterSensitiveLog: (obj: HlsManifestCreateOrUpdateParameters) => any;
|
|
186
|
-
}
|
|
187
151
|
|
|
188
152
|
export interface Authorization {
|
|
189
153
|
|
|
@@ -191,10 +155,6 @@ export interface Authorization {
|
|
|
191
155
|
|
|
192
156
|
SecretsRoleArn: string | undefined;
|
|
193
157
|
}
|
|
194
|
-
export declare namespace Authorization {
|
|
195
|
-
|
|
196
|
-
const filterSensitiveLog: (obj: Authorization) => any;
|
|
197
|
-
}
|
|
198
158
|
export declare enum PresetSpeke20Audio {
|
|
199
159
|
PRESET_AUDIO_1 = "PRESET-AUDIO-1",
|
|
200
160
|
PRESET_AUDIO_2 = "PRESET-AUDIO-2",
|
|
@@ -221,10 +181,6 @@ export interface EncryptionContractConfiguration {
|
|
|
221
181
|
|
|
222
182
|
PresetSpeke20Video: PresetSpeke20Video | string | undefined;
|
|
223
183
|
}
|
|
224
|
-
export declare namespace EncryptionContractConfiguration {
|
|
225
|
-
|
|
226
|
-
const filterSensitiveLog: (obj: EncryptionContractConfiguration) => any;
|
|
227
|
-
}
|
|
228
184
|
|
|
229
185
|
export interface SpekeKeyProvider {
|
|
230
186
|
|
|
@@ -240,10 +196,6 @@ export interface SpekeKeyProvider {
|
|
|
240
196
|
|
|
241
197
|
Url: string | undefined;
|
|
242
198
|
}
|
|
243
|
-
export declare namespace SpekeKeyProvider {
|
|
244
|
-
|
|
245
|
-
const filterSensitiveLog: (obj: SpekeKeyProvider) => any;
|
|
246
|
-
}
|
|
247
199
|
|
|
248
200
|
export interface CmafEncryption {
|
|
249
201
|
|
|
@@ -253,10 +205,6 @@ export interface CmafEncryption {
|
|
|
253
205
|
|
|
254
206
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
255
207
|
}
|
|
256
|
-
export declare namespace CmafEncryption {
|
|
257
|
-
|
|
258
|
-
const filterSensitiveLog: (obj: CmafEncryption) => any;
|
|
259
|
-
}
|
|
260
208
|
export declare enum StreamOrder {
|
|
261
209
|
ORIGINAL = "ORIGINAL",
|
|
262
210
|
VIDEO_BITRATE_ASCENDING = "VIDEO_BITRATE_ASCENDING",
|
|
@@ -271,10 +219,6 @@ export interface StreamSelection {
|
|
|
271
219
|
|
|
272
220
|
StreamOrder?: StreamOrder | string;
|
|
273
221
|
}
|
|
274
|
-
export declare namespace StreamSelection {
|
|
275
|
-
|
|
276
|
-
const filterSensitiveLog: (obj: StreamSelection) => any;
|
|
277
|
-
}
|
|
278
222
|
|
|
279
223
|
export interface CmafPackage {
|
|
280
224
|
|
|
@@ -288,10 +232,6 @@ export interface CmafPackage {
|
|
|
288
232
|
|
|
289
233
|
StreamSelection?: StreamSelection;
|
|
290
234
|
}
|
|
291
|
-
export declare namespace CmafPackage {
|
|
292
|
-
|
|
293
|
-
const filterSensitiveLog: (obj: CmafPackage) => any;
|
|
294
|
-
}
|
|
295
235
|
|
|
296
236
|
export interface DashEncryption {
|
|
297
237
|
|
|
@@ -299,10 +239,6 @@ export interface DashEncryption {
|
|
|
299
239
|
|
|
300
240
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
301
241
|
}
|
|
302
|
-
export declare namespace DashEncryption {
|
|
303
|
-
|
|
304
|
-
const filterSensitiveLog: (obj: DashEncryption) => any;
|
|
305
|
-
}
|
|
306
242
|
export declare enum ManifestLayout {
|
|
307
243
|
COMPACT = "COMPACT",
|
|
308
244
|
FULL = "FULL"
|
|
@@ -359,10 +295,6 @@ export interface DashPackage {
|
|
|
359
295
|
|
|
360
296
|
UtcTimingUri?: string;
|
|
361
297
|
}
|
|
362
|
-
export declare namespace DashPackage {
|
|
363
|
-
|
|
364
|
-
const filterSensitiveLog: (obj: DashPackage) => any;
|
|
365
|
-
}
|
|
366
298
|
export declare enum EncryptionMethod {
|
|
367
299
|
AES_128 = "AES_128",
|
|
368
300
|
SAMPLE_AES = "SAMPLE_AES"
|
|
@@ -380,10 +312,6 @@ export interface HlsEncryption {
|
|
|
380
312
|
|
|
381
313
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
382
314
|
}
|
|
383
|
-
export declare namespace HlsEncryption {
|
|
384
|
-
|
|
385
|
-
const filterSensitiveLog: (obj: HlsEncryption) => any;
|
|
386
|
-
}
|
|
387
315
|
|
|
388
316
|
export interface HlsPackage {
|
|
389
317
|
|
|
@@ -411,19 +339,11 @@ export interface HlsPackage {
|
|
|
411
339
|
|
|
412
340
|
UseAudioRenditionGroup?: boolean;
|
|
413
341
|
}
|
|
414
|
-
export declare namespace HlsPackage {
|
|
415
|
-
|
|
416
|
-
const filterSensitiveLog: (obj: HlsPackage) => any;
|
|
417
|
-
}
|
|
418
342
|
|
|
419
343
|
export interface MssEncryption {
|
|
420
344
|
|
|
421
345
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
422
346
|
}
|
|
423
|
-
export declare namespace MssEncryption {
|
|
424
|
-
|
|
425
|
-
const filterSensitiveLog: (obj: MssEncryption) => any;
|
|
426
|
-
}
|
|
427
347
|
|
|
428
348
|
export interface MssPackage {
|
|
429
349
|
|
|
@@ -435,10 +355,6 @@ export interface MssPackage {
|
|
|
435
355
|
|
|
436
356
|
StreamSelection?: StreamSelection;
|
|
437
357
|
}
|
|
438
|
-
export declare namespace MssPackage {
|
|
439
|
-
|
|
440
|
-
const filterSensitiveLog: (obj: MssPackage) => any;
|
|
441
|
-
}
|
|
442
358
|
export declare enum Origination {
|
|
443
359
|
ALLOW = "ALLOW",
|
|
444
360
|
DENY = "DENY"
|
|
@@ -478,10 +394,6 @@ export interface OriginEndpoint {
|
|
|
478
394
|
|
|
479
395
|
Whitelist?: string[];
|
|
480
396
|
}
|
|
481
|
-
export declare namespace OriginEndpoint {
|
|
482
|
-
|
|
483
|
-
const filterSensitiveLog: (obj: OriginEndpoint) => any;
|
|
484
|
-
}
|
|
485
397
|
|
|
486
398
|
export interface CmafPackageCreateOrUpdateParameters {
|
|
487
399
|
|
|
@@ -495,10 +407,6 @@ export interface CmafPackageCreateOrUpdateParameters {
|
|
|
495
407
|
|
|
496
408
|
StreamSelection?: StreamSelection;
|
|
497
409
|
}
|
|
498
|
-
export declare namespace CmafPackageCreateOrUpdateParameters {
|
|
499
|
-
|
|
500
|
-
const filterSensitiveLog: (obj: CmafPackageCreateOrUpdateParameters) => any;
|
|
501
|
-
}
|
|
502
410
|
|
|
503
411
|
export interface ConfigureLogsRequest {
|
|
504
412
|
|
|
@@ -508,10 +416,6 @@ export interface ConfigureLogsRequest {
|
|
|
508
416
|
|
|
509
417
|
IngressAccessLogs?: IngressAccessLogs;
|
|
510
418
|
}
|
|
511
|
-
export declare namespace ConfigureLogsRequest {
|
|
512
|
-
|
|
513
|
-
const filterSensitiveLog: (obj: ConfigureLogsRequest) => any;
|
|
514
|
-
}
|
|
515
419
|
export interface ConfigureLogsResponse {
|
|
516
420
|
|
|
517
421
|
Arn?: string;
|
|
@@ -528,10 +432,6 @@ export interface ConfigureLogsResponse {
|
|
|
528
432
|
|
|
529
433
|
Tags?: Record<string, string>;
|
|
530
434
|
}
|
|
531
|
-
export declare namespace ConfigureLogsResponse {
|
|
532
|
-
|
|
533
|
-
const filterSensitiveLog: (obj: ConfigureLogsResponse) => any;
|
|
534
|
-
}
|
|
535
435
|
|
|
536
436
|
export declare class ForbiddenException extends __BaseException {
|
|
537
437
|
readonly name: "ForbiddenException";
|
|
@@ -589,10 +489,6 @@ export interface CreateChannelRequest {
|
|
|
589
489
|
|
|
590
490
|
Tags?: Record<string, string>;
|
|
591
491
|
}
|
|
592
|
-
export declare namespace CreateChannelRequest {
|
|
593
|
-
|
|
594
|
-
const filterSensitiveLog: (obj: CreateChannelRequest) => any;
|
|
595
|
-
}
|
|
596
492
|
export interface CreateChannelResponse {
|
|
597
493
|
|
|
598
494
|
Arn?: string;
|
|
@@ -609,10 +505,6 @@ export interface CreateChannelResponse {
|
|
|
609
505
|
|
|
610
506
|
Tags?: Record<string, string>;
|
|
611
507
|
}
|
|
612
|
-
export declare namespace CreateChannelResponse {
|
|
613
|
-
|
|
614
|
-
const filterSensitiveLog: (obj: CreateChannelResponse) => any;
|
|
615
|
-
}
|
|
616
508
|
|
|
617
509
|
export interface CreateHarvestJobRequest {
|
|
618
510
|
|
|
@@ -626,10 +518,6 @@ export interface CreateHarvestJobRequest {
|
|
|
626
518
|
|
|
627
519
|
StartTime: string | undefined;
|
|
628
520
|
}
|
|
629
|
-
export declare namespace CreateHarvestJobRequest {
|
|
630
|
-
|
|
631
|
-
const filterSensitiveLog: (obj: CreateHarvestJobRequest) => any;
|
|
632
|
-
}
|
|
633
521
|
export interface CreateHarvestJobResponse {
|
|
634
522
|
|
|
635
523
|
Arn?: string;
|
|
@@ -650,10 +538,6 @@ export interface CreateHarvestJobResponse {
|
|
|
650
538
|
|
|
651
539
|
Status?: Status | string;
|
|
652
540
|
}
|
|
653
|
-
export declare namespace CreateHarvestJobResponse {
|
|
654
|
-
|
|
655
|
-
const filterSensitiveLog: (obj: CreateHarvestJobResponse) => any;
|
|
656
|
-
}
|
|
657
541
|
|
|
658
542
|
export interface CreateOriginEndpointRequest {
|
|
659
543
|
|
|
@@ -685,10 +569,6 @@ export interface CreateOriginEndpointRequest {
|
|
|
685
569
|
|
|
686
570
|
Whitelist?: string[];
|
|
687
571
|
}
|
|
688
|
-
export declare namespace CreateOriginEndpointRequest {
|
|
689
|
-
|
|
690
|
-
const filterSensitiveLog: (obj: CreateOriginEndpointRequest) => any;
|
|
691
|
-
}
|
|
692
572
|
export interface CreateOriginEndpointResponse {
|
|
693
573
|
|
|
694
574
|
Arn?: string;
|
|
@@ -723,46 +603,22 @@ export interface CreateOriginEndpointResponse {
|
|
|
723
603
|
|
|
724
604
|
Whitelist?: string[];
|
|
725
605
|
}
|
|
726
|
-
export declare namespace CreateOriginEndpointResponse {
|
|
727
|
-
|
|
728
|
-
const filterSensitiveLog: (obj: CreateOriginEndpointResponse) => any;
|
|
729
|
-
}
|
|
730
606
|
export interface DeleteChannelRequest {
|
|
731
607
|
|
|
732
608
|
Id: string | undefined;
|
|
733
609
|
}
|
|
734
|
-
export declare namespace DeleteChannelRequest {
|
|
735
|
-
|
|
736
|
-
const filterSensitiveLog: (obj: DeleteChannelRequest) => any;
|
|
737
|
-
}
|
|
738
610
|
export interface DeleteChannelResponse {
|
|
739
611
|
}
|
|
740
|
-
export declare namespace DeleteChannelResponse {
|
|
741
|
-
|
|
742
|
-
const filterSensitiveLog: (obj: DeleteChannelResponse) => any;
|
|
743
|
-
}
|
|
744
612
|
export interface DeleteOriginEndpointRequest {
|
|
745
613
|
|
|
746
614
|
Id: string | undefined;
|
|
747
615
|
}
|
|
748
|
-
export declare namespace DeleteOriginEndpointRequest {
|
|
749
|
-
|
|
750
|
-
const filterSensitiveLog: (obj: DeleteOriginEndpointRequest) => any;
|
|
751
|
-
}
|
|
752
616
|
export interface DeleteOriginEndpointResponse {
|
|
753
617
|
}
|
|
754
|
-
export declare namespace DeleteOriginEndpointResponse {
|
|
755
|
-
|
|
756
|
-
const filterSensitiveLog: (obj: DeleteOriginEndpointResponse) => any;
|
|
757
|
-
}
|
|
758
618
|
export interface DescribeChannelRequest {
|
|
759
619
|
|
|
760
620
|
Id: string | undefined;
|
|
761
621
|
}
|
|
762
|
-
export declare namespace DescribeChannelRequest {
|
|
763
|
-
|
|
764
|
-
const filterSensitiveLog: (obj: DescribeChannelRequest) => any;
|
|
765
|
-
}
|
|
766
622
|
export interface DescribeChannelResponse {
|
|
767
623
|
|
|
768
624
|
Arn?: string;
|
|
@@ -779,18 +635,10 @@ export interface DescribeChannelResponse {
|
|
|
779
635
|
|
|
780
636
|
Tags?: Record<string, string>;
|
|
781
637
|
}
|
|
782
|
-
export declare namespace DescribeChannelResponse {
|
|
783
|
-
|
|
784
|
-
const filterSensitiveLog: (obj: DescribeChannelResponse) => any;
|
|
785
|
-
}
|
|
786
638
|
export interface DescribeHarvestJobRequest {
|
|
787
639
|
|
|
788
640
|
Id: string | undefined;
|
|
789
641
|
}
|
|
790
|
-
export declare namespace DescribeHarvestJobRequest {
|
|
791
|
-
|
|
792
|
-
const filterSensitiveLog: (obj: DescribeHarvestJobRequest) => any;
|
|
793
|
-
}
|
|
794
642
|
export interface DescribeHarvestJobResponse {
|
|
795
643
|
|
|
796
644
|
Arn?: string;
|
|
@@ -811,18 +659,10 @@ export interface DescribeHarvestJobResponse {
|
|
|
811
659
|
|
|
812
660
|
Status?: Status | string;
|
|
813
661
|
}
|
|
814
|
-
export declare namespace DescribeHarvestJobResponse {
|
|
815
|
-
|
|
816
|
-
const filterSensitiveLog: (obj: DescribeHarvestJobResponse) => any;
|
|
817
|
-
}
|
|
818
662
|
export interface DescribeOriginEndpointRequest {
|
|
819
663
|
|
|
820
664
|
Id: string | undefined;
|
|
821
665
|
}
|
|
822
|
-
export declare namespace DescribeOriginEndpointRequest {
|
|
823
|
-
|
|
824
|
-
const filterSensitiveLog: (obj: DescribeOriginEndpointRequest) => any;
|
|
825
|
-
}
|
|
826
666
|
export interface DescribeOriginEndpointResponse {
|
|
827
667
|
|
|
828
668
|
Arn?: string;
|
|
@@ -857,30 +697,18 @@ export interface DescribeOriginEndpointResponse {
|
|
|
857
697
|
|
|
858
698
|
Whitelist?: string[];
|
|
859
699
|
}
|
|
860
|
-
export declare namespace DescribeOriginEndpointResponse {
|
|
861
|
-
|
|
862
|
-
const filterSensitiveLog: (obj: DescribeOriginEndpointResponse) => any;
|
|
863
|
-
}
|
|
864
700
|
export interface ListChannelsRequest {
|
|
865
701
|
|
|
866
702
|
MaxResults?: number;
|
|
867
703
|
|
|
868
704
|
NextToken?: string;
|
|
869
705
|
}
|
|
870
|
-
export declare namespace ListChannelsRequest {
|
|
871
|
-
|
|
872
|
-
const filterSensitiveLog: (obj: ListChannelsRequest) => any;
|
|
873
|
-
}
|
|
874
706
|
export interface ListChannelsResponse {
|
|
875
707
|
|
|
876
708
|
Channels?: Channel[];
|
|
877
709
|
|
|
878
710
|
NextToken?: string;
|
|
879
711
|
}
|
|
880
|
-
export declare namespace ListChannelsResponse {
|
|
881
|
-
|
|
882
|
-
const filterSensitiveLog: (obj: ListChannelsResponse) => any;
|
|
883
|
-
}
|
|
884
712
|
export interface ListHarvestJobsRequest {
|
|
885
713
|
|
|
886
714
|
IncludeChannelId?: string;
|
|
@@ -891,20 +719,12 @@ export interface ListHarvestJobsRequest {
|
|
|
891
719
|
|
|
892
720
|
NextToken?: string;
|
|
893
721
|
}
|
|
894
|
-
export declare namespace ListHarvestJobsRequest {
|
|
895
|
-
|
|
896
|
-
const filterSensitiveLog: (obj: ListHarvestJobsRequest) => any;
|
|
897
|
-
}
|
|
898
722
|
export interface ListHarvestJobsResponse {
|
|
899
723
|
|
|
900
724
|
HarvestJobs?: HarvestJob[];
|
|
901
725
|
|
|
902
726
|
NextToken?: string;
|
|
903
727
|
}
|
|
904
|
-
export declare namespace ListHarvestJobsResponse {
|
|
905
|
-
|
|
906
|
-
const filterSensitiveLog: (obj: ListHarvestJobsResponse) => any;
|
|
907
|
-
}
|
|
908
728
|
export interface ListOriginEndpointsRequest {
|
|
909
729
|
|
|
910
730
|
ChannelId?: string;
|
|
@@ -913,42 +733,22 @@ export interface ListOriginEndpointsRequest {
|
|
|
913
733
|
|
|
914
734
|
NextToken?: string;
|
|
915
735
|
}
|
|
916
|
-
export declare namespace ListOriginEndpointsRequest {
|
|
917
|
-
|
|
918
|
-
const filterSensitiveLog: (obj: ListOriginEndpointsRequest) => any;
|
|
919
|
-
}
|
|
920
736
|
export interface ListOriginEndpointsResponse {
|
|
921
737
|
|
|
922
738
|
NextToken?: string;
|
|
923
739
|
|
|
924
740
|
OriginEndpoints?: OriginEndpoint[];
|
|
925
741
|
}
|
|
926
|
-
export declare namespace ListOriginEndpointsResponse {
|
|
927
|
-
|
|
928
|
-
const filterSensitiveLog: (obj: ListOriginEndpointsResponse) => any;
|
|
929
|
-
}
|
|
930
742
|
export interface ListTagsForResourceRequest {
|
|
931
743
|
ResourceArn: string | undefined;
|
|
932
744
|
}
|
|
933
|
-
export declare namespace ListTagsForResourceRequest {
|
|
934
|
-
|
|
935
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
936
|
-
}
|
|
937
745
|
export interface ListTagsForResourceResponse {
|
|
938
746
|
Tags?: Record<string, string>;
|
|
939
747
|
}
|
|
940
|
-
export declare namespace ListTagsForResourceResponse {
|
|
941
|
-
|
|
942
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
943
|
-
}
|
|
944
748
|
export interface RotateChannelCredentialsRequest {
|
|
945
749
|
|
|
946
750
|
Id: string | undefined;
|
|
947
751
|
}
|
|
948
|
-
export declare namespace RotateChannelCredentialsRequest {
|
|
949
|
-
|
|
950
|
-
const filterSensitiveLog: (obj: RotateChannelCredentialsRequest) => any;
|
|
951
|
-
}
|
|
952
752
|
export interface RotateChannelCredentialsResponse {
|
|
953
753
|
|
|
954
754
|
Arn?: string;
|
|
@@ -965,20 +765,12 @@ export interface RotateChannelCredentialsResponse {
|
|
|
965
765
|
|
|
966
766
|
Tags?: Record<string, string>;
|
|
967
767
|
}
|
|
968
|
-
export declare namespace RotateChannelCredentialsResponse {
|
|
969
|
-
|
|
970
|
-
const filterSensitiveLog: (obj: RotateChannelCredentialsResponse) => any;
|
|
971
|
-
}
|
|
972
768
|
export interface RotateIngestEndpointCredentialsRequest {
|
|
973
769
|
|
|
974
770
|
Id: string | undefined;
|
|
975
771
|
|
|
976
772
|
IngestEndpointId: string | undefined;
|
|
977
773
|
}
|
|
978
|
-
export declare namespace RotateIngestEndpointCredentialsRequest {
|
|
979
|
-
|
|
980
|
-
const filterSensitiveLog: (obj: RotateIngestEndpointCredentialsRequest) => any;
|
|
981
|
-
}
|
|
982
774
|
export interface RotateIngestEndpointCredentialsResponse {
|
|
983
775
|
|
|
984
776
|
Arn?: string;
|
|
@@ -995,27 +787,15 @@ export interface RotateIngestEndpointCredentialsResponse {
|
|
|
995
787
|
|
|
996
788
|
Tags?: Record<string, string>;
|
|
997
789
|
}
|
|
998
|
-
export declare namespace RotateIngestEndpointCredentialsResponse {
|
|
999
|
-
|
|
1000
|
-
const filterSensitiveLog: (obj: RotateIngestEndpointCredentialsResponse) => any;
|
|
1001
|
-
}
|
|
1002
790
|
export interface TagResourceRequest {
|
|
1003
791
|
ResourceArn: string | undefined;
|
|
1004
792
|
Tags: Record<string, string> | undefined;
|
|
1005
793
|
}
|
|
1006
|
-
export declare namespace TagResourceRequest {
|
|
1007
|
-
|
|
1008
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1009
|
-
}
|
|
1010
794
|
export interface UntagResourceRequest {
|
|
1011
795
|
ResourceArn: string | undefined;
|
|
1012
796
|
|
|
1013
797
|
TagKeys: string[] | undefined;
|
|
1014
798
|
}
|
|
1015
|
-
export declare namespace UntagResourceRequest {
|
|
1016
|
-
|
|
1017
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1018
|
-
}
|
|
1019
799
|
|
|
1020
800
|
export interface UpdateChannelRequest {
|
|
1021
801
|
|
|
@@ -1023,10 +803,6 @@ export interface UpdateChannelRequest {
|
|
|
1023
803
|
|
|
1024
804
|
Id: string | undefined;
|
|
1025
805
|
}
|
|
1026
|
-
export declare namespace UpdateChannelRequest {
|
|
1027
|
-
|
|
1028
|
-
const filterSensitiveLog: (obj: UpdateChannelRequest) => any;
|
|
1029
|
-
}
|
|
1030
806
|
export interface UpdateChannelResponse {
|
|
1031
807
|
|
|
1032
808
|
Arn?: string;
|
|
@@ -1043,10 +819,6 @@ export interface UpdateChannelResponse {
|
|
|
1043
819
|
|
|
1044
820
|
Tags?: Record<string, string>;
|
|
1045
821
|
}
|
|
1046
|
-
export declare namespace UpdateChannelResponse {
|
|
1047
|
-
|
|
1048
|
-
const filterSensitiveLog: (obj: UpdateChannelResponse) => any;
|
|
1049
|
-
}
|
|
1050
822
|
|
|
1051
823
|
export interface UpdateOriginEndpointRequest {
|
|
1052
824
|
|
|
@@ -1074,10 +846,6 @@ export interface UpdateOriginEndpointRequest {
|
|
|
1074
846
|
|
|
1075
847
|
Whitelist?: string[];
|
|
1076
848
|
}
|
|
1077
|
-
export declare namespace UpdateOriginEndpointRequest {
|
|
1078
|
-
|
|
1079
|
-
const filterSensitiveLog: (obj: UpdateOriginEndpointRequest) => any;
|
|
1080
|
-
}
|
|
1081
849
|
export interface UpdateOriginEndpointResponse {
|
|
1082
850
|
|
|
1083
851
|
Arn?: string;
|
|
@@ -1112,7 +880,121 @@ export interface UpdateOriginEndpointResponse {
|
|
|
1112
880
|
|
|
1113
881
|
Whitelist?: string[];
|
|
1114
882
|
}
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
883
|
+
|
|
884
|
+
export declare const EgressAccessLogsFilterSensitiveLog: (obj: EgressAccessLogs) => any;
|
|
885
|
+
|
|
886
|
+
export declare const IngestEndpointFilterSensitiveLog: (obj: IngestEndpoint) => any;
|
|
887
|
+
|
|
888
|
+
export declare const HlsIngestFilterSensitiveLog: (obj: HlsIngest) => any;
|
|
889
|
+
|
|
890
|
+
export declare const IngressAccessLogsFilterSensitiveLog: (obj: IngressAccessLogs) => any;
|
|
891
|
+
|
|
892
|
+
export declare const ChannelFilterSensitiveLog: (obj: Channel) => any;
|
|
893
|
+
|
|
894
|
+
export declare const S3DestinationFilterSensitiveLog: (obj: S3Destination) => any;
|
|
895
|
+
|
|
896
|
+
export declare const HarvestJobFilterSensitiveLog: (obj: HarvestJob) => any;
|
|
897
|
+
|
|
898
|
+
export declare const HlsManifestFilterSensitiveLog: (obj: HlsManifest) => any;
|
|
899
|
+
|
|
900
|
+
export declare const HlsManifestCreateOrUpdateParametersFilterSensitiveLog: (obj: HlsManifestCreateOrUpdateParameters) => any;
|
|
901
|
+
|
|
902
|
+
export declare const AuthorizationFilterSensitiveLog: (obj: Authorization) => any;
|
|
903
|
+
|
|
904
|
+
export declare const EncryptionContractConfigurationFilterSensitiveLog: (obj: EncryptionContractConfiguration) => any;
|
|
905
|
+
|
|
906
|
+
export declare const SpekeKeyProviderFilterSensitiveLog: (obj: SpekeKeyProvider) => any;
|
|
907
|
+
|
|
908
|
+
export declare const CmafEncryptionFilterSensitiveLog: (obj: CmafEncryption) => any;
|
|
909
|
+
|
|
910
|
+
export declare const StreamSelectionFilterSensitiveLog: (obj: StreamSelection) => any;
|
|
911
|
+
|
|
912
|
+
export declare const CmafPackageFilterSensitiveLog: (obj: CmafPackage) => any;
|
|
913
|
+
|
|
914
|
+
export declare const DashEncryptionFilterSensitiveLog: (obj: DashEncryption) => any;
|
|
915
|
+
|
|
916
|
+
export declare const DashPackageFilterSensitiveLog: (obj: DashPackage) => any;
|
|
917
|
+
|
|
918
|
+
export declare const HlsEncryptionFilterSensitiveLog: (obj: HlsEncryption) => any;
|
|
919
|
+
|
|
920
|
+
export declare const HlsPackageFilterSensitiveLog: (obj: HlsPackage) => any;
|
|
921
|
+
|
|
922
|
+
export declare const MssEncryptionFilterSensitiveLog: (obj: MssEncryption) => any;
|
|
923
|
+
|
|
924
|
+
export declare const MssPackageFilterSensitiveLog: (obj: MssPackage) => any;
|
|
925
|
+
|
|
926
|
+
export declare const OriginEndpointFilterSensitiveLog: (obj: OriginEndpoint) => any;
|
|
927
|
+
|
|
928
|
+
export declare const CmafPackageCreateOrUpdateParametersFilterSensitiveLog: (obj: CmafPackageCreateOrUpdateParameters) => any;
|
|
929
|
+
|
|
930
|
+
export declare const ConfigureLogsRequestFilterSensitiveLog: (obj: ConfigureLogsRequest) => any;
|
|
931
|
+
|
|
932
|
+
export declare const ConfigureLogsResponseFilterSensitiveLog: (obj: ConfigureLogsResponse) => any;
|
|
933
|
+
|
|
934
|
+
export declare const CreateChannelRequestFilterSensitiveLog: (obj: CreateChannelRequest) => any;
|
|
935
|
+
|
|
936
|
+
export declare const CreateChannelResponseFilterSensitiveLog: (obj: CreateChannelResponse) => any;
|
|
937
|
+
|
|
938
|
+
export declare const CreateHarvestJobRequestFilterSensitiveLog: (obj: CreateHarvestJobRequest) => any;
|
|
939
|
+
|
|
940
|
+
export declare const CreateHarvestJobResponseFilterSensitiveLog: (obj: CreateHarvestJobResponse) => any;
|
|
941
|
+
|
|
942
|
+
export declare const CreateOriginEndpointRequestFilterSensitiveLog: (obj: CreateOriginEndpointRequest) => any;
|
|
943
|
+
|
|
944
|
+
export declare const CreateOriginEndpointResponseFilterSensitiveLog: (obj: CreateOriginEndpointResponse) => any;
|
|
945
|
+
|
|
946
|
+
export declare const DeleteChannelRequestFilterSensitiveLog: (obj: DeleteChannelRequest) => any;
|
|
947
|
+
|
|
948
|
+
export declare const DeleteChannelResponseFilterSensitiveLog: (obj: DeleteChannelResponse) => any;
|
|
949
|
+
|
|
950
|
+
export declare const DeleteOriginEndpointRequestFilterSensitiveLog: (obj: DeleteOriginEndpointRequest) => any;
|
|
951
|
+
|
|
952
|
+
export declare const DeleteOriginEndpointResponseFilterSensitiveLog: (obj: DeleteOriginEndpointResponse) => any;
|
|
953
|
+
|
|
954
|
+
export declare const DescribeChannelRequestFilterSensitiveLog: (obj: DescribeChannelRequest) => any;
|
|
955
|
+
|
|
956
|
+
export declare const DescribeChannelResponseFilterSensitiveLog: (obj: DescribeChannelResponse) => any;
|
|
957
|
+
|
|
958
|
+
export declare const DescribeHarvestJobRequestFilterSensitiveLog: (obj: DescribeHarvestJobRequest) => any;
|
|
959
|
+
|
|
960
|
+
export declare const DescribeHarvestJobResponseFilterSensitiveLog: (obj: DescribeHarvestJobResponse) => any;
|
|
961
|
+
|
|
962
|
+
export declare const DescribeOriginEndpointRequestFilterSensitiveLog: (obj: DescribeOriginEndpointRequest) => any;
|
|
963
|
+
|
|
964
|
+
export declare const DescribeOriginEndpointResponseFilterSensitiveLog: (obj: DescribeOriginEndpointResponse) => any;
|
|
965
|
+
|
|
966
|
+
export declare const ListChannelsRequestFilterSensitiveLog: (obj: ListChannelsRequest) => any;
|
|
967
|
+
|
|
968
|
+
export declare const ListChannelsResponseFilterSensitiveLog: (obj: ListChannelsResponse) => any;
|
|
969
|
+
|
|
970
|
+
export declare const ListHarvestJobsRequestFilterSensitiveLog: (obj: ListHarvestJobsRequest) => any;
|
|
971
|
+
|
|
972
|
+
export declare const ListHarvestJobsResponseFilterSensitiveLog: (obj: ListHarvestJobsResponse) => any;
|
|
973
|
+
|
|
974
|
+
export declare const ListOriginEndpointsRequestFilterSensitiveLog: (obj: ListOriginEndpointsRequest) => any;
|
|
975
|
+
|
|
976
|
+
export declare const ListOriginEndpointsResponseFilterSensitiveLog: (obj: ListOriginEndpointsResponse) => any;
|
|
977
|
+
|
|
978
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
979
|
+
|
|
980
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
981
|
+
|
|
982
|
+
export declare const RotateChannelCredentialsRequestFilterSensitiveLog: (obj: RotateChannelCredentialsRequest) => any;
|
|
983
|
+
|
|
984
|
+
export declare const RotateChannelCredentialsResponseFilterSensitiveLog: (obj: RotateChannelCredentialsResponse) => any;
|
|
985
|
+
|
|
986
|
+
export declare const RotateIngestEndpointCredentialsRequestFilterSensitiveLog: (obj: RotateIngestEndpointCredentialsRequest) => any;
|
|
987
|
+
|
|
988
|
+
export declare const RotateIngestEndpointCredentialsResponseFilterSensitiveLog: (obj: RotateIngestEndpointCredentialsResponse) => any;
|
|
989
|
+
|
|
990
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
991
|
+
|
|
992
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
993
|
+
|
|
994
|
+
export declare const UpdateChannelRequestFilterSensitiveLog: (obj: UpdateChannelRequest) => any;
|
|
995
|
+
|
|
996
|
+
export declare const UpdateChannelResponseFilterSensitiveLog: (obj: UpdateChannelResponse) => any;
|
|
997
|
+
|
|
998
|
+
export declare const UpdateOriginEndpointRequestFilterSensitiveLog: (obj: UpdateOriginEndpointRequest) => any;
|
|
999
|
+
|
|
1000
|
+
export declare const UpdateOriginEndpointResponseFilterSensitiveLog: (obj: UpdateOriginEndpointResponse) => any;
|