@aws-sdk/client-mediapackage-vod 3.378.0 → 3.382.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.
@@ -1,4 +1,7 @@
1
1
  import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
2
5
  export interface ClientInputEndpointParameters {
3
6
  region?: string | Provider<string>;
4
7
  useDualstackEndpoint?: boolean | Provider<boolean>;
@@ -5,6 +5,7 @@
5
5
  */
6
6
  export * from "./MediaPackageVodClient";
7
7
  export * from "./MediaPackageVod";
8
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
8
9
  export * from "./commands";
9
10
  export * from "./pagination";
10
11
  export * from "./models";
@@ -17,34 +17,42 @@ export type __PeriodTriggersElement = (typeof __PeriodTriggersElement)[keyof typ
17
17
  */
18
18
  export interface AssetShallow {
19
19
  /**
20
+ * @public
20
21
  * The ARN of the Asset.
21
22
  */
22
23
  Arn?: string;
23
24
  /**
25
+ * @public
24
26
  * The time the Asset was initially submitted for Ingest.
25
27
  */
26
28
  CreatedAt?: string;
27
29
  /**
30
+ * @public
28
31
  * The unique identifier for the Asset.
29
32
  */
30
33
  Id?: string;
31
34
  /**
35
+ * @public
32
36
  * The ID of the PackagingGroup for the Asset.
33
37
  */
34
38
  PackagingGroupId?: string;
35
39
  /**
40
+ * @public
36
41
  * The resource ID to include in SPEKE key requests.
37
42
  */
38
43
  ResourceId?: string;
39
44
  /**
45
+ * @public
40
46
  * ARN of the source object in S3.
41
47
  */
42
48
  SourceArn?: string;
43
49
  /**
50
+ * @public
44
51
  * The IAM role ARN used to access the source S3 bucket.
45
52
  */
46
53
  SourceRoleArn?: string;
47
54
  /**
55
+ * @public
48
56
  * A collection of tags associated with a resource
49
57
  */
50
58
  Tags?: Record<string, string>;
@@ -104,14 +112,17 @@ export type StreamOrder = (typeof StreamOrder)[keyof typeof StreamOrder];
104
112
  */
105
113
  export interface StreamSelection {
106
114
  /**
115
+ * @public
107
116
  * The maximum video bitrate (bps) to include in output.
108
117
  */
109
118
  MaxVideoBitsPerSecond?: number;
110
119
  /**
120
+ * @public
111
121
  * The minimum video bitrate (bps) to include in output.
112
122
  */
113
123
  MinVideoBitsPerSecond?: number;
114
124
  /**
125
+ * @public
115
126
  * A directive that determines the order of streams in the output.
116
127
  */
117
128
  StreamOrder?: StreamOrder | string;
@@ -122,26 +133,32 @@ export interface StreamSelection {
122
133
  */
123
134
  export interface DashManifest {
124
135
  /**
136
+ * @public
125
137
  * Determines the position of some tags in the Media Presentation Description (MPD). When set to FULL, elements like SegmentTemplate and ContentProtection are included in each Representation. When set to COMPACT, duplicate elements are combined and presented at the AdaptationSet level.
126
138
  */
127
139
  ManifestLayout?: ManifestLayout | string;
128
140
  /**
141
+ * @public
129
142
  * An optional string to include in the name of the manifest.
130
143
  */
131
144
  ManifestName?: string;
132
145
  /**
146
+ * @public
133
147
  * Minimum duration (in seconds) that a player will buffer media before starting the presentation.
134
148
  */
135
149
  MinBufferTimeSeconds?: number;
136
150
  /**
151
+ * @public
137
152
  * The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled.
138
153
  */
139
154
  Profile?: Profile | string;
140
155
  /**
156
+ * @public
141
157
  * The source of scte markers used. When set to SEGMENTS, the scte markers are sourced from the segments of the ingested content. When set to MANIFEST, the scte markers are sourced from the manifest of the ingested content.
142
158
  */
143
159
  ScteMarkersSource?: ScteMarkersSource | string;
144
160
  /**
161
+ * @public
145
162
  * A StreamSelection configuration.
146
163
  */
147
164
  StreamSelection?: StreamSelection;
@@ -152,14 +169,17 @@ export interface DashManifest {
152
169
  */
153
170
  export interface EgressEndpoint {
154
171
  /**
172
+ * @public
155
173
  * The ID of the PackagingConfiguration being applied to the Asset.
156
174
  */
157
175
  PackagingConfigurationId?: string;
158
176
  /**
177
+ * @public
159
178
  * The current processing status of the asset used for the packaging configuration. The status can be either QUEUED, PROCESSING, PLAYABLE, or FAILED. Status information won't be available for most assets ingested before 2021-09-30.
160
179
  */
161
180
  Status?: string;
162
181
  /**
182
+ * @public
163
183
  * The URL of the parent manifest for the repackaged Asset.
164
184
  */
165
185
  Url?: string;
@@ -183,6 +203,7 @@ export type AdMarkers = (typeof AdMarkers)[keyof typeof AdMarkers];
183
203
  */
184
204
  export interface HlsManifest {
185
205
  /**
206
+ * @public
186
207
  * This setting controls how ad markers are included in the packaged OriginEndpoint.
187
208
  * "NONE" will omit all SCTE-35 ad markers from the output.
188
209
  * "PASSTHROUGH" causes the manifest to contain a copy of the SCTE-35 ad
@@ -192,14 +213,17 @@ export interface HlsManifest {
192
213
  */
193
214
  AdMarkers?: AdMarkers | string;
194
215
  /**
216
+ * @public
195
217
  * When enabled, an I-Frame only stream will be included in the output.
196
218
  */
197
219
  IncludeIframeOnlyStream?: boolean;
198
220
  /**
221
+ * @public
199
222
  * An optional string to include in the name of the manifest.
200
223
  */
201
224
  ManifestName?: string;
202
225
  /**
226
+ * @public
203
227
  * The interval (in seconds) between each EXT-X-PROGRAM-DATE-TIME tag
204
228
  * inserted into manifests. Additionally, when an interval is specified
205
229
  * ID3Timed Metadata messages will be generated every 5 seconds using the
@@ -212,10 +236,12 @@ export interface HlsManifest {
212
236
  */
213
237
  ProgramDateTimeIntervalSeconds?: number;
214
238
  /**
239
+ * @public
215
240
  * When enabled, the EXT-X-KEY tag will be repeated in output manifests.
216
241
  */
217
242
  RepeatExtXKey?: boolean;
218
243
  /**
244
+ * @public
219
245
  * A StreamSelection configuration.
220
246
  */
221
247
  StreamSelection?: StreamSelection;
@@ -226,10 +252,12 @@ export interface HlsManifest {
226
252
  */
227
253
  export interface MssManifest {
228
254
  /**
255
+ * @public
229
256
  * An optional string to include in the name of the manifest.
230
257
  */
231
258
  ManifestName?: string;
232
259
  /**
260
+ * @public
233
261
  * A StreamSelection configuration.
234
262
  */
235
263
  StreamSelection?: StreamSelection;
@@ -280,10 +308,12 @@ export type PresetSpeke20Video = (typeof PresetSpeke20Video)[keyof typeof Preset
280
308
  */
281
309
  export interface EncryptionContractConfiguration {
282
310
  /**
311
+ * @public
283
312
  * A collection of audio encryption presets.
284
313
  */
285
314
  PresetSpeke20Audio: PresetSpeke20Audio | string | undefined;
286
315
  /**
316
+ * @public
287
317
  * A collection of video encryption presets.
288
318
  */
289
319
  PresetSpeke20Video: PresetSpeke20Video | string | undefined;
@@ -294,6 +324,7 @@ export interface EncryptionContractConfiguration {
294
324
  */
295
325
  export interface SpekeKeyProvider {
296
326
  /**
327
+ * @public
297
328
  * Use encryptionContractConfiguration to configure one or more content encryption keys for your endpoints that use SPEKE 2.0.
298
329
  * The encryption contract defines which content keys are used to encrypt the audio and video tracks in your stream.
299
330
  * To configure the encryption contract, specify which audio and video encryption presets to use.
@@ -303,15 +334,18 @@ export interface SpekeKeyProvider {
303
334
  */
304
335
  EncryptionContractConfiguration?: EncryptionContractConfiguration;
305
336
  /**
337
+ * @public
306
338
  * An Amazon Resource Name (ARN) of an IAM role that AWS Elemental
307
339
  * MediaPackage will assume when accessing the key provider service.
308
340
  */
309
341
  RoleArn: string | undefined;
310
342
  /**
343
+ * @public
311
344
  * The system IDs to include in key requests.
312
345
  */
313
346
  SystemIds: string[] | undefined;
314
347
  /**
348
+ * @public
315
349
  * The URL of the external key provider service.
316
350
  */
317
351
  Url: string | undefined;
@@ -322,10 +356,12 @@ export interface SpekeKeyProvider {
322
356
  */
323
357
  export interface CmafEncryption {
324
358
  /**
359
+ * @public
325
360
  * An optional 128-bit, 16-byte hex value represented by a 32-character string, used in conjunction with the key for encrypting blocks. If you don't specify a value, then MediaPackage creates the constant initialization vector (IV).
326
361
  */
327
362
  ConstantInitializationVector?: string;
328
363
  /**
364
+ * @public
329
365
  * A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
330
366
  */
331
367
  SpekeKeyProvider: SpekeKeyProvider | undefined;
@@ -336,18 +372,22 @@ export interface CmafEncryption {
336
372
  */
337
373
  export interface CmafPackage {
338
374
  /**
375
+ * @public
339
376
  * A CMAF encryption configuration.
340
377
  */
341
378
  Encryption?: CmafEncryption;
342
379
  /**
380
+ * @public
343
381
  * A list of HLS manifest configurations.
344
382
  */
345
383
  HlsManifests: HlsManifest[] | undefined;
346
384
  /**
385
+ * @public
347
386
  * When includeEncoderConfigurationInSegments is set to true, MediaPackage places your encoder's Sequence Parameter Set (SPS), Picture Parameter Set (PPS), and Video Parameter Set (VPS) metadata in every video segment instead of in the init fragment. This lets you use different SPS/PPS/VPS settings for your assets during content playback.
348
387
  */
349
388
  IncludeEncoderConfigurationInSegments?: boolean;
350
389
  /**
390
+ * @public
351
391
  * Duration (in seconds) of each fragment. Actual fragments will be
352
392
  * rounded to the nearest multiple of the source fragment duration.
353
393
  */
@@ -359,6 +399,7 @@ export interface CmafPackage {
359
399
  */
360
400
  export interface DashEncryption {
361
401
  /**
402
+ * @public
362
403
  * A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
363
404
  */
364
405
  SpekeKeyProvider: SpekeKeyProvider | undefined;
@@ -382,22 +423,27 @@ export type SegmentTemplateFormat = (typeof SegmentTemplateFormat)[keyof typeof
382
423
  */
383
424
  export interface DashPackage {
384
425
  /**
426
+ * @public
385
427
  * A list of DASH manifest configurations.
386
428
  */
387
429
  DashManifests: DashManifest[] | undefined;
388
430
  /**
431
+ * @public
389
432
  * A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
390
433
  */
391
434
  Encryption?: DashEncryption;
392
435
  /**
436
+ * @public
393
437
  * When includeEncoderConfigurationInSegments is set to true, MediaPackage places your encoder's Sequence Parameter Set (SPS), Picture Parameter Set (PPS), and Video Parameter Set (VPS) metadata in every video segment instead of in the init fragment. This lets you use different SPS/PPS/VPS settings for your assets during content playback.
394
438
  */
395
439
  IncludeEncoderConfigurationInSegments?: boolean;
396
440
  /**
441
+ * @public
397
442
  * When enabled, an I-Frame only stream will be included in the output.
398
443
  */
399
444
  IncludeIframeOnlyStream?: boolean;
400
445
  /**
446
+ * @public
401
447
  * A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH)
402
448
  * Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not
403
449
  * be partitioned into more than one period. If the list contains "ADS", new periods will be created where
@@ -405,11 +451,13 @@ export interface DashPackage {
405
451
  */
406
452
  PeriodTriggers?: (__PeriodTriggersElement | string)[];
407
453
  /**
454
+ * @public
408
455
  * Duration (in seconds) of each segment. Actual segments will be
409
456
  * rounded to the nearest multiple of the source segment duration.
410
457
  */
411
458
  SegmentDurationSeconds?: number;
412
459
  /**
460
+ * @public
413
461
  * Determines the type of SegmentTemplate included in the Media Presentation Description (MPD). When set to NUMBER_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Number$ media URLs. When set to TIME_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Time$ media URLs. When set to NUMBER_WITH_DURATION, only a duration is included in each SegmentTemplate, with $Number$ media URLs.
414
462
  */
415
463
  SegmentTemplateFormat?: SegmentTemplateFormat | string;
@@ -432,15 +480,18 @@ export type EncryptionMethod = (typeof EncryptionMethod)[keyof typeof Encryption
432
480
  */
433
481
  export interface HlsEncryption {
434
482
  /**
483
+ * @public
435
484
  * A constant initialization vector for encryption (optional).
436
485
  * When not specified the initialization vector will be periodically rotated.
437
486
  */
438
487
  ConstantInitializationVector?: string;
439
488
  /**
489
+ * @public
440
490
  * The encryption method to use.
441
491
  */
442
492
  EncryptionMethod?: EncryptionMethod | string;
443
493
  /**
494
+ * @public
444
495
  * A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
445
496
  */
446
497
  SpekeKeyProvider: SpekeKeyProvider | undefined;
@@ -451,23 +502,28 @@ export interface HlsEncryption {
451
502
  */
452
503
  export interface HlsPackage {
453
504
  /**
505
+ * @public
454
506
  * An HTTP Live Streaming (HLS) encryption configuration.
455
507
  */
456
508
  Encryption?: HlsEncryption;
457
509
  /**
510
+ * @public
458
511
  * A list of HLS manifest configurations.
459
512
  */
460
513
  HlsManifests: HlsManifest[] | undefined;
461
514
  /**
515
+ * @public
462
516
  * When enabled, MediaPackage passes through digital video broadcasting (DVB) subtitles into the output.
463
517
  */
464
518
  IncludeDvbSubtitles?: boolean;
465
519
  /**
520
+ * @public
466
521
  * Duration (in seconds) of each fragment. Actual fragments will be
467
522
  * rounded to the nearest multiple of the source fragment duration.
468
523
  */
469
524
  SegmentDurationSeconds?: number;
470
525
  /**
526
+ * @public
471
527
  * When enabled, audio streams will be placed in rendition groups in the output.
472
528
  */
473
529
  UseAudioRenditionGroup?: boolean;
@@ -478,6 +534,7 @@ export interface HlsPackage {
478
534
  */
479
535
  export interface MssEncryption {
480
536
  /**
537
+ * @public
481
538
  * A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
482
539
  */
483
540
  SpekeKeyProvider: SpekeKeyProvider | undefined;
@@ -488,14 +545,17 @@ export interface MssEncryption {
488
545
  */
489
546
  export interface MssPackage {
490
547
  /**
548
+ * @public
491
549
  * A Microsoft Smooth Streaming (MSS) encryption configuration.
492
550
  */
493
551
  Encryption?: MssEncryption;
494
552
  /**
553
+ * @public
495
554
  * A list of MSS manifest configurations.
496
555
  */
497
556
  MssManifests: MssManifest[] | undefined;
498
557
  /**
558
+ * @public
499
559
  * The duration (in seconds) of each segment.
500
560
  */
501
561
  SegmentDurationSeconds?: number;
@@ -506,38 +566,47 @@ export interface MssPackage {
506
566
  */
507
567
  export interface PackagingConfiguration {
508
568
  /**
569
+ * @public
509
570
  * The ARN of the PackagingConfiguration.
510
571
  */
511
572
  Arn?: string;
512
573
  /**
574
+ * @public
513
575
  * A CMAF packaging configuration.
514
576
  */
515
577
  CmafPackage?: CmafPackage;
516
578
  /**
579
+ * @public
517
580
  * The time the PackagingConfiguration was created.
518
581
  */
519
582
  CreatedAt?: string;
520
583
  /**
584
+ * @public
521
585
  * A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
522
586
  */
523
587
  DashPackage?: DashPackage;
524
588
  /**
589
+ * @public
525
590
  * An HTTP Live Streaming (HLS) packaging configuration.
526
591
  */
527
592
  HlsPackage?: HlsPackage;
528
593
  /**
594
+ * @public
529
595
  * The ID of the PackagingConfiguration.
530
596
  */
531
597
  Id?: string;
532
598
  /**
599
+ * @public
533
600
  * A Microsoft Smooth Streaming (MSS) PackagingConfiguration.
534
601
  */
535
602
  MssPackage?: MssPackage;
536
603
  /**
604
+ * @public
537
605
  * The ID of a PackagingGroup.
538
606
  */
539
607
  PackagingGroupId?: string;
540
608
  /**
609
+ * @public
541
610
  * A collection of tags associated with a resource
542
611
  */
543
612
  Tags?: Record<string, string>;
@@ -548,10 +617,12 @@ export interface PackagingConfiguration {
548
617
  */
549
618
  export interface Authorization {
550
619
  /**
620
+ * @public
551
621
  * The Amazon Resource Name (ARN) for the secret in AWS Secrets Manager that is used for CDN authorization.
552
622
  */
553
623
  CdnIdentifierSecret: string | undefined;
554
624
  /**
625
+ * @public
555
626
  * The Amazon Resource Name (ARN) for the IAM role that allows MediaPackage to communicate with AWS Secrets Manager.
556
627
  */
557
628
  SecretsRoleArn: string | undefined;
@@ -562,6 +633,7 @@ export interface Authorization {
562
633
  */
563
634
  export interface EgressAccessLogs {
564
635
  /**
636
+ * @public
565
637
  * Customize the log group name.
566
638
  */
567
639
  LogGroupName?: string;
@@ -572,34 +644,42 @@ export interface EgressAccessLogs {
572
644
  */
573
645
  export interface PackagingGroup {
574
646
  /**
647
+ * @public
575
648
  * The approximate asset count of the PackagingGroup.
576
649
  */
577
650
  ApproximateAssetCount?: number;
578
651
  /**
652
+ * @public
579
653
  * The ARN of the PackagingGroup.
580
654
  */
581
655
  Arn?: string;
582
656
  /**
657
+ * @public
583
658
  * CDN Authorization credentials
584
659
  */
585
660
  Authorization?: Authorization;
586
661
  /**
662
+ * @public
587
663
  * The time the PackagingGroup was created.
588
664
  */
589
665
  CreatedAt?: string;
590
666
  /**
667
+ * @public
591
668
  * The fully qualified domain name for Assets in the PackagingGroup.
592
669
  */
593
670
  DomainName?: string;
594
671
  /**
672
+ * @public
595
673
  * Configure egress access logging.
596
674
  */
597
675
  EgressAccessLogs?: EgressAccessLogs;
598
676
  /**
677
+ * @public
599
678
  * The ID of the PackagingGroup.
600
679
  */
601
680
  Id?: string;
602
681
  /**
682
+ * @public
603
683
  * A collection of tags associated with a resource
604
684
  */
605
685
  Tags?: Record<string, string>;
@@ -610,10 +690,12 @@ export interface PackagingGroup {
610
690
  */
611
691
  export interface ConfigureLogsRequest {
612
692
  /**
693
+ * @public
613
694
  * Configure egress access logging.
614
695
  */
615
696
  EgressAccessLogs?: EgressAccessLogs;
616
697
  /**
698
+ * @public
617
699
  * The ID of a MediaPackage VOD PackagingGroup resource.
618
700
  */
619
701
  Id: string | undefined;
@@ -623,30 +705,37 @@ export interface ConfigureLogsRequest {
623
705
  */
624
706
  export interface ConfigureLogsResponse {
625
707
  /**
708
+ * @public
626
709
  * The ARN of the PackagingGroup.
627
710
  */
628
711
  Arn?: string;
629
712
  /**
713
+ * @public
630
714
  * CDN Authorization credentials
631
715
  */
632
716
  Authorization?: Authorization;
633
717
  /**
718
+ * @public
634
719
  * The time the PackagingGroup was created.
635
720
  */
636
721
  CreatedAt?: string;
637
722
  /**
723
+ * @public
638
724
  * The fully qualified domain name for Assets in the PackagingGroup.
639
725
  */
640
726
  DomainName?: string;
641
727
  /**
728
+ * @public
642
729
  * Configure egress access logging.
643
730
  */
644
731
  EgressAccessLogs?: EgressAccessLogs;
645
732
  /**
733
+ * @public
646
734
  * The ID of the PackagingGroup.
647
735
  */
648
736
  Id?: string;
649
737
  /**
738
+ * @public
650
739
  * A collection of tags associated with a resource
651
740
  */
652
741
  Tags?: Record<string, string>;
@@ -735,26 +824,32 @@ export declare class UnprocessableEntityException extends __BaseException {
735
824
  */
736
825
  export interface CreateAssetRequest {
737
826
  /**
827
+ * @public
738
828
  * The unique identifier for the Asset.
739
829
  */
740
830
  Id: string | undefined;
741
831
  /**
832
+ * @public
742
833
  * The ID of the PackagingGroup for the Asset.
743
834
  */
744
835
  PackagingGroupId: string | undefined;
745
836
  /**
837
+ * @public
746
838
  * The resource ID to include in SPEKE key requests.
747
839
  */
748
840
  ResourceId?: string;
749
841
  /**
842
+ * @public
750
843
  * ARN of the source object in S3.
751
844
  */
752
845
  SourceArn: string | undefined;
753
846
  /**
847
+ * @public
754
848
  * The IAM role ARN used to access the source S3 bucket.
755
849
  */
756
850
  SourceRoleArn: string | undefined;
757
851
  /**
852
+ * @public
758
853
  * A collection of tags associated with a resource
759
854
  */
760
855
  Tags?: Record<string, string>;
@@ -764,38 +859,47 @@ export interface CreateAssetRequest {
764
859
  */
765
860
  export interface CreateAssetResponse {
766
861
  /**
862
+ * @public
767
863
  * The ARN of the Asset.
768
864
  */
769
865
  Arn?: string;
770
866
  /**
867
+ * @public
771
868
  * The time the Asset was initially submitted for Ingest.
772
869
  */
773
870
  CreatedAt?: string;
774
871
  /**
872
+ * @public
775
873
  * The list of egress endpoints available for the Asset.
776
874
  */
777
875
  EgressEndpoints?: EgressEndpoint[];
778
876
  /**
877
+ * @public
779
878
  * The unique identifier for the Asset.
780
879
  */
781
880
  Id?: string;
782
881
  /**
882
+ * @public
783
883
  * The ID of the PackagingGroup for the Asset.
784
884
  */
785
885
  PackagingGroupId?: string;
786
886
  /**
887
+ * @public
787
888
  * The resource ID to include in SPEKE key requests.
788
889
  */
789
890
  ResourceId?: string;
790
891
  /**
892
+ * @public
791
893
  * ARN of the source object in S3.
792
894
  */
793
895
  SourceArn?: string;
794
896
  /**
897
+ * @public
795
898
  * The IAM role_arn used to access the source S3 bucket.
796
899
  */
797
900
  SourceRoleArn?: string;
798
901
  /**
902
+ * @public
799
903
  * A collection of tags associated with a resource
800
904
  */
801
905
  Tags?: Record<string, string>;
@@ -806,30 +910,37 @@ export interface CreateAssetResponse {
806
910
  */
807
911
  export interface CreatePackagingConfigurationRequest {
808
912
  /**
913
+ * @public
809
914
  * A CMAF packaging configuration.
810
915
  */
811
916
  CmafPackage?: CmafPackage;
812
917
  /**
918
+ * @public
813
919
  * A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
814
920
  */
815
921
  DashPackage?: DashPackage;
816
922
  /**
923
+ * @public
817
924
  * An HTTP Live Streaming (HLS) packaging configuration.
818
925
  */
819
926
  HlsPackage?: HlsPackage;
820
927
  /**
928
+ * @public
821
929
  * The ID of the PackagingConfiguration.
822
930
  */
823
931
  Id: string | undefined;
824
932
  /**
933
+ * @public
825
934
  * A Microsoft Smooth Streaming (MSS) PackagingConfiguration.
826
935
  */
827
936
  MssPackage?: MssPackage;
828
937
  /**
938
+ * @public
829
939
  * The ID of a PackagingGroup.
830
940
  */
831
941
  PackagingGroupId: string | undefined;
832
942
  /**
943
+ * @public
833
944
  * A collection of tags associated with a resource
834
945
  */
835
946
  Tags?: Record<string, string>;
@@ -839,38 +950,47 @@ export interface CreatePackagingConfigurationRequest {
839
950
  */
840
951
  export interface CreatePackagingConfigurationResponse {
841
952
  /**
953
+ * @public
842
954
  * The ARN of the PackagingConfiguration.
843
955
  */
844
956
  Arn?: string;
845
957
  /**
958
+ * @public
846
959
  * A CMAF packaging configuration.
847
960
  */
848
961
  CmafPackage?: CmafPackage;
849
962
  /**
963
+ * @public
850
964
  * The time the PackagingConfiguration was created.
851
965
  */
852
966
  CreatedAt?: string;
853
967
  /**
968
+ * @public
854
969
  * A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
855
970
  */
856
971
  DashPackage?: DashPackage;
857
972
  /**
973
+ * @public
858
974
  * An HTTP Live Streaming (HLS) packaging configuration.
859
975
  */
860
976
  HlsPackage?: HlsPackage;
861
977
  /**
978
+ * @public
862
979
  * The ID of the PackagingConfiguration.
863
980
  */
864
981
  Id?: string;
865
982
  /**
983
+ * @public
866
984
  * A Microsoft Smooth Streaming (MSS) PackagingConfiguration.
867
985
  */
868
986
  MssPackage?: MssPackage;
869
987
  /**
988
+ * @public
870
989
  * The ID of a PackagingGroup.
871
990
  */
872
991
  PackagingGroupId?: string;
873
992
  /**
993
+ * @public
874
994
  * A collection of tags associated with a resource
875
995
  */
876
996
  Tags?: Record<string, string>;
@@ -881,18 +1001,22 @@ export interface CreatePackagingConfigurationResponse {
881
1001
  */
882
1002
  export interface CreatePackagingGroupRequest {
883
1003
  /**
1004
+ * @public
884
1005
  * CDN Authorization credentials
885
1006
  */
886
1007
  Authorization?: Authorization;
887
1008
  /**
1009
+ * @public
888
1010
  * Configure egress access logging.
889
1011
  */
890
1012
  EgressAccessLogs?: EgressAccessLogs;
891
1013
  /**
1014
+ * @public
892
1015
  * The ID of the PackagingGroup.
893
1016
  */
894
1017
  Id: string | undefined;
895
1018
  /**
1019
+ * @public
896
1020
  * A collection of tags associated with a resource
897
1021
  */
898
1022
  Tags?: Record<string, string>;
@@ -902,30 +1026,37 @@ export interface CreatePackagingGroupRequest {
902
1026
  */
903
1027
  export interface CreatePackagingGroupResponse {
904
1028
  /**
1029
+ * @public
905
1030
  * The ARN of the PackagingGroup.
906
1031
  */
907
1032
  Arn?: string;
908
1033
  /**
1034
+ * @public
909
1035
  * CDN Authorization credentials
910
1036
  */
911
1037
  Authorization?: Authorization;
912
1038
  /**
1039
+ * @public
913
1040
  * The time the PackagingGroup was created.
914
1041
  */
915
1042
  CreatedAt?: string;
916
1043
  /**
1044
+ * @public
917
1045
  * The fully qualified domain name for Assets in the PackagingGroup.
918
1046
  */
919
1047
  DomainName?: string;
920
1048
  /**
1049
+ * @public
921
1050
  * Configure egress access logging.
922
1051
  */
923
1052
  EgressAccessLogs?: EgressAccessLogs;
924
1053
  /**
1054
+ * @public
925
1055
  * The ID of the PackagingGroup.
926
1056
  */
927
1057
  Id?: string;
928
1058
  /**
1059
+ * @public
929
1060
  * A collection of tags associated with a resource
930
1061
  */
931
1062
  Tags?: Record<string, string>;
@@ -935,6 +1066,7 @@ export interface CreatePackagingGroupResponse {
935
1066
  */
936
1067
  export interface DeleteAssetRequest {
937
1068
  /**
1069
+ * @public
938
1070
  * The ID of the MediaPackage VOD Asset resource to delete.
939
1071
  */
940
1072
  Id: string | undefined;
@@ -949,6 +1081,7 @@ export interface DeleteAssetResponse {
949
1081
  */
950
1082
  export interface DeletePackagingConfigurationRequest {
951
1083
  /**
1084
+ * @public
952
1085
  * The ID of the MediaPackage VOD PackagingConfiguration resource to delete.
953
1086
  */
954
1087
  Id: string | undefined;
@@ -963,6 +1096,7 @@ export interface DeletePackagingConfigurationResponse {
963
1096
  */
964
1097
  export interface DeletePackagingGroupRequest {
965
1098
  /**
1099
+ * @public
966
1100
  * The ID of the MediaPackage VOD PackagingGroup resource to delete.
967
1101
  */
968
1102
  Id: string | undefined;
@@ -977,6 +1111,7 @@ export interface DeletePackagingGroupResponse {
977
1111
  */
978
1112
  export interface DescribeAssetRequest {
979
1113
  /**
1114
+ * @public
980
1115
  * The ID of an MediaPackage VOD Asset resource.
981
1116
  */
982
1117
  Id: string | undefined;
@@ -986,38 +1121,47 @@ export interface DescribeAssetRequest {
986
1121
  */
987
1122
  export interface DescribeAssetResponse {
988
1123
  /**
1124
+ * @public
989
1125
  * The ARN of the Asset.
990
1126
  */
991
1127
  Arn?: string;
992
1128
  /**
1129
+ * @public
993
1130
  * The time the Asset was initially submitted for Ingest.
994
1131
  */
995
1132
  CreatedAt?: string;
996
1133
  /**
1134
+ * @public
997
1135
  * The list of egress endpoints available for the Asset.
998
1136
  */
999
1137
  EgressEndpoints?: EgressEndpoint[];
1000
1138
  /**
1139
+ * @public
1001
1140
  * The unique identifier for the Asset.
1002
1141
  */
1003
1142
  Id?: string;
1004
1143
  /**
1144
+ * @public
1005
1145
  * The ID of the PackagingGroup for the Asset.
1006
1146
  */
1007
1147
  PackagingGroupId?: string;
1008
1148
  /**
1149
+ * @public
1009
1150
  * The resource ID to include in SPEKE key requests.
1010
1151
  */
1011
1152
  ResourceId?: string;
1012
1153
  /**
1154
+ * @public
1013
1155
  * ARN of the source object in S3.
1014
1156
  */
1015
1157
  SourceArn?: string;
1016
1158
  /**
1159
+ * @public
1017
1160
  * The IAM role_arn used to access the source S3 bucket.
1018
1161
  */
1019
1162
  SourceRoleArn?: string;
1020
1163
  /**
1164
+ * @public
1021
1165
  * A collection of tags associated with a resource
1022
1166
  */
1023
1167
  Tags?: Record<string, string>;
@@ -1027,6 +1171,7 @@ export interface DescribeAssetResponse {
1027
1171
  */
1028
1172
  export interface DescribePackagingConfigurationRequest {
1029
1173
  /**
1174
+ * @public
1030
1175
  * The ID of a MediaPackage VOD PackagingConfiguration resource.
1031
1176
  */
1032
1177
  Id: string | undefined;
@@ -1036,38 +1181,47 @@ export interface DescribePackagingConfigurationRequest {
1036
1181
  */
1037
1182
  export interface DescribePackagingConfigurationResponse {
1038
1183
  /**
1184
+ * @public
1039
1185
  * The ARN of the PackagingConfiguration.
1040
1186
  */
1041
1187
  Arn?: string;
1042
1188
  /**
1189
+ * @public
1043
1190
  * A CMAF packaging configuration.
1044
1191
  */
1045
1192
  CmafPackage?: CmafPackage;
1046
1193
  /**
1194
+ * @public
1047
1195
  * The time the PackagingConfiguration was created.
1048
1196
  */
1049
1197
  CreatedAt?: string;
1050
1198
  /**
1199
+ * @public
1051
1200
  * A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
1052
1201
  */
1053
1202
  DashPackage?: DashPackage;
1054
1203
  /**
1204
+ * @public
1055
1205
  * An HTTP Live Streaming (HLS) packaging configuration.
1056
1206
  */
1057
1207
  HlsPackage?: HlsPackage;
1058
1208
  /**
1209
+ * @public
1059
1210
  * The ID of the PackagingConfiguration.
1060
1211
  */
1061
1212
  Id?: string;
1062
1213
  /**
1214
+ * @public
1063
1215
  * A Microsoft Smooth Streaming (MSS) PackagingConfiguration.
1064
1216
  */
1065
1217
  MssPackage?: MssPackage;
1066
1218
  /**
1219
+ * @public
1067
1220
  * The ID of a PackagingGroup.
1068
1221
  */
1069
1222
  PackagingGroupId?: string;
1070
1223
  /**
1224
+ * @public
1071
1225
  * A collection of tags associated with a resource
1072
1226
  */
1073
1227
  Tags?: Record<string, string>;
@@ -1077,6 +1231,7 @@ export interface DescribePackagingConfigurationResponse {
1077
1231
  */
1078
1232
  export interface DescribePackagingGroupRequest {
1079
1233
  /**
1234
+ * @public
1080
1235
  * The ID of a MediaPackage VOD PackagingGroup resource.
1081
1236
  */
1082
1237
  Id: string | undefined;
@@ -1086,34 +1241,42 @@ export interface DescribePackagingGroupRequest {
1086
1241
  */
1087
1242
  export interface DescribePackagingGroupResponse {
1088
1243
  /**
1244
+ * @public
1089
1245
  * The approximate asset count of the PackagingGroup.
1090
1246
  */
1091
1247
  ApproximateAssetCount?: number;
1092
1248
  /**
1249
+ * @public
1093
1250
  * The ARN of the PackagingGroup.
1094
1251
  */
1095
1252
  Arn?: string;
1096
1253
  /**
1254
+ * @public
1097
1255
  * CDN Authorization credentials
1098
1256
  */
1099
1257
  Authorization?: Authorization;
1100
1258
  /**
1259
+ * @public
1101
1260
  * The time the PackagingGroup was created.
1102
1261
  */
1103
1262
  CreatedAt?: string;
1104
1263
  /**
1264
+ * @public
1105
1265
  * The fully qualified domain name for Assets in the PackagingGroup.
1106
1266
  */
1107
1267
  DomainName?: string;
1108
1268
  /**
1269
+ * @public
1109
1270
  * Configure egress access logging.
1110
1271
  */
1111
1272
  EgressAccessLogs?: EgressAccessLogs;
1112
1273
  /**
1274
+ * @public
1113
1275
  * The ID of the PackagingGroup.
1114
1276
  */
1115
1277
  Id?: string;
1116
1278
  /**
1279
+ * @public
1117
1280
  * A collection of tags associated with a resource
1118
1281
  */
1119
1282
  Tags?: Record<string, string>;
@@ -1123,14 +1286,17 @@ export interface DescribePackagingGroupResponse {
1123
1286
  */
1124
1287
  export interface ListAssetsRequest {
1125
1288
  /**
1289
+ * @public
1126
1290
  * Upper bound on number of records to return.
1127
1291
  */
1128
1292
  MaxResults?: number;
1129
1293
  /**
1294
+ * @public
1130
1295
  * A token used to resume pagination from the end of a previous request.
1131
1296
  */
1132
1297
  NextToken?: string;
1133
1298
  /**
1299
+ * @public
1134
1300
  * Returns Assets associated with the specified PackagingGroup.
1135
1301
  */
1136
1302
  PackagingGroupId?: string;
@@ -1140,10 +1306,12 @@ export interface ListAssetsRequest {
1140
1306
  */
1141
1307
  export interface ListAssetsResponse {
1142
1308
  /**
1309
+ * @public
1143
1310
  * A list of MediaPackage VOD Asset resources.
1144
1311
  */
1145
1312
  Assets?: AssetShallow[];
1146
1313
  /**
1314
+ * @public
1147
1315
  * A token that can be used to resume pagination from the end of the collection.
1148
1316
  */
1149
1317
  NextToken?: string;
@@ -1153,14 +1321,17 @@ export interface ListAssetsResponse {
1153
1321
  */
1154
1322
  export interface ListPackagingConfigurationsRequest {
1155
1323
  /**
1324
+ * @public
1156
1325
  * Upper bound on number of records to return.
1157
1326
  */
1158
1327
  MaxResults?: number;
1159
1328
  /**
1329
+ * @public
1160
1330
  * A token used to resume pagination from the end of a previous request.
1161
1331
  */
1162
1332
  NextToken?: string;
1163
1333
  /**
1334
+ * @public
1164
1335
  * Returns MediaPackage VOD PackagingConfigurations associated with the specified PackagingGroup.
1165
1336
  */
1166
1337
  PackagingGroupId?: string;
@@ -1170,10 +1341,12 @@ export interface ListPackagingConfigurationsRequest {
1170
1341
  */
1171
1342
  export interface ListPackagingConfigurationsResponse {
1172
1343
  /**
1344
+ * @public
1173
1345
  * A token that can be used to resume pagination from the end of the collection.
1174
1346
  */
1175
1347
  NextToken?: string;
1176
1348
  /**
1349
+ * @public
1177
1350
  * A list of MediaPackage VOD PackagingConfiguration resources.
1178
1351
  */
1179
1352
  PackagingConfigurations?: PackagingConfiguration[];
@@ -1183,10 +1356,12 @@ export interface ListPackagingConfigurationsResponse {
1183
1356
  */
1184
1357
  export interface ListPackagingGroupsRequest {
1185
1358
  /**
1359
+ * @public
1186
1360
  * Upper bound on number of records to return.
1187
1361
  */
1188
1362
  MaxResults?: number;
1189
1363
  /**
1364
+ * @public
1190
1365
  * A token used to resume pagination from the end of a previous request.
1191
1366
  */
1192
1367
  NextToken?: string;
@@ -1196,10 +1371,12 @@ export interface ListPackagingGroupsRequest {
1196
1371
  */
1197
1372
  export interface ListPackagingGroupsResponse {
1198
1373
  /**
1374
+ * @public
1199
1375
  * A token that can be used to resume pagination from the end of the collection.
1200
1376
  */
1201
1377
  NextToken?: string;
1202
1378
  /**
1379
+ * @public
1203
1380
  * A list of MediaPackage VOD PackagingGroup resources.
1204
1381
  */
1205
1382
  PackagingGroups?: PackagingGroup[];
@@ -1209,6 +1386,7 @@ export interface ListPackagingGroupsResponse {
1209
1386
  */
1210
1387
  export interface ListTagsForResourceRequest {
1211
1388
  /**
1389
+ * @public
1212
1390
  * The Amazon Resource Name (ARN) for the resource. You can get this from the response to any request to the resource.
1213
1391
  */
1214
1392
  ResourceArn: string | undefined;
@@ -1218,6 +1396,7 @@ export interface ListTagsForResourceRequest {
1218
1396
  */
1219
1397
  export interface ListTagsForResourceResponse {
1220
1398
  /**
1399
+ * @public
1221
1400
  * A collection of tags associated with a resource
1222
1401
  */
1223
1402
  Tags?: Record<string, string>;
@@ -1227,10 +1406,12 @@ export interface ListTagsForResourceResponse {
1227
1406
  */
1228
1407
  export interface TagResourceRequest {
1229
1408
  /**
1409
+ * @public
1230
1410
  * The Amazon Resource Name (ARN) for the resource. You can get this from the response to any request to the resource.
1231
1411
  */
1232
1412
  ResourceArn: string | undefined;
1233
1413
  /**
1414
+ * @public
1234
1415
  * A collection of tags associated with a resource
1235
1416
  */
1236
1417
  Tags: Record<string, string> | undefined;
@@ -1240,10 +1421,12 @@ export interface TagResourceRequest {
1240
1421
  */
1241
1422
  export interface UntagResourceRequest {
1242
1423
  /**
1424
+ * @public
1243
1425
  * The Amazon Resource Name (ARN) for the resource. You can get this from the response to any request to the resource.
1244
1426
  */
1245
1427
  ResourceArn: string | undefined;
1246
1428
  /**
1429
+ * @public
1247
1430
  * A comma-separated list of the tag keys to remove from the resource.
1248
1431
  */
1249
1432
  TagKeys: string[] | undefined;
@@ -1254,10 +1437,12 @@ export interface UntagResourceRequest {
1254
1437
  */
1255
1438
  export interface UpdatePackagingGroupRequest {
1256
1439
  /**
1440
+ * @public
1257
1441
  * CDN Authorization credentials
1258
1442
  */
1259
1443
  Authorization?: Authorization;
1260
1444
  /**
1445
+ * @public
1261
1446
  * The ID of a MediaPackage VOD PackagingGroup resource.
1262
1447
  */
1263
1448
  Id: string | undefined;
@@ -1267,34 +1452,42 @@ export interface UpdatePackagingGroupRequest {
1267
1452
  */
1268
1453
  export interface UpdatePackagingGroupResponse {
1269
1454
  /**
1455
+ * @public
1270
1456
  * The approximate asset count of the PackagingGroup.
1271
1457
  */
1272
1458
  ApproximateAssetCount?: number;
1273
1459
  /**
1460
+ * @public
1274
1461
  * The ARN of the PackagingGroup.
1275
1462
  */
1276
1463
  Arn?: string;
1277
1464
  /**
1465
+ * @public
1278
1466
  * CDN Authorization credentials
1279
1467
  */
1280
1468
  Authorization?: Authorization;
1281
1469
  /**
1470
+ * @public
1282
1471
  * The time the PackagingGroup was created.
1283
1472
  */
1284
1473
  CreatedAt?: string;
1285
1474
  /**
1475
+ * @public
1286
1476
  * The fully qualified domain name for Assets in the PackagingGroup.
1287
1477
  */
1288
1478
  DomainName?: string;
1289
1479
  /**
1480
+ * @public
1290
1481
  * Configure egress access logging.
1291
1482
  */
1292
1483
  EgressAccessLogs?: EgressAccessLogs;
1293
1484
  /**
1485
+ * @public
1294
1486
  * The ID of the PackagingGroup.
1295
1487
  */
1296
1488
  Id?: string;
1297
1489
  /**
1490
+ * @public
1298
1491
  * A collection of tags associated with a resource
1299
1492
  */
1300
1493
  Tags?: Record<string, string>;
@@ -1,5 +1,6 @@
1
1
  export * from "./MediaPackageVodClient";
2
2
  export * from "./MediaPackageVod";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
3
4
  export * from "./commands";
4
5
  export * from "./pagination";
5
6
  export * from "./models";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediapackage-vod",
3
3
  "description": "AWS SDK for JavaScript Mediapackage Vod Client for Node.js, Browser and React Native",
4
- "version": "3.378.0",
4
+ "version": "3.382.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.378.0",
25
- "@aws-sdk/credential-provider-node": "3.378.0",
26
- "@aws-sdk/middleware-host-header": "3.378.0",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
+ "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
- "@aws-sdk/middleware-signing": "3.378.0",
30
- "@aws-sdk/middleware-user-agent": "3.378.0",
29
+ "@aws-sdk/middleware-signing": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",