@aws-sdk/client-mediapackage-vod 3.131.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/CreateAssetCommand.js +2 -2
- package/dist-cjs/commands/CreatePackagingConfigurationCommand.js +2 -2
- package/dist-cjs/commands/CreatePackagingGroupCommand.js +2 -2
- package/dist-cjs/commands/DeleteAssetCommand.js +2 -2
- package/dist-cjs/commands/DeletePackagingConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DeletePackagingGroupCommand.js +2 -2
- package/dist-cjs/commands/DescribeAssetCommand.js +2 -2
- package/dist-cjs/commands/DescribePackagingConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DescribePackagingGroupCommand.js +2 -2
- package/dist-cjs/commands/ListAssetsCommand.js +2 -2
- package/dist-cjs/commands/ListPackagingConfigurationsCommand.js +2 -2
- package/dist-cjs/commands/ListPackagingGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +1 -1
- package/dist-cjs/commands/UntagResourceCommand.js +1 -1
- package/dist-cjs/commands/UpdatePackagingGroupCommand.js +2 -2
- package/dist-cjs/models/models_0.js +206 -308
- package/dist-cjs/protocols/Aws_restJson1.js +248 -486
- package/dist-es/commands/ConfigureLogsCommand.js +3 -3
- package/dist-es/commands/CreateAssetCommand.js +3 -3
- package/dist-es/commands/CreatePackagingConfigurationCommand.js +3 -3
- package/dist-es/commands/CreatePackagingGroupCommand.js +3 -3
- package/dist-es/commands/DeleteAssetCommand.js +3 -3
- package/dist-es/commands/DeletePackagingConfigurationCommand.js +3 -3
- package/dist-es/commands/DeletePackagingGroupCommand.js +3 -3
- package/dist-es/commands/DescribeAssetCommand.js +3 -3
- package/dist-es/commands/DescribePackagingConfigurationCommand.js +3 -3
- package/dist-es/commands/DescribePackagingGroupCommand.js +3 -3
- package/dist-es/commands/ListAssetsCommand.js +3 -3
- package/dist-es/commands/ListPackagingConfigurationsCommand.js +3 -3
- package/dist-es/commands/ListPackagingGroupsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdatePackagingGroupCommand.js +3 -3
- package/dist-es/models/models_0.js +51 -204
- package/dist-es/protocols/Aws_restJson1.js +305 -485
- package/dist-types/models/models_0.d.ts +204 -306
- package/dist-types/ts3.4/models/models_0.d.ts +102 -204
- package/package.json +6 -6
|
@@ -40,12 +40,6 @@ export interface AssetShallow {
|
|
|
40
40
|
*/
|
|
41
41
|
Tags?: Record<string, string>;
|
|
42
42
|
}
|
|
43
|
-
export declare namespace AssetShallow {
|
|
44
|
-
/**
|
|
45
|
-
* @internal
|
|
46
|
-
*/
|
|
47
|
-
const filterSensitiveLog: (obj: AssetShallow) => any;
|
|
48
|
-
}
|
|
49
43
|
export declare enum ManifestLayout {
|
|
50
44
|
COMPACT = "COMPACT",
|
|
51
45
|
FULL = "FULL"
|
|
@@ -80,12 +74,6 @@ export interface StreamSelection {
|
|
|
80
74
|
*/
|
|
81
75
|
StreamOrder?: StreamOrder | string;
|
|
82
76
|
}
|
|
83
|
-
export declare namespace StreamSelection {
|
|
84
|
-
/**
|
|
85
|
-
* @internal
|
|
86
|
-
*/
|
|
87
|
-
const filterSensitiveLog: (obj: StreamSelection) => any;
|
|
88
|
-
}
|
|
89
77
|
/**
|
|
90
78
|
* A DASH manifest configuration.
|
|
91
79
|
*/
|
|
@@ -115,12 +103,6 @@ export interface DashManifest {
|
|
|
115
103
|
*/
|
|
116
104
|
StreamSelection?: StreamSelection;
|
|
117
105
|
}
|
|
118
|
-
export declare namespace DashManifest {
|
|
119
|
-
/**
|
|
120
|
-
* @internal
|
|
121
|
-
*/
|
|
122
|
-
const filterSensitiveLog: (obj: DashManifest) => any;
|
|
123
|
-
}
|
|
124
106
|
/**
|
|
125
107
|
* The endpoint URL used to access an Asset using one PackagingConfiguration.
|
|
126
108
|
*/
|
|
@@ -138,12 +120,6 @@ export interface EgressEndpoint {
|
|
|
138
120
|
*/
|
|
139
121
|
Url?: string;
|
|
140
122
|
}
|
|
141
|
-
export declare namespace EgressEndpoint {
|
|
142
|
-
/**
|
|
143
|
-
* @internal
|
|
144
|
-
*/
|
|
145
|
-
const filterSensitiveLog: (obj: EgressEndpoint) => any;
|
|
146
|
-
}
|
|
147
123
|
export declare enum AdMarkers {
|
|
148
124
|
NONE = "NONE",
|
|
149
125
|
PASSTHROUGH = "PASSTHROUGH",
|
|
@@ -191,12 +167,6 @@ export interface HlsManifest {
|
|
|
191
167
|
*/
|
|
192
168
|
StreamSelection?: StreamSelection;
|
|
193
169
|
}
|
|
194
|
-
export declare namespace HlsManifest {
|
|
195
|
-
/**
|
|
196
|
-
* @internal
|
|
197
|
-
*/
|
|
198
|
-
const filterSensitiveLog: (obj: HlsManifest) => any;
|
|
199
|
-
}
|
|
200
170
|
/**
|
|
201
171
|
* A Microsoft Smooth Streaming (MSS) manifest configuration.
|
|
202
172
|
*/
|
|
@@ -210,12 +180,6 @@ export interface MssManifest {
|
|
|
210
180
|
*/
|
|
211
181
|
StreamSelection?: StreamSelection;
|
|
212
182
|
}
|
|
213
|
-
export declare namespace MssManifest {
|
|
214
|
-
/**
|
|
215
|
-
* @internal
|
|
216
|
-
*/
|
|
217
|
-
const filterSensitiveLog: (obj: MssManifest) => any;
|
|
218
|
-
}
|
|
219
183
|
/**
|
|
220
184
|
* A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
|
|
221
185
|
*/
|
|
@@ -234,12 +198,6 @@ export interface SpekeKeyProvider {
|
|
|
234
198
|
*/
|
|
235
199
|
Url: string | undefined;
|
|
236
200
|
}
|
|
237
|
-
export declare namespace SpekeKeyProvider {
|
|
238
|
-
/**
|
|
239
|
-
* @internal
|
|
240
|
-
*/
|
|
241
|
-
const filterSensitiveLog: (obj: SpekeKeyProvider) => any;
|
|
242
|
-
}
|
|
243
201
|
/**
|
|
244
202
|
* A CMAF encryption configuration.
|
|
245
203
|
*/
|
|
@@ -253,12 +211,6 @@ export interface CmafEncryption {
|
|
|
253
211
|
*/
|
|
254
212
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
255
213
|
}
|
|
256
|
-
export declare namespace CmafEncryption {
|
|
257
|
-
/**
|
|
258
|
-
* @internal
|
|
259
|
-
*/
|
|
260
|
-
const filterSensitiveLog: (obj: CmafEncryption) => any;
|
|
261
|
-
}
|
|
262
214
|
/**
|
|
263
215
|
* A CMAF packaging configuration.
|
|
264
216
|
*/
|
|
@@ -281,12 +233,6 @@ export interface CmafPackage {
|
|
|
281
233
|
*/
|
|
282
234
|
SegmentDurationSeconds?: number;
|
|
283
235
|
}
|
|
284
|
-
export declare namespace CmafPackage {
|
|
285
|
-
/**
|
|
286
|
-
* @internal
|
|
287
|
-
*/
|
|
288
|
-
const filterSensitiveLog: (obj: CmafPackage) => any;
|
|
289
|
-
}
|
|
290
236
|
/**
|
|
291
237
|
* A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
|
|
292
238
|
*/
|
|
@@ -296,12 +242,6 @@ export interface DashEncryption {
|
|
|
296
242
|
*/
|
|
297
243
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
298
244
|
}
|
|
299
|
-
export declare namespace DashEncryption {
|
|
300
|
-
/**
|
|
301
|
-
* @internal
|
|
302
|
-
*/
|
|
303
|
-
const filterSensitiveLog: (obj: DashEncryption) => any;
|
|
304
|
-
}
|
|
305
245
|
export declare enum SegmentTemplateFormat {
|
|
306
246
|
NUMBER_WITH_DURATION = "NUMBER_WITH_DURATION",
|
|
307
247
|
NUMBER_WITH_TIMELINE = "NUMBER_WITH_TIMELINE",
|
|
@@ -340,12 +280,6 @@ export interface DashPackage {
|
|
|
340
280
|
*/
|
|
341
281
|
SegmentTemplateFormat?: SegmentTemplateFormat | string;
|
|
342
282
|
}
|
|
343
|
-
export declare namespace DashPackage {
|
|
344
|
-
/**
|
|
345
|
-
* @internal
|
|
346
|
-
*/
|
|
347
|
-
const filterSensitiveLog: (obj: DashPackage) => any;
|
|
348
|
-
}
|
|
349
283
|
export declare enum EncryptionMethod {
|
|
350
284
|
AES_128 = "AES_128",
|
|
351
285
|
SAMPLE_AES = "SAMPLE_AES"
|
|
@@ -368,12 +302,6 @@ export interface HlsEncryption {
|
|
|
368
302
|
*/
|
|
369
303
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
370
304
|
}
|
|
371
|
-
export declare namespace HlsEncryption {
|
|
372
|
-
/**
|
|
373
|
-
* @internal
|
|
374
|
-
*/
|
|
375
|
-
const filterSensitiveLog: (obj: HlsEncryption) => any;
|
|
376
|
-
}
|
|
377
305
|
/**
|
|
378
306
|
* An HTTP Live Streaming (HLS) packaging configuration.
|
|
379
307
|
*/
|
|
@@ -400,12 +328,6 @@ export interface HlsPackage {
|
|
|
400
328
|
*/
|
|
401
329
|
UseAudioRenditionGroup?: boolean;
|
|
402
330
|
}
|
|
403
|
-
export declare namespace HlsPackage {
|
|
404
|
-
/**
|
|
405
|
-
* @internal
|
|
406
|
-
*/
|
|
407
|
-
const filterSensitiveLog: (obj: HlsPackage) => any;
|
|
408
|
-
}
|
|
409
331
|
/**
|
|
410
332
|
* A Microsoft Smooth Streaming (MSS) encryption configuration.
|
|
411
333
|
*/
|
|
@@ -415,12 +337,6 @@ export interface MssEncryption {
|
|
|
415
337
|
*/
|
|
416
338
|
SpekeKeyProvider: SpekeKeyProvider | undefined;
|
|
417
339
|
}
|
|
418
|
-
export declare namespace MssEncryption {
|
|
419
|
-
/**
|
|
420
|
-
* @internal
|
|
421
|
-
*/
|
|
422
|
-
const filterSensitiveLog: (obj: MssEncryption) => any;
|
|
423
|
-
}
|
|
424
340
|
/**
|
|
425
341
|
* A Microsoft Smooth Streaming (MSS) PackagingConfiguration.
|
|
426
342
|
*/
|
|
@@ -438,12 +354,6 @@ export interface MssPackage {
|
|
|
438
354
|
*/
|
|
439
355
|
SegmentDurationSeconds?: number;
|
|
440
356
|
}
|
|
441
|
-
export declare namespace MssPackage {
|
|
442
|
-
/**
|
|
443
|
-
* @internal
|
|
444
|
-
*/
|
|
445
|
-
const filterSensitiveLog: (obj: MssPackage) => any;
|
|
446
|
-
}
|
|
447
357
|
/**
|
|
448
358
|
* A MediaPackage VOD PackagingConfiguration resource.
|
|
449
359
|
*/
|
|
@@ -481,12 +391,6 @@ export interface PackagingConfiguration {
|
|
|
481
391
|
*/
|
|
482
392
|
Tags?: Record<string, string>;
|
|
483
393
|
}
|
|
484
|
-
export declare namespace PackagingConfiguration {
|
|
485
|
-
/**
|
|
486
|
-
* @internal
|
|
487
|
-
*/
|
|
488
|
-
const filterSensitiveLog: (obj: PackagingConfiguration) => any;
|
|
489
|
-
}
|
|
490
394
|
/**
|
|
491
395
|
* CDN Authorization credentials
|
|
492
396
|
*/
|
|
@@ -500,12 +404,6 @@ export interface Authorization {
|
|
|
500
404
|
*/
|
|
501
405
|
SecretsRoleArn: string | undefined;
|
|
502
406
|
}
|
|
503
|
-
export declare namespace Authorization {
|
|
504
|
-
/**
|
|
505
|
-
* @internal
|
|
506
|
-
*/
|
|
507
|
-
const filterSensitiveLog: (obj: Authorization) => any;
|
|
508
|
-
}
|
|
509
407
|
/**
|
|
510
408
|
* Configure egress access logging.
|
|
511
409
|
*/
|
|
@@ -515,12 +413,6 @@ export interface EgressAccessLogs {
|
|
|
515
413
|
*/
|
|
516
414
|
LogGroupName?: string;
|
|
517
415
|
}
|
|
518
|
-
export declare namespace EgressAccessLogs {
|
|
519
|
-
/**
|
|
520
|
-
* @internal
|
|
521
|
-
*/
|
|
522
|
-
const filterSensitiveLog: (obj: EgressAccessLogs) => any;
|
|
523
|
-
}
|
|
524
416
|
/**
|
|
525
417
|
* A MediaPackage VOD PackagingGroup resource.
|
|
526
418
|
*/
|
|
@@ -550,12 +442,6 @@ export interface PackagingGroup {
|
|
|
550
442
|
*/
|
|
551
443
|
Tags?: Record<string, string>;
|
|
552
444
|
}
|
|
553
|
-
export declare namespace PackagingGroup {
|
|
554
|
-
/**
|
|
555
|
-
* @internal
|
|
556
|
-
*/
|
|
557
|
-
const filterSensitiveLog: (obj: PackagingGroup) => any;
|
|
558
|
-
}
|
|
559
445
|
/**
|
|
560
446
|
* The option to configure log subscription.
|
|
561
447
|
*/
|
|
@@ -569,12 +455,6 @@ export interface ConfigureLogsRequest {
|
|
|
569
455
|
*/
|
|
570
456
|
Id: string | undefined;
|
|
571
457
|
}
|
|
572
|
-
export declare namespace ConfigureLogsRequest {
|
|
573
|
-
/**
|
|
574
|
-
* @internal
|
|
575
|
-
*/
|
|
576
|
-
const filterSensitiveLog: (obj: ConfigureLogsRequest) => any;
|
|
577
|
-
}
|
|
578
458
|
export interface ConfigureLogsResponse {
|
|
579
459
|
/**
|
|
580
460
|
* The ARN of the PackagingGroup.
|
|
@@ -601,12 +481,6 @@ export interface ConfigureLogsResponse {
|
|
|
601
481
|
*/
|
|
602
482
|
Tags?: Record<string, string>;
|
|
603
483
|
}
|
|
604
|
-
export declare namespace ConfigureLogsResponse {
|
|
605
|
-
/**
|
|
606
|
-
* @internal
|
|
607
|
-
*/
|
|
608
|
-
const filterSensitiveLog: (obj: ConfigureLogsResponse) => any;
|
|
609
|
-
}
|
|
610
484
|
/**
|
|
611
485
|
* The client is not authorized to access the requested resource.
|
|
612
486
|
*/
|
|
@@ -708,12 +582,6 @@ export interface CreateAssetRequest {
|
|
|
708
582
|
*/
|
|
709
583
|
Tags?: Record<string, string>;
|
|
710
584
|
}
|
|
711
|
-
export declare namespace CreateAssetRequest {
|
|
712
|
-
/**
|
|
713
|
-
* @internal
|
|
714
|
-
*/
|
|
715
|
-
const filterSensitiveLog: (obj: CreateAssetRequest) => any;
|
|
716
|
-
}
|
|
717
585
|
export interface CreateAssetResponse {
|
|
718
586
|
/**
|
|
719
587
|
* The ARN of the Asset.
|
|
@@ -752,12 +620,6 @@ export interface CreateAssetResponse {
|
|
|
752
620
|
*/
|
|
753
621
|
Tags?: Record<string, string>;
|
|
754
622
|
}
|
|
755
|
-
export declare namespace CreateAssetResponse {
|
|
756
|
-
/**
|
|
757
|
-
* @internal
|
|
758
|
-
*/
|
|
759
|
-
const filterSensitiveLog: (obj: CreateAssetResponse) => any;
|
|
760
|
-
}
|
|
761
623
|
/**
|
|
762
624
|
* A new MediaPackage VOD PackagingConfiguration resource configuration.
|
|
763
625
|
*/
|
|
@@ -791,12 +653,6 @@ export interface CreatePackagingConfigurationRequest {
|
|
|
791
653
|
*/
|
|
792
654
|
Tags?: Record<string, string>;
|
|
793
655
|
}
|
|
794
|
-
export declare namespace CreatePackagingConfigurationRequest {
|
|
795
|
-
/**
|
|
796
|
-
* @internal
|
|
797
|
-
*/
|
|
798
|
-
const filterSensitiveLog: (obj: CreatePackagingConfigurationRequest) => any;
|
|
799
|
-
}
|
|
800
656
|
export interface CreatePackagingConfigurationResponse {
|
|
801
657
|
/**
|
|
802
658
|
* The ARN of the PackagingConfiguration.
|
|
@@ -831,12 +687,6 @@ export interface CreatePackagingConfigurationResponse {
|
|
|
831
687
|
*/
|
|
832
688
|
Tags?: Record<string, string>;
|
|
833
689
|
}
|
|
834
|
-
export declare namespace CreatePackagingConfigurationResponse {
|
|
835
|
-
/**
|
|
836
|
-
* @internal
|
|
837
|
-
*/
|
|
838
|
-
const filterSensitiveLog: (obj: CreatePackagingConfigurationResponse) => any;
|
|
839
|
-
}
|
|
840
690
|
/**
|
|
841
691
|
* A new MediaPackage VOD PackagingGroup resource configuration.
|
|
842
692
|
*/
|
|
@@ -858,12 +708,6 @@ export interface CreatePackagingGroupRequest {
|
|
|
858
708
|
*/
|
|
859
709
|
Tags?: Record<string, string>;
|
|
860
710
|
}
|
|
861
|
-
export declare namespace CreatePackagingGroupRequest {
|
|
862
|
-
/**
|
|
863
|
-
* @internal
|
|
864
|
-
*/
|
|
865
|
-
const filterSensitiveLog: (obj: CreatePackagingGroupRequest) => any;
|
|
866
|
-
}
|
|
867
711
|
export interface CreatePackagingGroupResponse {
|
|
868
712
|
/**
|
|
869
713
|
* The ARN of the PackagingGroup.
|
|
@@ -890,84 +734,36 @@ export interface CreatePackagingGroupResponse {
|
|
|
890
734
|
*/
|
|
891
735
|
Tags?: Record<string, string>;
|
|
892
736
|
}
|
|
893
|
-
export declare namespace CreatePackagingGroupResponse {
|
|
894
|
-
/**
|
|
895
|
-
* @internal
|
|
896
|
-
*/
|
|
897
|
-
const filterSensitiveLog: (obj: CreatePackagingGroupResponse) => any;
|
|
898
|
-
}
|
|
899
737
|
export interface DeleteAssetRequest {
|
|
900
738
|
/**
|
|
901
739
|
* The ID of the MediaPackage VOD Asset resource to delete.
|
|
902
740
|
*/
|
|
903
741
|
Id: string | undefined;
|
|
904
742
|
}
|
|
905
|
-
export declare namespace DeleteAssetRequest {
|
|
906
|
-
/**
|
|
907
|
-
* @internal
|
|
908
|
-
*/
|
|
909
|
-
const filterSensitiveLog: (obj: DeleteAssetRequest) => any;
|
|
910
|
-
}
|
|
911
743
|
export interface DeleteAssetResponse {
|
|
912
744
|
}
|
|
913
|
-
export declare namespace DeleteAssetResponse {
|
|
914
|
-
/**
|
|
915
|
-
* @internal
|
|
916
|
-
*/
|
|
917
|
-
const filterSensitiveLog: (obj: DeleteAssetResponse) => any;
|
|
918
|
-
}
|
|
919
745
|
export interface DeletePackagingConfigurationRequest {
|
|
920
746
|
/**
|
|
921
747
|
* The ID of the MediaPackage VOD PackagingConfiguration resource to delete.
|
|
922
748
|
*/
|
|
923
749
|
Id: string | undefined;
|
|
924
750
|
}
|
|
925
|
-
export declare namespace DeletePackagingConfigurationRequest {
|
|
926
|
-
/**
|
|
927
|
-
* @internal
|
|
928
|
-
*/
|
|
929
|
-
const filterSensitiveLog: (obj: DeletePackagingConfigurationRequest) => any;
|
|
930
|
-
}
|
|
931
751
|
export interface DeletePackagingConfigurationResponse {
|
|
932
752
|
}
|
|
933
|
-
export declare namespace DeletePackagingConfigurationResponse {
|
|
934
|
-
/**
|
|
935
|
-
* @internal
|
|
936
|
-
*/
|
|
937
|
-
const filterSensitiveLog: (obj: DeletePackagingConfigurationResponse) => any;
|
|
938
|
-
}
|
|
939
753
|
export interface DeletePackagingGroupRequest {
|
|
940
754
|
/**
|
|
941
755
|
* The ID of the MediaPackage VOD PackagingGroup resource to delete.
|
|
942
756
|
*/
|
|
943
757
|
Id: string | undefined;
|
|
944
758
|
}
|
|
945
|
-
export declare namespace DeletePackagingGroupRequest {
|
|
946
|
-
/**
|
|
947
|
-
* @internal
|
|
948
|
-
*/
|
|
949
|
-
const filterSensitiveLog: (obj: DeletePackagingGroupRequest) => any;
|
|
950
|
-
}
|
|
951
759
|
export interface DeletePackagingGroupResponse {
|
|
952
760
|
}
|
|
953
|
-
export declare namespace DeletePackagingGroupResponse {
|
|
954
|
-
/**
|
|
955
|
-
* @internal
|
|
956
|
-
*/
|
|
957
|
-
const filterSensitiveLog: (obj: DeletePackagingGroupResponse) => any;
|
|
958
|
-
}
|
|
959
761
|
export interface DescribeAssetRequest {
|
|
960
762
|
/**
|
|
961
763
|
* The ID of an MediaPackage VOD Asset resource.
|
|
962
764
|
*/
|
|
963
765
|
Id: string | undefined;
|
|
964
766
|
}
|
|
965
|
-
export declare namespace DescribeAssetRequest {
|
|
966
|
-
/**
|
|
967
|
-
* @internal
|
|
968
|
-
*/
|
|
969
|
-
const filterSensitiveLog: (obj: DescribeAssetRequest) => any;
|
|
970
|
-
}
|
|
971
767
|
export interface DescribeAssetResponse {
|
|
972
768
|
/**
|
|
973
769
|
* The ARN of the Asset.
|
|
@@ -1006,24 +802,12 @@ export interface DescribeAssetResponse {
|
|
|
1006
802
|
*/
|
|
1007
803
|
Tags?: Record<string, string>;
|
|
1008
804
|
}
|
|
1009
|
-
export declare namespace DescribeAssetResponse {
|
|
1010
|
-
/**
|
|
1011
|
-
* @internal
|
|
1012
|
-
*/
|
|
1013
|
-
const filterSensitiveLog: (obj: DescribeAssetResponse) => any;
|
|
1014
|
-
}
|
|
1015
805
|
export interface DescribePackagingConfigurationRequest {
|
|
1016
806
|
/**
|
|
1017
807
|
* The ID of a MediaPackage VOD PackagingConfiguration resource.
|
|
1018
808
|
*/
|
|
1019
809
|
Id: string | undefined;
|
|
1020
810
|
}
|
|
1021
|
-
export declare namespace DescribePackagingConfigurationRequest {
|
|
1022
|
-
/**
|
|
1023
|
-
* @internal
|
|
1024
|
-
*/
|
|
1025
|
-
const filterSensitiveLog: (obj: DescribePackagingConfigurationRequest) => any;
|
|
1026
|
-
}
|
|
1027
811
|
export interface DescribePackagingConfigurationResponse {
|
|
1028
812
|
/**
|
|
1029
813
|
* The ARN of the PackagingConfiguration.
|
|
@@ -1058,24 +842,12 @@ export interface DescribePackagingConfigurationResponse {
|
|
|
1058
842
|
*/
|
|
1059
843
|
Tags?: Record<string, string>;
|
|
1060
844
|
}
|
|
1061
|
-
export declare namespace DescribePackagingConfigurationResponse {
|
|
1062
|
-
/**
|
|
1063
|
-
* @internal
|
|
1064
|
-
*/
|
|
1065
|
-
const filterSensitiveLog: (obj: DescribePackagingConfigurationResponse) => any;
|
|
1066
|
-
}
|
|
1067
845
|
export interface DescribePackagingGroupRequest {
|
|
1068
846
|
/**
|
|
1069
847
|
* The ID of a MediaPackage VOD PackagingGroup resource.
|
|
1070
848
|
*/
|
|
1071
849
|
Id: string | undefined;
|
|
1072
850
|
}
|
|
1073
|
-
export declare namespace DescribePackagingGroupRequest {
|
|
1074
|
-
/**
|
|
1075
|
-
* @internal
|
|
1076
|
-
*/
|
|
1077
|
-
const filterSensitiveLog: (obj: DescribePackagingGroupRequest) => any;
|
|
1078
|
-
}
|
|
1079
851
|
export interface DescribePackagingGroupResponse {
|
|
1080
852
|
/**
|
|
1081
853
|
* The ARN of the PackagingGroup.
|
|
@@ -1102,12 +874,6 @@ export interface DescribePackagingGroupResponse {
|
|
|
1102
874
|
*/
|
|
1103
875
|
Tags?: Record<string, string>;
|
|
1104
876
|
}
|
|
1105
|
-
export declare namespace DescribePackagingGroupResponse {
|
|
1106
|
-
/**
|
|
1107
|
-
* @internal
|
|
1108
|
-
*/
|
|
1109
|
-
const filterSensitiveLog: (obj: DescribePackagingGroupResponse) => any;
|
|
1110
|
-
}
|
|
1111
877
|
export interface ListAssetsRequest {
|
|
1112
878
|
/**
|
|
1113
879
|
* Upper bound on number of records to return.
|
|
@@ -1122,12 +888,6 @@ export interface ListAssetsRequest {
|
|
|
1122
888
|
*/
|
|
1123
889
|
PackagingGroupId?: string;
|
|
1124
890
|
}
|
|
1125
|
-
export declare namespace ListAssetsRequest {
|
|
1126
|
-
/**
|
|
1127
|
-
* @internal
|
|
1128
|
-
*/
|
|
1129
|
-
const filterSensitiveLog: (obj: ListAssetsRequest) => any;
|
|
1130
|
-
}
|
|
1131
891
|
export interface ListAssetsResponse {
|
|
1132
892
|
/**
|
|
1133
893
|
* A list of MediaPackage VOD Asset resources.
|
|
@@ -1138,12 +898,6 @@ export interface ListAssetsResponse {
|
|
|
1138
898
|
*/
|
|
1139
899
|
NextToken?: string;
|
|
1140
900
|
}
|
|
1141
|
-
export declare namespace ListAssetsResponse {
|
|
1142
|
-
/**
|
|
1143
|
-
* @internal
|
|
1144
|
-
*/
|
|
1145
|
-
const filterSensitiveLog: (obj: ListAssetsResponse) => any;
|
|
1146
|
-
}
|
|
1147
901
|
export interface ListPackagingConfigurationsRequest {
|
|
1148
902
|
/**
|
|
1149
903
|
* Upper bound on number of records to return.
|
|
@@ -1158,12 +912,6 @@ export interface ListPackagingConfigurationsRequest {
|
|
|
1158
912
|
*/
|
|
1159
913
|
PackagingGroupId?: string;
|
|
1160
914
|
}
|
|
1161
|
-
export declare namespace ListPackagingConfigurationsRequest {
|
|
1162
|
-
/**
|
|
1163
|
-
* @internal
|
|
1164
|
-
*/
|
|
1165
|
-
const filterSensitiveLog: (obj: ListPackagingConfigurationsRequest) => any;
|
|
1166
|
-
}
|
|
1167
915
|
export interface ListPackagingConfigurationsResponse {
|
|
1168
916
|
/**
|
|
1169
917
|
* A token that can be used to resume pagination from the end of the collection.
|
|
@@ -1174,12 +922,6 @@ export interface ListPackagingConfigurationsResponse {
|
|
|
1174
922
|
*/
|
|
1175
923
|
PackagingConfigurations?: PackagingConfiguration[];
|
|
1176
924
|
}
|
|
1177
|
-
export declare namespace ListPackagingConfigurationsResponse {
|
|
1178
|
-
/**
|
|
1179
|
-
* @internal
|
|
1180
|
-
*/
|
|
1181
|
-
const filterSensitiveLog: (obj: ListPackagingConfigurationsResponse) => any;
|
|
1182
|
-
}
|
|
1183
925
|
export interface ListPackagingGroupsRequest {
|
|
1184
926
|
/**
|
|
1185
927
|
* Upper bound on number of records to return.
|
|
@@ -1190,12 +932,6 @@ export interface ListPackagingGroupsRequest {
|
|
|
1190
932
|
*/
|
|
1191
933
|
NextToken?: string;
|
|
1192
934
|
}
|
|
1193
|
-
export declare namespace ListPackagingGroupsRequest {
|
|
1194
|
-
/**
|
|
1195
|
-
* @internal
|
|
1196
|
-
*/
|
|
1197
|
-
const filterSensitiveLog: (obj: ListPackagingGroupsRequest) => any;
|
|
1198
|
-
}
|
|
1199
935
|
export interface ListPackagingGroupsResponse {
|
|
1200
936
|
/**
|
|
1201
937
|
* A token that can be used to resume pagination from the end of the collection.
|
|
@@ -1206,36 +942,18 @@ export interface ListPackagingGroupsResponse {
|
|
|
1206
942
|
*/
|
|
1207
943
|
PackagingGroups?: PackagingGroup[];
|
|
1208
944
|
}
|
|
1209
|
-
export declare namespace ListPackagingGroupsResponse {
|
|
1210
|
-
/**
|
|
1211
|
-
* @internal
|
|
1212
|
-
*/
|
|
1213
|
-
const filterSensitiveLog: (obj: ListPackagingGroupsResponse) => any;
|
|
1214
|
-
}
|
|
1215
945
|
export interface ListTagsForResourceRequest {
|
|
1216
946
|
/**
|
|
1217
947
|
* The Amazon Resource Name (ARN) for the resource. You can get this from the response to any request to the resource.
|
|
1218
948
|
*/
|
|
1219
949
|
ResourceArn: string | undefined;
|
|
1220
950
|
}
|
|
1221
|
-
export declare namespace ListTagsForResourceRequest {
|
|
1222
|
-
/**
|
|
1223
|
-
* @internal
|
|
1224
|
-
*/
|
|
1225
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1226
|
-
}
|
|
1227
951
|
export interface ListTagsForResourceResponse {
|
|
1228
952
|
/**
|
|
1229
953
|
* A collection of tags associated with a resource
|
|
1230
954
|
*/
|
|
1231
955
|
Tags?: Record<string, string>;
|
|
1232
956
|
}
|
|
1233
|
-
export declare namespace ListTagsForResourceResponse {
|
|
1234
|
-
/**
|
|
1235
|
-
* @internal
|
|
1236
|
-
*/
|
|
1237
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1238
|
-
}
|
|
1239
957
|
export interface TagResourceRequest {
|
|
1240
958
|
/**
|
|
1241
959
|
* The Amazon Resource Name (ARN) for the resource. You can get this from the response to any request to the resource.
|
|
@@ -1246,12 +964,6 @@ export interface TagResourceRequest {
|
|
|
1246
964
|
*/
|
|
1247
965
|
Tags: Record<string, string> | undefined;
|
|
1248
966
|
}
|
|
1249
|
-
export declare namespace TagResourceRequest {
|
|
1250
|
-
/**
|
|
1251
|
-
* @internal
|
|
1252
|
-
*/
|
|
1253
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1254
|
-
}
|
|
1255
967
|
export interface UntagResourceRequest {
|
|
1256
968
|
/**
|
|
1257
969
|
* The Amazon Resource Name (ARN) for the resource. You can get this from the response to any request to the resource.
|
|
@@ -1262,12 +974,6 @@ export interface UntagResourceRequest {
|
|
|
1262
974
|
*/
|
|
1263
975
|
TagKeys: string[] | undefined;
|
|
1264
976
|
}
|
|
1265
|
-
export declare namespace UntagResourceRequest {
|
|
1266
|
-
/**
|
|
1267
|
-
* @internal
|
|
1268
|
-
*/
|
|
1269
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1270
|
-
}
|
|
1271
977
|
/**
|
|
1272
978
|
* A MediaPackage VOD PackagingGroup resource configuration.
|
|
1273
979
|
*/
|
|
@@ -1281,12 +987,6 @@ export interface UpdatePackagingGroupRequest {
|
|
|
1281
987
|
*/
|
|
1282
988
|
Id: string | undefined;
|
|
1283
989
|
}
|
|
1284
|
-
export declare namespace UpdatePackagingGroupRequest {
|
|
1285
|
-
/**
|
|
1286
|
-
* @internal
|
|
1287
|
-
*/
|
|
1288
|
-
const filterSensitiveLog: (obj: UpdatePackagingGroupRequest) => any;
|
|
1289
|
-
}
|
|
1290
990
|
export interface UpdatePackagingGroupResponse {
|
|
1291
991
|
/**
|
|
1292
992
|
* The ARN of the PackagingGroup.
|
|
@@ -1313,9 +1013,207 @@ export interface UpdatePackagingGroupResponse {
|
|
|
1313
1013
|
*/
|
|
1314
1014
|
Tags?: Record<string, string>;
|
|
1315
1015
|
}
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1016
|
+
/**
|
|
1017
|
+
* @internal
|
|
1018
|
+
*/
|
|
1019
|
+
export declare const AssetShallowFilterSensitiveLog: (obj: AssetShallow) => any;
|
|
1020
|
+
/**
|
|
1021
|
+
* @internal
|
|
1022
|
+
*/
|
|
1023
|
+
export declare const StreamSelectionFilterSensitiveLog: (obj: StreamSelection) => any;
|
|
1024
|
+
/**
|
|
1025
|
+
* @internal
|
|
1026
|
+
*/
|
|
1027
|
+
export declare const DashManifestFilterSensitiveLog: (obj: DashManifest) => any;
|
|
1028
|
+
/**
|
|
1029
|
+
* @internal
|
|
1030
|
+
*/
|
|
1031
|
+
export declare const EgressEndpointFilterSensitiveLog: (obj: EgressEndpoint) => any;
|
|
1032
|
+
/**
|
|
1033
|
+
* @internal
|
|
1034
|
+
*/
|
|
1035
|
+
export declare const HlsManifestFilterSensitiveLog: (obj: HlsManifest) => any;
|
|
1036
|
+
/**
|
|
1037
|
+
* @internal
|
|
1038
|
+
*/
|
|
1039
|
+
export declare const MssManifestFilterSensitiveLog: (obj: MssManifest) => any;
|
|
1040
|
+
/**
|
|
1041
|
+
* @internal
|
|
1042
|
+
*/
|
|
1043
|
+
export declare const SpekeKeyProviderFilterSensitiveLog: (obj: SpekeKeyProvider) => any;
|
|
1044
|
+
/**
|
|
1045
|
+
* @internal
|
|
1046
|
+
*/
|
|
1047
|
+
export declare const CmafEncryptionFilterSensitiveLog: (obj: CmafEncryption) => any;
|
|
1048
|
+
/**
|
|
1049
|
+
* @internal
|
|
1050
|
+
*/
|
|
1051
|
+
export declare const CmafPackageFilterSensitiveLog: (obj: CmafPackage) => any;
|
|
1052
|
+
/**
|
|
1053
|
+
* @internal
|
|
1054
|
+
*/
|
|
1055
|
+
export declare const DashEncryptionFilterSensitiveLog: (obj: DashEncryption) => any;
|
|
1056
|
+
/**
|
|
1057
|
+
* @internal
|
|
1058
|
+
*/
|
|
1059
|
+
export declare const DashPackageFilterSensitiveLog: (obj: DashPackage) => any;
|
|
1060
|
+
/**
|
|
1061
|
+
* @internal
|
|
1062
|
+
*/
|
|
1063
|
+
export declare const HlsEncryptionFilterSensitiveLog: (obj: HlsEncryption) => any;
|
|
1064
|
+
/**
|
|
1065
|
+
* @internal
|
|
1066
|
+
*/
|
|
1067
|
+
export declare const HlsPackageFilterSensitiveLog: (obj: HlsPackage) => any;
|
|
1068
|
+
/**
|
|
1069
|
+
* @internal
|
|
1070
|
+
*/
|
|
1071
|
+
export declare const MssEncryptionFilterSensitiveLog: (obj: MssEncryption) => any;
|
|
1072
|
+
/**
|
|
1073
|
+
* @internal
|
|
1074
|
+
*/
|
|
1075
|
+
export declare const MssPackageFilterSensitiveLog: (obj: MssPackage) => any;
|
|
1076
|
+
/**
|
|
1077
|
+
* @internal
|
|
1078
|
+
*/
|
|
1079
|
+
export declare const PackagingConfigurationFilterSensitiveLog: (obj: PackagingConfiguration) => any;
|
|
1080
|
+
/**
|
|
1081
|
+
* @internal
|
|
1082
|
+
*/
|
|
1083
|
+
export declare const AuthorizationFilterSensitiveLog: (obj: Authorization) => any;
|
|
1084
|
+
/**
|
|
1085
|
+
* @internal
|
|
1086
|
+
*/
|
|
1087
|
+
export declare const EgressAccessLogsFilterSensitiveLog: (obj: EgressAccessLogs) => any;
|
|
1088
|
+
/**
|
|
1089
|
+
* @internal
|
|
1090
|
+
*/
|
|
1091
|
+
export declare const PackagingGroupFilterSensitiveLog: (obj: PackagingGroup) => any;
|
|
1092
|
+
/**
|
|
1093
|
+
* @internal
|
|
1094
|
+
*/
|
|
1095
|
+
export declare const ConfigureLogsRequestFilterSensitiveLog: (obj: ConfigureLogsRequest) => any;
|
|
1096
|
+
/**
|
|
1097
|
+
* @internal
|
|
1098
|
+
*/
|
|
1099
|
+
export declare const ConfigureLogsResponseFilterSensitiveLog: (obj: ConfigureLogsResponse) => any;
|
|
1100
|
+
/**
|
|
1101
|
+
* @internal
|
|
1102
|
+
*/
|
|
1103
|
+
export declare const CreateAssetRequestFilterSensitiveLog: (obj: CreateAssetRequest) => any;
|
|
1104
|
+
/**
|
|
1105
|
+
* @internal
|
|
1106
|
+
*/
|
|
1107
|
+
export declare const CreateAssetResponseFilterSensitiveLog: (obj: CreateAssetResponse) => any;
|
|
1108
|
+
/**
|
|
1109
|
+
* @internal
|
|
1110
|
+
*/
|
|
1111
|
+
export declare const CreatePackagingConfigurationRequestFilterSensitiveLog: (obj: CreatePackagingConfigurationRequest) => any;
|
|
1112
|
+
/**
|
|
1113
|
+
* @internal
|
|
1114
|
+
*/
|
|
1115
|
+
export declare const CreatePackagingConfigurationResponseFilterSensitiveLog: (obj: CreatePackagingConfigurationResponse) => any;
|
|
1116
|
+
/**
|
|
1117
|
+
* @internal
|
|
1118
|
+
*/
|
|
1119
|
+
export declare const CreatePackagingGroupRequestFilterSensitiveLog: (obj: CreatePackagingGroupRequest) => any;
|
|
1120
|
+
/**
|
|
1121
|
+
* @internal
|
|
1122
|
+
*/
|
|
1123
|
+
export declare const CreatePackagingGroupResponseFilterSensitiveLog: (obj: CreatePackagingGroupResponse) => any;
|
|
1124
|
+
/**
|
|
1125
|
+
* @internal
|
|
1126
|
+
*/
|
|
1127
|
+
export declare const DeleteAssetRequestFilterSensitiveLog: (obj: DeleteAssetRequest) => any;
|
|
1128
|
+
/**
|
|
1129
|
+
* @internal
|
|
1130
|
+
*/
|
|
1131
|
+
export declare const DeleteAssetResponseFilterSensitiveLog: (obj: DeleteAssetResponse) => any;
|
|
1132
|
+
/**
|
|
1133
|
+
* @internal
|
|
1134
|
+
*/
|
|
1135
|
+
export declare const DeletePackagingConfigurationRequestFilterSensitiveLog: (obj: DeletePackagingConfigurationRequest) => any;
|
|
1136
|
+
/**
|
|
1137
|
+
* @internal
|
|
1138
|
+
*/
|
|
1139
|
+
export declare const DeletePackagingConfigurationResponseFilterSensitiveLog: (obj: DeletePackagingConfigurationResponse) => any;
|
|
1140
|
+
/**
|
|
1141
|
+
* @internal
|
|
1142
|
+
*/
|
|
1143
|
+
export declare const DeletePackagingGroupRequestFilterSensitiveLog: (obj: DeletePackagingGroupRequest) => any;
|
|
1144
|
+
/**
|
|
1145
|
+
* @internal
|
|
1146
|
+
*/
|
|
1147
|
+
export declare const DeletePackagingGroupResponseFilterSensitiveLog: (obj: DeletePackagingGroupResponse) => any;
|
|
1148
|
+
/**
|
|
1149
|
+
* @internal
|
|
1150
|
+
*/
|
|
1151
|
+
export declare const DescribeAssetRequestFilterSensitiveLog: (obj: DescribeAssetRequest) => any;
|
|
1152
|
+
/**
|
|
1153
|
+
* @internal
|
|
1154
|
+
*/
|
|
1155
|
+
export declare const DescribeAssetResponseFilterSensitiveLog: (obj: DescribeAssetResponse) => any;
|
|
1156
|
+
/**
|
|
1157
|
+
* @internal
|
|
1158
|
+
*/
|
|
1159
|
+
export declare const DescribePackagingConfigurationRequestFilterSensitiveLog: (obj: DescribePackagingConfigurationRequest) => any;
|
|
1160
|
+
/**
|
|
1161
|
+
* @internal
|
|
1162
|
+
*/
|
|
1163
|
+
export declare const DescribePackagingConfigurationResponseFilterSensitiveLog: (obj: DescribePackagingConfigurationResponse) => any;
|
|
1164
|
+
/**
|
|
1165
|
+
* @internal
|
|
1166
|
+
*/
|
|
1167
|
+
export declare const DescribePackagingGroupRequestFilterSensitiveLog: (obj: DescribePackagingGroupRequest) => any;
|
|
1168
|
+
/**
|
|
1169
|
+
* @internal
|
|
1170
|
+
*/
|
|
1171
|
+
export declare const DescribePackagingGroupResponseFilterSensitiveLog: (obj: DescribePackagingGroupResponse) => any;
|
|
1172
|
+
/**
|
|
1173
|
+
* @internal
|
|
1174
|
+
*/
|
|
1175
|
+
export declare const ListAssetsRequestFilterSensitiveLog: (obj: ListAssetsRequest) => any;
|
|
1176
|
+
/**
|
|
1177
|
+
* @internal
|
|
1178
|
+
*/
|
|
1179
|
+
export declare const ListAssetsResponseFilterSensitiveLog: (obj: ListAssetsResponse) => any;
|
|
1180
|
+
/**
|
|
1181
|
+
* @internal
|
|
1182
|
+
*/
|
|
1183
|
+
export declare const ListPackagingConfigurationsRequestFilterSensitiveLog: (obj: ListPackagingConfigurationsRequest) => any;
|
|
1184
|
+
/**
|
|
1185
|
+
* @internal
|
|
1186
|
+
*/
|
|
1187
|
+
export declare const ListPackagingConfigurationsResponseFilterSensitiveLog: (obj: ListPackagingConfigurationsResponse) => any;
|
|
1188
|
+
/**
|
|
1189
|
+
* @internal
|
|
1190
|
+
*/
|
|
1191
|
+
export declare const ListPackagingGroupsRequestFilterSensitiveLog: (obj: ListPackagingGroupsRequest) => any;
|
|
1192
|
+
/**
|
|
1193
|
+
* @internal
|
|
1194
|
+
*/
|
|
1195
|
+
export declare const ListPackagingGroupsResponseFilterSensitiveLog: (obj: ListPackagingGroupsResponse) => any;
|
|
1196
|
+
/**
|
|
1197
|
+
* @internal
|
|
1198
|
+
*/
|
|
1199
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1200
|
+
/**
|
|
1201
|
+
* @internal
|
|
1202
|
+
*/
|
|
1203
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1204
|
+
/**
|
|
1205
|
+
* @internal
|
|
1206
|
+
*/
|
|
1207
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1208
|
+
/**
|
|
1209
|
+
* @internal
|
|
1210
|
+
*/
|
|
1211
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1212
|
+
/**
|
|
1213
|
+
* @internal
|
|
1214
|
+
*/
|
|
1215
|
+
export declare const UpdatePackagingGroupRequestFilterSensitiveLog: (obj: UpdatePackagingGroupRequest) => any;
|
|
1216
|
+
/**
|
|
1217
|
+
* @internal
|
|
1218
|
+
*/
|
|
1219
|
+
export declare const UpdatePackagingGroupResponseFilterSensitiveLog: (obj: UpdatePackagingGroupResponse) => any;
|