@aws-sdk/client-mediapackage 3.296.0 → 3.298.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/dist-cjs/commands/ConfigureLogsCommand.js +2 -3
- package/dist-cjs/commands/CreateChannelCommand.js +2 -3
- package/dist-cjs/commands/CreateHarvestJobCommand.js +2 -3
- package/dist-cjs/commands/CreateOriginEndpointCommand.js +2 -3
- package/dist-cjs/commands/DeleteChannelCommand.js +2 -3
- package/dist-cjs/commands/DeleteOriginEndpointCommand.js +2 -3
- package/dist-cjs/commands/DescribeChannelCommand.js +2 -3
- package/dist-cjs/commands/DescribeHarvestJobCommand.js +2 -3
- package/dist-cjs/commands/DescribeOriginEndpointCommand.js +2 -3
- package/dist-cjs/commands/ListChannelsCommand.js +2 -3
- package/dist-cjs/commands/ListHarvestJobsCommand.js +2 -3
- package/dist-cjs/commands/ListOriginEndpointsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/RotateChannelCredentialsCommand.js +2 -3
- package/dist-cjs/commands/RotateIngestEndpointCredentialsCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateChannelCommand.js +2 -3
- package/dist-cjs/commands/UpdateOriginEndpointCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -238
- package/dist-es/commands/ConfigureLogsCommand.js +2 -3
- package/dist-es/commands/CreateChannelCommand.js +2 -3
- package/dist-es/commands/CreateHarvestJobCommand.js +2 -3
- package/dist-es/commands/CreateOriginEndpointCommand.js +2 -3
- package/dist-es/commands/DeleteChannelCommand.js +2 -3
- package/dist-es/commands/DeleteOriginEndpointCommand.js +2 -3
- package/dist-es/commands/DescribeChannelCommand.js +2 -3
- package/dist-es/commands/DescribeHarvestJobCommand.js +2 -3
- package/dist-es/commands/DescribeOriginEndpointCommand.js +2 -3
- package/dist-es/commands/ListChannelsCommand.js +2 -3
- package/dist-es/commands/ListHarvestJobsCommand.js +2 -3
- package/dist-es/commands/ListOriginEndpointsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/RotateChannelCredentialsCommand.js +2 -3
- package/dist-es/commands/RotateIngestEndpointCredentialsCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateChannelCommand.js +2 -3
- package/dist-es/commands/UpdateOriginEndpointCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -177
- package/dist-types/MediaPackage.d.ts +26 -0
- package/dist-types/MediaPackageClient.d.ts +24 -4
- package/dist-types/commands/ConfigureLogsCommand.d.ts +16 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +16 -0
- package/dist-types/commands/CreateHarvestJobCommand.d.ts +16 -0
- package/dist-types/commands/CreateOriginEndpointCommand.d.ts +16 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteOriginEndpointCommand.d.ts +16 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +16 -0
- package/dist-types/commands/DescribeHarvestJobCommand.d.ts +16 -0
- package/dist-types/commands/DescribeOriginEndpointCommand.d.ts +16 -0
- package/dist-types/commands/ListChannelsCommand.d.ts +16 -0
- package/dist-types/commands/ListHarvestJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListOriginEndpointsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +13 -0
- package/dist-types/commands/RotateChannelCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/RotateIngestEndpointCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +13 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +13 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +16 -0
- package/dist-types/commands/UpdateOriginEndpointCommand.d.ts +16 -0
- package/dist-types/models/MediaPackageServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +173 -236
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListChannelsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListHarvestJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOriginEndpointsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -161
- package/package.json +4 -3
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { MediaPackageServiceException as __BaseException } from "./MediaPackageServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export declare enum __AdTriggersElement {
|
|
4
7
|
BREAK = "BREAK",
|
|
5
8
|
DISTRIBUTOR_ADVERTISEMENT = "DISTRIBUTOR_ADVERTISEMENT",
|
|
@@ -10,10 +13,14 @@ export declare enum __AdTriggersElement {
|
|
|
10
13
|
PROVIDER_PLACEMENT_OPPORTUNITY = "PROVIDER_PLACEMENT_OPPORTUNITY",
|
|
11
14
|
SPLICE_INSERT = "SPLICE_INSERT"
|
|
12
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
13
19
|
export declare enum __PeriodTriggersElement {
|
|
14
20
|
ADS = "ADS"
|
|
15
21
|
}
|
|
16
22
|
/**
|
|
23
|
+
* @public
|
|
17
24
|
* Configure egress access logging.
|
|
18
25
|
*/
|
|
19
26
|
export interface EgressAccessLogs {
|
|
@@ -23,6 +30,7 @@ export interface EgressAccessLogs {
|
|
|
23
30
|
LogGroupName?: string;
|
|
24
31
|
}
|
|
25
32
|
/**
|
|
33
|
+
* @public
|
|
26
34
|
* An endpoint for ingesting source content for a Channel.
|
|
27
35
|
*/
|
|
28
36
|
export interface IngestEndpoint {
|
|
@@ -44,6 +52,7 @@ export interface IngestEndpoint {
|
|
|
44
52
|
Username?: string;
|
|
45
53
|
}
|
|
46
54
|
/**
|
|
55
|
+
* @public
|
|
47
56
|
* An HTTP Live Streaming (HLS) ingest resource configuration.
|
|
48
57
|
*/
|
|
49
58
|
export interface HlsIngest {
|
|
@@ -53,6 +62,7 @@ export interface HlsIngest {
|
|
|
53
62
|
IngestEndpoints?: IngestEndpoint[];
|
|
54
63
|
}
|
|
55
64
|
/**
|
|
65
|
+
* @public
|
|
56
66
|
* Configure ingress access logging.
|
|
57
67
|
*/
|
|
58
68
|
export interface IngressAccessLogs {
|
|
@@ -62,6 +72,7 @@ export interface IngressAccessLogs {
|
|
|
62
72
|
LogGroupName?: string;
|
|
63
73
|
}
|
|
64
74
|
/**
|
|
75
|
+
* @public
|
|
65
76
|
* A Channel resource configuration.
|
|
66
77
|
*/
|
|
67
78
|
export interface Channel {
|
|
@@ -99,6 +110,7 @@ export interface Channel {
|
|
|
99
110
|
Tags?: Record<string, string>;
|
|
100
111
|
}
|
|
101
112
|
/**
|
|
113
|
+
* @public
|
|
102
114
|
* Configuration parameters for where in an S3 bucket to place the harvested content
|
|
103
115
|
*/
|
|
104
116
|
export interface S3Destination {
|
|
@@ -115,12 +127,16 @@ export interface S3Destination {
|
|
|
115
127
|
*/
|
|
116
128
|
RoleArn: string | undefined;
|
|
117
129
|
}
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
118
133
|
export declare enum Status {
|
|
119
134
|
FAILED = "FAILED",
|
|
120
135
|
IN_PROGRESS = "IN_PROGRESS",
|
|
121
136
|
SUCCEEDED = "SUCCEEDED"
|
|
122
137
|
}
|
|
123
138
|
/**
|
|
139
|
+
* @public
|
|
124
140
|
* A HarvestJob resource configuration
|
|
125
141
|
*/
|
|
126
142
|
export interface HarvestJob {
|
|
@@ -165,24 +181,34 @@ export interface HarvestJob {
|
|
|
165
181
|
*/
|
|
166
182
|
Status?: Status | string;
|
|
167
183
|
}
|
|
184
|
+
/**
|
|
185
|
+
* @public
|
|
186
|
+
*/
|
|
168
187
|
export declare enum AdMarkers {
|
|
169
188
|
DATERANGE = "DATERANGE",
|
|
170
189
|
NONE = "NONE",
|
|
171
190
|
PASSTHROUGH = "PASSTHROUGH",
|
|
172
191
|
SCTE35_ENHANCED = "SCTE35_ENHANCED"
|
|
173
192
|
}
|
|
193
|
+
/**
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
174
196
|
export declare enum AdsOnDeliveryRestrictions {
|
|
175
197
|
BOTH = "BOTH",
|
|
176
198
|
NONE = "NONE",
|
|
177
199
|
RESTRICTED = "RESTRICTED",
|
|
178
200
|
UNRESTRICTED = "UNRESTRICTED"
|
|
179
201
|
}
|
|
202
|
+
/**
|
|
203
|
+
* @public
|
|
204
|
+
*/
|
|
180
205
|
export declare enum PlaylistType {
|
|
181
206
|
EVENT = "EVENT",
|
|
182
207
|
NONE = "NONE",
|
|
183
208
|
VOD = "VOD"
|
|
184
209
|
}
|
|
185
210
|
/**
|
|
211
|
+
* @public
|
|
186
212
|
* A HTTP Live Streaming (HLS) manifest configuration.
|
|
187
213
|
*/
|
|
188
214
|
export interface HlsManifest {
|
|
@@ -255,6 +281,7 @@ export interface HlsManifest {
|
|
|
255
281
|
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions | string;
|
|
256
282
|
}
|
|
257
283
|
/**
|
|
284
|
+
* @public
|
|
258
285
|
* A HTTP Live Streaming (HLS) manifest configuration.
|
|
259
286
|
*/
|
|
260
287
|
export interface HlsManifestCreateOrUpdateParameters {
|
|
@@ -323,6 +350,7 @@ export interface HlsManifestCreateOrUpdateParameters {
|
|
|
323
350
|
ProgramDateTimeIntervalSeconds?: number;
|
|
324
351
|
}
|
|
325
352
|
/**
|
|
353
|
+
* @public
|
|
326
354
|
* CDN Authorization credentials
|
|
327
355
|
*/
|
|
328
356
|
export interface Authorization {
|
|
@@ -335,10 +363,16 @@ export interface Authorization {
|
|
|
335
363
|
*/
|
|
336
364
|
SecretsRoleArn: string | undefined;
|
|
337
365
|
}
|
|
366
|
+
/**
|
|
367
|
+
* @public
|
|
368
|
+
*/
|
|
338
369
|
export declare enum CmafEncryptionMethod {
|
|
339
370
|
AES_CTR = "AES_CTR",
|
|
340
371
|
SAMPLE_AES = "SAMPLE_AES"
|
|
341
372
|
}
|
|
373
|
+
/**
|
|
374
|
+
* @public
|
|
375
|
+
*/
|
|
342
376
|
export declare enum PresetSpeke20Audio {
|
|
343
377
|
PRESET_AUDIO_1 = "PRESET-AUDIO-1",
|
|
344
378
|
PRESET_AUDIO_2 = "PRESET-AUDIO-2",
|
|
@@ -346,6 +380,9 @@ export declare enum PresetSpeke20Audio {
|
|
|
346
380
|
SHARED = "SHARED",
|
|
347
381
|
UNENCRYPTED = "UNENCRYPTED"
|
|
348
382
|
}
|
|
383
|
+
/**
|
|
384
|
+
* @public
|
|
385
|
+
*/
|
|
349
386
|
export declare enum PresetSpeke20Video {
|
|
350
387
|
PRESET_VIDEO_1 = "PRESET-VIDEO-1",
|
|
351
388
|
PRESET_VIDEO_2 = "PRESET-VIDEO-2",
|
|
@@ -359,6 +396,7 @@ export declare enum PresetSpeke20Video {
|
|
|
359
396
|
UNENCRYPTED = "UNENCRYPTED"
|
|
360
397
|
}
|
|
361
398
|
/**
|
|
399
|
+
* @public
|
|
362
400
|
* Use encryptionContractConfiguration to configure one or more content encryption keys for your endpoints that use SPEKE 2.0.
|
|
363
401
|
* The encryption contract defines which content keys are used to encrypt the audio and video tracks in your stream.
|
|
364
402
|
* To configure the encryption contract, specify which audio and video encryption presets to use.
|
|
@@ -377,6 +415,7 @@ export interface EncryptionContractConfiguration {
|
|
|
377
415
|
PresetSpeke20Video: PresetSpeke20Video | string | undefined;
|
|
378
416
|
}
|
|
379
417
|
/**
|
|
418
|
+
* @public
|
|
380
419
|
* A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
|
|
381
420
|
*/
|
|
382
421
|
export interface SpekeKeyProvider {
|
|
@@ -414,6 +453,7 @@ export interface SpekeKeyProvider {
|
|
|
414
453
|
Url: string | undefined;
|
|
415
454
|
}
|
|
416
455
|
/**
|
|
456
|
+
* @public
|
|
417
457
|
* A Common Media Application Format (CMAF) encryption configuration.
|
|
418
458
|
*/
|
|
419
459
|
export interface CmafEncryption {
|
|
@@ -434,12 +474,16 @@ export interface CmafEncryption {
|
|
|
434
474
|
*/
|
|
435
475
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
436
476
|
}
|
|
477
|
+
/**
|
|
478
|
+
* @public
|
|
479
|
+
*/
|
|
437
480
|
export declare enum StreamOrder {
|
|
438
481
|
ORIGINAL = "ORIGINAL",
|
|
439
482
|
VIDEO_BITRATE_ASCENDING = "VIDEO_BITRATE_ASCENDING",
|
|
440
483
|
VIDEO_BITRATE_DESCENDING = "VIDEO_BITRATE_DESCENDING"
|
|
441
484
|
}
|
|
442
485
|
/**
|
|
486
|
+
* @public
|
|
443
487
|
* A StreamSelection configuration.
|
|
444
488
|
*/
|
|
445
489
|
export interface StreamSelection {
|
|
@@ -457,6 +501,7 @@ export interface StreamSelection {
|
|
|
457
501
|
StreamOrder?: StreamOrder | string;
|
|
458
502
|
}
|
|
459
503
|
/**
|
|
504
|
+
* @public
|
|
460
505
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
461
506
|
*/
|
|
462
507
|
export interface CmafPackage {
|
|
@@ -483,6 +528,7 @@ export interface CmafPackage {
|
|
|
483
528
|
StreamSelection?: StreamSelection;
|
|
484
529
|
}
|
|
485
530
|
/**
|
|
531
|
+
* @public
|
|
486
532
|
* A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
|
|
487
533
|
*/
|
|
488
534
|
export interface DashEncryption {
|
|
@@ -495,21 +541,33 @@ export interface DashEncryption {
|
|
|
495
541
|
*/
|
|
496
542
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
497
543
|
}
|
|
544
|
+
/**
|
|
545
|
+
* @public
|
|
546
|
+
*/
|
|
498
547
|
export declare enum ManifestLayout {
|
|
499
548
|
COMPACT = "COMPACT",
|
|
500
549
|
FULL = "FULL"
|
|
501
550
|
}
|
|
551
|
+
/**
|
|
552
|
+
* @public
|
|
553
|
+
*/
|
|
502
554
|
export declare enum Profile {
|
|
503
555
|
DVB_DASH_2014 = "DVB_DASH_2014",
|
|
504
556
|
HBBTV_1_5 = "HBBTV_1_5",
|
|
505
557
|
HYBRIDCAST = "HYBRIDCAST",
|
|
506
558
|
NONE = "NONE"
|
|
507
559
|
}
|
|
560
|
+
/**
|
|
561
|
+
* @public
|
|
562
|
+
*/
|
|
508
563
|
export declare enum SegmentTemplateFormat {
|
|
509
564
|
NUMBER_WITH_DURATION = "NUMBER_WITH_DURATION",
|
|
510
565
|
NUMBER_WITH_TIMELINE = "NUMBER_WITH_TIMELINE",
|
|
511
566
|
TIME_WITH_TIMELINE = "TIME_WITH_TIMELINE"
|
|
512
567
|
}
|
|
568
|
+
/**
|
|
569
|
+
* @public
|
|
570
|
+
*/
|
|
513
571
|
export declare enum UtcTiming {
|
|
514
572
|
HTTP_HEAD = "HTTP-HEAD",
|
|
515
573
|
HTTP_ISO = "HTTP-ISO",
|
|
@@ -517,6 +575,7 @@ export declare enum UtcTiming {
|
|
|
517
575
|
NONE = "NONE"
|
|
518
576
|
}
|
|
519
577
|
/**
|
|
578
|
+
* @public
|
|
520
579
|
* A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
|
|
521
580
|
*/
|
|
522
581
|
export interface DashPackage {
|
|
@@ -598,11 +657,15 @@ export interface DashPackage {
|
|
|
598
657
|
*/
|
|
599
658
|
UtcTimingUri?: string;
|
|
600
659
|
}
|
|
660
|
+
/**
|
|
661
|
+
* @public
|
|
662
|
+
*/
|
|
601
663
|
export declare enum EncryptionMethod {
|
|
602
664
|
AES_128 = "AES_128",
|
|
603
665
|
SAMPLE_AES = "SAMPLE_AES"
|
|
604
666
|
}
|
|
605
667
|
/**
|
|
668
|
+
* @public
|
|
606
669
|
* An HTTP Live Streaming (HLS) encryption configuration.
|
|
607
670
|
*/
|
|
608
671
|
export interface HlsEncryption {
|
|
@@ -629,6 +692,7 @@ export interface HlsEncryption {
|
|
|
629
692
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
630
693
|
}
|
|
631
694
|
/**
|
|
695
|
+
* @public
|
|
632
696
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
633
697
|
*/
|
|
634
698
|
export interface HlsPackage {
|
|
@@ -710,6 +774,7 @@ export interface HlsPackage {
|
|
|
710
774
|
UseAudioRenditionGroup?: boolean;
|
|
711
775
|
}
|
|
712
776
|
/**
|
|
777
|
+
* @public
|
|
713
778
|
* A Microsoft Smooth Streaming (MSS) encryption configuration.
|
|
714
779
|
*/
|
|
715
780
|
export interface MssEncryption {
|
|
@@ -719,6 +784,7 @@ export interface MssEncryption {
|
|
|
719
784
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
720
785
|
}
|
|
721
786
|
/**
|
|
787
|
+
* @public
|
|
722
788
|
* A Microsoft Smooth Streaming (MSS) packaging configuration.
|
|
723
789
|
*/
|
|
724
790
|
export interface MssPackage {
|
|
@@ -739,11 +805,15 @@ export interface MssPackage {
|
|
|
739
805
|
*/
|
|
740
806
|
StreamSelection?: StreamSelection;
|
|
741
807
|
}
|
|
808
|
+
/**
|
|
809
|
+
* @public
|
|
810
|
+
*/
|
|
742
811
|
export declare enum Origination {
|
|
743
812
|
ALLOW = "ALLOW",
|
|
744
813
|
DENY = "DENY"
|
|
745
814
|
}
|
|
746
815
|
/**
|
|
816
|
+
* @public
|
|
747
817
|
* An OriginEndpoint resource configuration.
|
|
748
818
|
*/
|
|
749
819
|
export interface OriginEndpoint {
|
|
@@ -821,6 +891,7 @@ export interface OriginEndpoint {
|
|
|
821
891
|
Whitelist?: string[];
|
|
822
892
|
}
|
|
823
893
|
/**
|
|
894
|
+
* @public
|
|
824
895
|
* A Common Media Application Format (CMAF) packaging configuration.
|
|
825
896
|
*/
|
|
826
897
|
export interface CmafPackageCreateOrUpdateParameters {
|
|
@@ -847,6 +918,7 @@ export interface CmafPackageCreateOrUpdateParameters {
|
|
|
847
918
|
StreamSelection?: StreamSelection;
|
|
848
919
|
}
|
|
849
920
|
/**
|
|
921
|
+
* @public
|
|
850
922
|
* the option to configure log subscription.
|
|
851
923
|
*/
|
|
852
924
|
export interface ConfigureLogsRequest {
|
|
@@ -863,6 +935,9 @@ export interface ConfigureLogsRequest {
|
|
|
863
935
|
*/
|
|
864
936
|
IngressAccessLogs?: IngressAccessLogs;
|
|
865
937
|
}
|
|
938
|
+
/**
|
|
939
|
+
* @public
|
|
940
|
+
*/
|
|
866
941
|
export interface ConfigureLogsResponse {
|
|
867
942
|
/**
|
|
868
943
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
@@ -898,6 +973,7 @@ export interface ConfigureLogsResponse {
|
|
|
898
973
|
Tags?: Record<string, string>;
|
|
899
974
|
}
|
|
900
975
|
/**
|
|
976
|
+
* @public
|
|
901
977
|
* The client is not authorized to access the requested resource.
|
|
902
978
|
*/
|
|
903
979
|
export declare class ForbiddenException extends __BaseException {
|
|
@@ -910,6 +986,7 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
910
986
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
911
987
|
}
|
|
912
988
|
/**
|
|
989
|
+
* @public
|
|
913
990
|
* An unexpected error occurred.
|
|
914
991
|
*/
|
|
915
992
|
export declare class InternalServerErrorException extends __BaseException {
|
|
@@ -922,6 +999,7 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
922
999
|
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
923
1000
|
}
|
|
924
1001
|
/**
|
|
1002
|
+
* @public
|
|
925
1003
|
* The requested resource does not exist.
|
|
926
1004
|
*/
|
|
927
1005
|
export declare class NotFoundException extends __BaseException {
|
|
@@ -934,6 +1012,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
934
1012
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
935
1013
|
}
|
|
936
1014
|
/**
|
|
1015
|
+
* @public
|
|
937
1016
|
* An unexpected error occurred.
|
|
938
1017
|
*/
|
|
939
1018
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
@@ -946,6 +1025,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
946
1025
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
947
1026
|
}
|
|
948
1027
|
/**
|
|
1028
|
+
* @public
|
|
949
1029
|
* The client has exceeded their resource or throttling limits.
|
|
950
1030
|
*/
|
|
951
1031
|
export declare class TooManyRequestsException extends __BaseException {
|
|
@@ -958,6 +1038,7 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
958
1038
|
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
959
1039
|
}
|
|
960
1040
|
/**
|
|
1041
|
+
* @public
|
|
961
1042
|
* The parameters sent in the request are not valid.
|
|
962
1043
|
*/
|
|
963
1044
|
export declare class UnprocessableEntityException extends __BaseException {
|
|
@@ -970,6 +1051,7 @@ export declare class UnprocessableEntityException extends __BaseException {
|
|
|
970
1051
|
constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
|
|
971
1052
|
}
|
|
972
1053
|
/**
|
|
1054
|
+
* @public
|
|
973
1055
|
* A new Channel configuration.
|
|
974
1056
|
*/
|
|
975
1057
|
export interface CreateChannelRequest {
|
|
@@ -987,6 +1069,9 @@ export interface CreateChannelRequest {
|
|
|
987
1069
|
*/
|
|
988
1070
|
Tags?: Record<string, string>;
|
|
989
1071
|
}
|
|
1072
|
+
/**
|
|
1073
|
+
* @public
|
|
1074
|
+
*/
|
|
990
1075
|
export interface CreateChannelResponse {
|
|
991
1076
|
/**
|
|
992
1077
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
@@ -1022,6 +1107,7 @@ export interface CreateChannelResponse {
|
|
|
1022
1107
|
Tags?: Record<string, string>;
|
|
1023
1108
|
}
|
|
1024
1109
|
/**
|
|
1110
|
+
* @public
|
|
1025
1111
|
* Configuration parameters used to create a new HarvestJob.
|
|
1026
1112
|
*/
|
|
1027
1113
|
export interface CreateHarvestJobRequest {
|
|
@@ -1048,6 +1134,9 @@ export interface CreateHarvestJobRequest {
|
|
|
1048
1134
|
*/
|
|
1049
1135
|
StartTime: string | undefined;
|
|
1050
1136
|
}
|
|
1137
|
+
/**
|
|
1138
|
+
* @public
|
|
1139
|
+
*/
|
|
1051
1140
|
export interface CreateHarvestJobResponse {
|
|
1052
1141
|
/**
|
|
1053
1142
|
* The Amazon Resource Name (ARN) assigned to the HarvestJob.
|
|
@@ -1091,6 +1180,7 @@ export interface CreateHarvestJobResponse {
|
|
|
1091
1180
|
Status?: Status | string;
|
|
1092
1181
|
}
|
|
1093
1182
|
/**
|
|
1183
|
+
* @public
|
|
1094
1184
|
* Configuration parameters used to create a new OriginEndpoint.
|
|
1095
1185
|
*/
|
|
1096
1186
|
export interface CreateOriginEndpointRequest {
|
|
@@ -1157,6 +1247,9 @@ export interface CreateOriginEndpointRequest {
|
|
|
1157
1247
|
*/
|
|
1158
1248
|
Whitelist?: string[];
|
|
1159
1249
|
}
|
|
1250
|
+
/**
|
|
1251
|
+
* @public
|
|
1252
|
+
*/
|
|
1160
1253
|
export interface CreateOriginEndpointResponse {
|
|
1161
1254
|
/**
|
|
1162
1255
|
* The Amazon Resource Name (ARN) assigned to the OriginEndpoint.
|
|
@@ -1231,28 +1324,46 @@ export interface CreateOriginEndpointResponse {
|
|
|
1231
1324
|
*/
|
|
1232
1325
|
Whitelist?: string[];
|
|
1233
1326
|
}
|
|
1327
|
+
/**
|
|
1328
|
+
* @public
|
|
1329
|
+
*/
|
|
1234
1330
|
export interface DeleteChannelRequest {
|
|
1235
1331
|
/**
|
|
1236
1332
|
* The ID of the Channel to delete.
|
|
1237
1333
|
*/
|
|
1238
1334
|
Id: string | undefined;
|
|
1239
1335
|
}
|
|
1336
|
+
/**
|
|
1337
|
+
* @public
|
|
1338
|
+
*/
|
|
1240
1339
|
export interface DeleteChannelResponse {
|
|
1241
1340
|
}
|
|
1341
|
+
/**
|
|
1342
|
+
* @public
|
|
1343
|
+
*/
|
|
1242
1344
|
export interface DeleteOriginEndpointRequest {
|
|
1243
1345
|
/**
|
|
1244
1346
|
* The ID of the OriginEndpoint to delete.
|
|
1245
1347
|
*/
|
|
1246
1348
|
Id: string | undefined;
|
|
1247
1349
|
}
|
|
1350
|
+
/**
|
|
1351
|
+
* @public
|
|
1352
|
+
*/
|
|
1248
1353
|
export interface DeleteOriginEndpointResponse {
|
|
1249
1354
|
}
|
|
1355
|
+
/**
|
|
1356
|
+
* @public
|
|
1357
|
+
*/
|
|
1250
1358
|
export interface DescribeChannelRequest {
|
|
1251
1359
|
/**
|
|
1252
1360
|
* The ID of a Channel.
|
|
1253
1361
|
*/
|
|
1254
1362
|
Id: string | undefined;
|
|
1255
1363
|
}
|
|
1364
|
+
/**
|
|
1365
|
+
* @public
|
|
1366
|
+
*/
|
|
1256
1367
|
export interface DescribeChannelResponse {
|
|
1257
1368
|
/**
|
|
1258
1369
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
@@ -1287,12 +1398,18 @@ export interface DescribeChannelResponse {
|
|
|
1287
1398
|
*/
|
|
1288
1399
|
Tags?: Record<string, string>;
|
|
1289
1400
|
}
|
|
1401
|
+
/**
|
|
1402
|
+
* @public
|
|
1403
|
+
*/
|
|
1290
1404
|
export interface DescribeHarvestJobRequest {
|
|
1291
1405
|
/**
|
|
1292
1406
|
* The ID of the HarvestJob.
|
|
1293
1407
|
*/
|
|
1294
1408
|
Id: string | undefined;
|
|
1295
1409
|
}
|
|
1410
|
+
/**
|
|
1411
|
+
* @public
|
|
1412
|
+
*/
|
|
1296
1413
|
export interface DescribeHarvestJobResponse {
|
|
1297
1414
|
/**
|
|
1298
1415
|
* The Amazon Resource Name (ARN) assigned to the HarvestJob.
|
|
@@ -1335,12 +1452,18 @@ export interface DescribeHarvestJobResponse {
|
|
|
1335
1452
|
*/
|
|
1336
1453
|
Status?: Status | string;
|
|
1337
1454
|
}
|
|
1455
|
+
/**
|
|
1456
|
+
* @public
|
|
1457
|
+
*/
|
|
1338
1458
|
export interface DescribeOriginEndpointRequest {
|
|
1339
1459
|
/**
|
|
1340
1460
|
* The ID of the OriginEndpoint.
|
|
1341
1461
|
*/
|
|
1342
1462
|
Id: string | undefined;
|
|
1343
1463
|
}
|
|
1464
|
+
/**
|
|
1465
|
+
* @public
|
|
1466
|
+
*/
|
|
1344
1467
|
export interface DescribeOriginEndpointResponse {
|
|
1345
1468
|
/**
|
|
1346
1469
|
* The Amazon Resource Name (ARN) assigned to the OriginEndpoint.
|
|
@@ -1415,6 +1538,9 @@ export interface DescribeOriginEndpointResponse {
|
|
|
1415
1538
|
*/
|
|
1416
1539
|
Whitelist?: string[];
|
|
1417
1540
|
}
|
|
1541
|
+
/**
|
|
1542
|
+
* @public
|
|
1543
|
+
*/
|
|
1418
1544
|
export interface ListChannelsRequest {
|
|
1419
1545
|
/**
|
|
1420
1546
|
* Upper bound on number of records to return.
|
|
@@ -1425,6 +1551,9 @@ export interface ListChannelsRequest {
|
|
|
1425
1551
|
*/
|
|
1426
1552
|
NextToken?: string;
|
|
1427
1553
|
}
|
|
1554
|
+
/**
|
|
1555
|
+
* @public
|
|
1556
|
+
*/
|
|
1428
1557
|
export interface ListChannelsResponse {
|
|
1429
1558
|
/**
|
|
1430
1559
|
* A list of Channel records.
|
|
@@ -1435,6 +1564,9 @@ export interface ListChannelsResponse {
|
|
|
1435
1564
|
*/
|
|
1436
1565
|
NextToken?: string;
|
|
1437
1566
|
}
|
|
1567
|
+
/**
|
|
1568
|
+
* @public
|
|
1569
|
+
*/
|
|
1438
1570
|
export interface ListHarvestJobsRequest {
|
|
1439
1571
|
/**
|
|
1440
1572
|
* When specified, the request will return only HarvestJobs associated with the given Channel ID.
|
|
@@ -1453,6 +1585,9 @@ export interface ListHarvestJobsRequest {
|
|
|
1453
1585
|
*/
|
|
1454
1586
|
NextToken?: string;
|
|
1455
1587
|
}
|
|
1588
|
+
/**
|
|
1589
|
+
* @public
|
|
1590
|
+
*/
|
|
1456
1591
|
export interface ListHarvestJobsResponse {
|
|
1457
1592
|
/**
|
|
1458
1593
|
* A list of HarvestJob records.
|
|
@@ -1463,6 +1598,9 @@ export interface ListHarvestJobsResponse {
|
|
|
1463
1598
|
*/
|
|
1464
1599
|
NextToken?: string;
|
|
1465
1600
|
}
|
|
1601
|
+
/**
|
|
1602
|
+
* @public
|
|
1603
|
+
*/
|
|
1466
1604
|
export interface ListOriginEndpointsRequest {
|
|
1467
1605
|
/**
|
|
1468
1606
|
* When specified, the request will return only OriginEndpoints associated with the given Channel ID.
|
|
@@ -1477,6 +1615,9 @@ export interface ListOriginEndpointsRequest {
|
|
|
1477
1615
|
*/
|
|
1478
1616
|
NextToken?: string;
|
|
1479
1617
|
}
|
|
1618
|
+
/**
|
|
1619
|
+
* @public
|
|
1620
|
+
*/
|
|
1480
1621
|
export interface ListOriginEndpointsResponse {
|
|
1481
1622
|
/**
|
|
1482
1623
|
* A token that can be used to resume pagination from the end of the collection.
|
|
@@ -1487,18 +1628,30 @@ export interface ListOriginEndpointsResponse {
|
|
|
1487
1628
|
*/
|
|
1488
1629
|
OriginEndpoints?: OriginEndpoint[];
|
|
1489
1630
|
}
|
|
1631
|
+
/**
|
|
1632
|
+
* @public
|
|
1633
|
+
*/
|
|
1490
1634
|
export interface ListTagsForResourceRequest {
|
|
1491
1635
|
ResourceArn: string | undefined;
|
|
1492
1636
|
}
|
|
1637
|
+
/**
|
|
1638
|
+
* @public
|
|
1639
|
+
*/
|
|
1493
1640
|
export interface ListTagsForResourceResponse {
|
|
1494
1641
|
Tags?: Record<string, string>;
|
|
1495
1642
|
}
|
|
1643
|
+
/**
|
|
1644
|
+
* @public
|
|
1645
|
+
*/
|
|
1496
1646
|
export interface RotateChannelCredentialsRequest {
|
|
1497
1647
|
/**
|
|
1498
1648
|
* The ID of the channel to update.
|
|
1499
1649
|
*/
|
|
1500
1650
|
Id: string | undefined;
|
|
1501
1651
|
}
|
|
1652
|
+
/**
|
|
1653
|
+
* @public
|
|
1654
|
+
*/
|
|
1502
1655
|
export interface RotateChannelCredentialsResponse {
|
|
1503
1656
|
/**
|
|
1504
1657
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
@@ -1533,6 +1686,9 @@ export interface RotateChannelCredentialsResponse {
|
|
|
1533
1686
|
*/
|
|
1534
1687
|
Tags?: Record<string, string>;
|
|
1535
1688
|
}
|
|
1689
|
+
/**
|
|
1690
|
+
* @public
|
|
1691
|
+
*/
|
|
1536
1692
|
export interface RotateIngestEndpointCredentialsRequest {
|
|
1537
1693
|
/**
|
|
1538
1694
|
* The ID of the channel the IngestEndpoint is on.
|
|
@@ -1543,6 +1699,9 @@ export interface RotateIngestEndpointCredentialsRequest {
|
|
|
1543
1699
|
*/
|
|
1544
1700
|
IngestEndpointId: string | undefined;
|
|
1545
1701
|
}
|
|
1702
|
+
/**
|
|
1703
|
+
* @public
|
|
1704
|
+
*/
|
|
1546
1705
|
export interface RotateIngestEndpointCredentialsResponse {
|
|
1547
1706
|
/**
|
|
1548
1707
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
@@ -1577,10 +1736,16 @@ export interface RotateIngestEndpointCredentialsResponse {
|
|
|
1577
1736
|
*/
|
|
1578
1737
|
Tags?: Record<string, string>;
|
|
1579
1738
|
}
|
|
1739
|
+
/**
|
|
1740
|
+
* @public
|
|
1741
|
+
*/
|
|
1580
1742
|
export interface TagResourceRequest {
|
|
1581
1743
|
ResourceArn: string | undefined;
|
|
1582
1744
|
Tags: Record<string, string> | undefined;
|
|
1583
1745
|
}
|
|
1746
|
+
/**
|
|
1747
|
+
* @public
|
|
1748
|
+
*/
|
|
1584
1749
|
export interface UntagResourceRequest {
|
|
1585
1750
|
ResourceArn: string | undefined;
|
|
1586
1751
|
/**
|
|
@@ -1589,6 +1754,7 @@ export interface UntagResourceRequest {
|
|
|
1589
1754
|
TagKeys: string[] | undefined;
|
|
1590
1755
|
}
|
|
1591
1756
|
/**
|
|
1757
|
+
* @public
|
|
1592
1758
|
* Configuration parameters used to update the Channel.
|
|
1593
1759
|
*/
|
|
1594
1760
|
export interface UpdateChannelRequest {
|
|
@@ -1601,6 +1767,9 @@ export interface UpdateChannelRequest {
|
|
|
1601
1767
|
*/
|
|
1602
1768
|
Id: string | undefined;
|
|
1603
1769
|
}
|
|
1770
|
+
/**
|
|
1771
|
+
* @public
|
|
1772
|
+
*/
|
|
1604
1773
|
export interface UpdateChannelResponse {
|
|
1605
1774
|
/**
|
|
1606
1775
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
@@ -1636,6 +1805,7 @@ export interface UpdateChannelResponse {
|
|
|
1636
1805
|
Tags?: Record<string, string>;
|
|
1637
1806
|
}
|
|
1638
1807
|
/**
|
|
1808
|
+
* @public
|
|
1639
1809
|
* Configuration parameters used to update an existing OriginEndpoint.
|
|
1640
1810
|
*/
|
|
1641
1811
|
export interface UpdateOriginEndpointRequest {
|
|
@@ -1692,6 +1862,9 @@ export interface UpdateOriginEndpointRequest {
|
|
|
1692
1862
|
*/
|
|
1693
1863
|
Whitelist?: string[];
|
|
1694
1864
|
}
|
|
1865
|
+
/**
|
|
1866
|
+
* @public
|
|
1867
|
+
*/
|
|
1695
1868
|
export interface UpdateOriginEndpointResponse {
|
|
1696
1869
|
/**
|
|
1697
1870
|
* The Amazon Resource Name (ARN) assigned to the OriginEndpoint.
|
|
@@ -1766,239 +1939,3 @@ export interface UpdateOriginEndpointResponse {
|
|
|
1766
1939
|
*/
|
|
1767
1940
|
Whitelist?: string[];
|
|
1768
1941
|
}
|
|
1769
|
-
/**
|
|
1770
|
-
* @internal
|
|
1771
|
-
*/
|
|
1772
|
-
export declare const EgressAccessLogsFilterSensitiveLog: (obj: EgressAccessLogs) => any;
|
|
1773
|
-
/**
|
|
1774
|
-
* @internal
|
|
1775
|
-
*/
|
|
1776
|
-
export declare const IngestEndpointFilterSensitiveLog: (obj: IngestEndpoint) => any;
|
|
1777
|
-
/**
|
|
1778
|
-
* @internal
|
|
1779
|
-
*/
|
|
1780
|
-
export declare const HlsIngestFilterSensitiveLog: (obj: HlsIngest) => any;
|
|
1781
|
-
/**
|
|
1782
|
-
* @internal
|
|
1783
|
-
*/
|
|
1784
|
-
export declare const IngressAccessLogsFilterSensitiveLog: (obj: IngressAccessLogs) => any;
|
|
1785
|
-
/**
|
|
1786
|
-
* @internal
|
|
1787
|
-
*/
|
|
1788
|
-
export declare const ChannelFilterSensitiveLog: (obj: Channel) => any;
|
|
1789
|
-
/**
|
|
1790
|
-
* @internal
|
|
1791
|
-
*/
|
|
1792
|
-
export declare const S3DestinationFilterSensitiveLog: (obj: S3Destination) => any;
|
|
1793
|
-
/**
|
|
1794
|
-
* @internal
|
|
1795
|
-
*/
|
|
1796
|
-
export declare const HarvestJobFilterSensitiveLog: (obj: HarvestJob) => any;
|
|
1797
|
-
/**
|
|
1798
|
-
* @internal
|
|
1799
|
-
*/
|
|
1800
|
-
export declare const HlsManifestFilterSensitiveLog: (obj: HlsManifest) => any;
|
|
1801
|
-
/**
|
|
1802
|
-
* @internal
|
|
1803
|
-
*/
|
|
1804
|
-
export declare const HlsManifestCreateOrUpdateParametersFilterSensitiveLog: (obj: HlsManifestCreateOrUpdateParameters) => any;
|
|
1805
|
-
/**
|
|
1806
|
-
* @internal
|
|
1807
|
-
*/
|
|
1808
|
-
export declare const AuthorizationFilterSensitiveLog: (obj: Authorization) => any;
|
|
1809
|
-
/**
|
|
1810
|
-
* @internal
|
|
1811
|
-
*/
|
|
1812
|
-
export declare const EncryptionContractConfigurationFilterSensitiveLog: (obj: EncryptionContractConfiguration) => any;
|
|
1813
|
-
/**
|
|
1814
|
-
* @internal
|
|
1815
|
-
*/
|
|
1816
|
-
export declare const SpekeKeyProviderFilterSensitiveLog: (obj: SpekeKeyProvider) => any;
|
|
1817
|
-
/**
|
|
1818
|
-
* @internal
|
|
1819
|
-
*/
|
|
1820
|
-
export declare const CmafEncryptionFilterSensitiveLog: (obj: CmafEncryption) => any;
|
|
1821
|
-
/**
|
|
1822
|
-
* @internal
|
|
1823
|
-
*/
|
|
1824
|
-
export declare const StreamSelectionFilterSensitiveLog: (obj: StreamSelection) => any;
|
|
1825
|
-
/**
|
|
1826
|
-
* @internal
|
|
1827
|
-
*/
|
|
1828
|
-
export declare const CmafPackageFilterSensitiveLog: (obj: CmafPackage) => any;
|
|
1829
|
-
/**
|
|
1830
|
-
* @internal
|
|
1831
|
-
*/
|
|
1832
|
-
export declare const DashEncryptionFilterSensitiveLog: (obj: DashEncryption) => any;
|
|
1833
|
-
/**
|
|
1834
|
-
* @internal
|
|
1835
|
-
*/
|
|
1836
|
-
export declare const DashPackageFilterSensitiveLog: (obj: DashPackage) => any;
|
|
1837
|
-
/**
|
|
1838
|
-
* @internal
|
|
1839
|
-
*/
|
|
1840
|
-
export declare const HlsEncryptionFilterSensitiveLog: (obj: HlsEncryption) => any;
|
|
1841
|
-
/**
|
|
1842
|
-
* @internal
|
|
1843
|
-
*/
|
|
1844
|
-
export declare const HlsPackageFilterSensitiveLog: (obj: HlsPackage) => any;
|
|
1845
|
-
/**
|
|
1846
|
-
* @internal
|
|
1847
|
-
*/
|
|
1848
|
-
export declare const MssEncryptionFilterSensitiveLog: (obj: MssEncryption) => any;
|
|
1849
|
-
/**
|
|
1850
|
-
* @internal
|
|
1851
|
-
*/
|
|
1852
|
-
export declare const MssPackageFilterSensitiveLog: (obj: MssPackage) => any;
|
|
1853
|
-
/**
|
|
1854
|
-
* @internal
|
|
1855
|
-
*/
|
|
1856
|
-
export declare const OriginEndpointFilterSensitiveLog: (obj: OriginEndpoint) => any;
|
|
1857
|
-
/**
|
|
1858
|
-
* @internal
|
|
1859
|
-
*/
|
|
1860
|
-
export declare const CmafPackageCreateOrUpdateParametersFilterSensitiveLog: (obj: CmafPackageCreateOrUpdateParameters) => any;
|
|
1861
|
-
/**
|
|
1862
|
-
* @internal
|
|
1863
|
-
*/
|
|
1864
|
-
export declare const ConfigureLogsRequestFilterSensitiveLog: (obj: ConfigureLogsRequest) => any;
|
|
1865
|
-
/**
|
|
1866
|
-
* @internal
|
|
1867
|
-
*/
|
|
1868
|
-
export declare const ConfigureLogsResponseFilterSensitiveLog: (obj: ConfigureLogsResponse) => any;
|
|
1869
|
-
/**
|
|
1870
|
-
* @internal
|
|
1871
|
-
*/
|
|
1872
|
-
export declare const CreateChannelRequestFilterSensitiveLog: (obj: CreateChannelRequest) => any;
|
|
1873
|
-
/**
|
|
1874
|
-
* @internal
|
|
1875
|
-
*/
|
|
1876
|
-
export declare const CreateChannelResponseFilterSensitiveLog: (obj: CreateChannelResponse) => any;
|
|
1877
|
-
/**
|
|
1878
|
-
* @internal
|
|
1879
|
-
*/
|
|
1880
|
-
export declare const CreateHarvestJobRequestFilterSensitiveLog: (obj: CreateHarvestJobRequest) => any;
|
|
1881
|
-
/**
|
|
1882
|
-
* @internal
|
|
1883
|
-
*/
|
|
1884
|
-
export declare const CreateHarvestJobResponseFilterSensitiveLog: (obj: CreateHarvestJobResponse) => any;
|
|
1885
|
-
/**
|
|
1886
|
-
* @internal
|
|
1887
|
-
*/
|
|
1888
|
-
export declare const CreateOriginEndpointRequestFilterSensitiveLog: (obj: CreateOriginEndpointRequest) => any;
|
|
1889
|
-
/**
|
|
1890
|
-
* @internal
|
|
1891
|
-
*/
|
|
1892
|
-
export declare const CreateOriginEndpointResponseFilterSensitiveLog: (obj: CreateOriginEndpointResponse) => any;
|
|
1893
|
-
/**
|
|
1894
|
-
* @internal
|
|
1895
|
-
*/
|
|
1896
|
-
export declare const DeleteChannelRequestFilterSensitiveLog: (obj: DeleteChannelRequest) => any;
|
|
1897
|
-
/**
|
|
1898
|
-
* @internal
|
|
1899
|
-
*/
|
|
1900
|
-
export declare const DeleteChannelResponseFilterSensitiveLog: (obj: DeleteChannelResponse) => any;
|
|
1901
|
-
/**
|
|
1902
|
-
* @internal
|
|
1903
|
-
*/
|
|
1904
|
-
export declare const DeleteOriginEndpointRequestFilterSensitiveLog: (obj: DeleteOriginEndpointRequest) => any;
|
|
1905
|
-
/**
|
|
1906
|
-
* @internal
|
|
1907
|
-
*/
|
|
1908
|
-
export declare const DeleteOriginEndpointResponseFilterSensitiveLog: (obj: DeleteOriginEndpointResponse) => any;
|
|
1909
|
-
/**
|
|
1910
|
-
* @internal
|
|
1911
|
-
*/
|
|
1912
|
-
export declare const DescribeChannelRequestFilterSensitiveLog: (obj: DescribeChannelRequest) => any;
|
|
1913
|
-
/**
|
|
1914
|
-
* @internal
|
|
1915
|
-
*/
|
|
1916
|
-
export declare const DescribeChannelResponseFilterSensitiveLog: (obj: DescribeChannelResponse) => any;
|
|
1917
|
-
/**
|
|
1918
|
-
* @internal
|
|
1919
|
-
*/
|
|
1920
|
-
export declare const DescribeHarvestJobRequestFilterSensitiveLog: (obj: DescribeHarvestJobRequest) => any;
|
|
1921
|
-
/**
|
|
1922
|
-
* @internal
|
|
1923
|
-
*/
|
|
1924
|
-
export declare const DescribeHarvestJobResponseFilterSensitiveLog: (obj: DescribeHarvestJobResponse) => any;
|
|
1925
|
-
/**
|
|
1926
|
-
* @internal
|
|
1927
|
-
*/
|
|
1928
|
-
export declare const DescribeOriginEndpointRequestFilterSensitiveLog: (obj: DescribeOriginEndpointRequest) => any;
|
|
1929
|
-
/**
|
|
1930
|
-
* @internal
|
|
1931
|
-
*/
|
|
1932
|
-
export declare const DescribeOriginEndpointResponseFilterSensitiveLog: (obj: DescribeOriginEndpointResponse) => any;
|
|
1933
|
-
/**
|
|
1934
|
-
* @internal
|
|
1935
|
-
*/
|
|
1936
|
-
export declare const ListChannelsRequestFilterSensitiveLog: (obj: ListChannelsRequest) => any;
|
|
1937
|
-
/**
|
|
1938
|
-
* @internal
|
|
1939
|
-
*/
|
|
1940
|
-
export declare const ListChannelsResponseFilterSensitiveLog: (obj: ListChannelsResponse) => any;
|
|
1941
|
-
/**
|
|
1942
|
-
* @internal
|
|
1943
|
-
*/
|
|
1944
|
-
export declare const ListHarvestJobsRequestFilterSensitiveLog: (obj: ListHarvestJobsRequest) => any;
|
|
1945
|
-
/**
|
|
1946
|
-
* @internal
|
|
1947
|
-
*/
|
|
1948
|
-
export declare const ListHarvestJobsResponseFilterSensitiveLog: (obj: ListHarvestJobsResponse) => any;
|
|
1949
|
-
/**
|
|
1950
|
-
* @internal
|
|
1951
|
-
*/
|
|
1952
|
-
export declare const ListOriginEndpointsRequestFilterSensitiveLog: (obj: ListOriginEndpointsRequest) => any;
|
|
1953
|
-
/**
|
|
1954
|
-
* @internal
|
|
1955
|
-
*/
|
|
1956
|
-
export declare const ListOriginEndpointsResponseFilterSensitiveLog: (obj: ListOriginEndpointsResponse) => any;
|
|
1957
|
-
/**
|
|
1958
|
-
* @internal
|
|
1959
|
-
*/
|
|
1960
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1961
|
-
/**
|
|
1962
|
-
* @internal
|
|
1963
|
-
*/
|
|
1964
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1965
|
-
/**
|
|
1966
|
-
* @internal
|
|
1967
|
-
*/
|
|
1968
|
-
export declare const RotateChannelCredentialsRequestFilterSensitiveLog: (obj: RotateChannelCredentialsRequest) => any;
|
|
1969
|
-
/**
|
|
1970
|
-
* @internal
|
|
1971
|
-
*/
|
|
1972
|
-
export declare const RotateChannelCredentialsResponseFilterSensitiveLog: (obj: RotateChannelCredentialsResponse) => any;
|
|
1973
|
-
/**
|
|
1974
|
-
* @internal
|
|
1975
|
-
*/
|
|
1976
|
-
export declare const RotateIngestEndpointCredentialsRequestFilterSensitiveLog: (obj: RotateIngestEndpointCredentialsRequest) => any;
|
|
1977
|
-
/**
|
|
1978
|
-
* @internal
|
|
1979
|
-
*/
|
|
1980
|
-
export declare const RotateIngestEndpointCredentialsResponseFilterSensitiveLog: (obj: RotateIngestEndpointCredentialsResponse) => any;
|
|
1981
|
-
/**
|
|
1982
|
-
* @internal
|
|
1983
|
-
*/
|
|
1984
|
-
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1985
|
-
/**
|
|
1986
|
-
* @internal
|
|
1987
|
-
*/
|
|
1988
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1989
|
-
/**
|
|
1990
|
-
* @internal
|
|
1991
|
-
*/
|
|
1992
|
-
export declare const UpdateChannelRequestFilterSensitiveLog: (obj: UpdateChannelRequest) => any;
|
|
1993
|
-
/**
|
|
1994
|
-
* @internal
|
|
1995
|
-
*/
|
|
1996
|
-
export declare const UpdateChannelResponseFilterSensitiveLog: (obj: UpdateChannelResponse) => any;
|
|
1997
|
-
/**
|
|
1998
|
-
* @internal
|
|
1999
|
-
*/
|
|
2000
|
-
export declare const UpdateOriginEndpointRequestFilterSensitiveLog: (obj: UpdateOriginEndpointRequest) => any;
|
|
2001
|
-
/**
|
|
2002
|
-
* @internal
|
|
2003
|
-
*/
|
|
2004
|
-
export declare const UpdateOriginEndpointResponseFilterSensitiveLog: (obj: UpdateOriginEndpointResponse) => any;
|