@aws-sdk/client-mediapackagev2 3.839.0 → 3.843.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.
@@ -76,6 +76,8 @@ export declare class ThrottlingException extends __BaseException {
76
76
  export declare const ValidationExceptionType: {
77
77
  readonly CENC_IV_INCOMPATIBLE: "CENC_IV_INCOMPATIBLE";
78
78
  readonly CLIP_START_TIME_WITH_START_OR_END: "CLIP_START_TIME_WITH_START_OR_END";
79
+ readonly CMAF_CONTAINER_TYPE_WITH_MSS_MANIFEST: "CMAF_CONTAINER_TYPE_WITH_MSS_MANIFEST";
80
+ readonly CMAF_EXCLUDE_SEGMENT_DRM_METADATA_INCOMPATIBLE_CONTAINER_TYPE: "CMAF_EXCLUDE_SEGMENT_DRM_METADATA_INCOMPATIBLE_CONTAINER_TYPE";
79
81
  readonly CONTAINER_TYPE_IMMUTABLE: "CONTAINER_TYPE_IMMUTABLE";
80
82
  readonly DASH_DVB_ATTRIBUTES_WITHOUT_DVB_DASH_PROFILE: "DASH_DVB_ATTRIBUTES_WITHOUT_DVB_DASH_PROFILE";
81
83
  readonly DIRECT_MODE_WITH_TIMING_SOURCE: "DIRECT_MODE_WITH_TIMING_SOURCE";
@@ -84,6 +86,7 @@ export declare const ValidationExceptionType: {
84
86
  readonly ENCRYPTION_CONTRACT_SHARED: "ENCRYPTION_CONTRACT_SHARED";
85
87
  readonly ENCRYPTION_CONTRACT_UNENCRYPTED: "ENCRYPTION_CONTRACT_UNENCRYPTED";
86
88
  readonly ENCRYPTION_CONTRACT_WITHOUT_AUDIO_RENDITION_INCOMPATIBLE: "ENCRYPTION_CONTRACT_WITHOUT_AUDIO_RENDITION_INCOMPATIBLE";
89
+ readonly ENCRYPTION_CONTRACT_WITH_ISM_CONTAINER_INCOMPATIBLE: "ENCRYPTION_CONTRACT_WITH_ISM_CONTAINER_INCOMPATIBLE";
87
90
  readonly ENCRYPTION_METHOD_CONTAINER_TYPE_MISMATCH: "ENCRYPTION_METHOD_CONTAINER_TYPE_MISMATCH";
88
91
  readonly END_TIME_EARLIER_THAN_START_TIME: "END_TIME_EARLIER_THAN_START_TIME";
89
92
  readonly HARVESTED_MANIFEST_HAS_START_END_FILTER_CONFIGURATION: "HARVESTED_MANIFEST_HAS_START_END_FILTER_CONFIGURATION";
@@ -102,6 +105,11 @@ export declare const ValidationExceptionType: {
102
105
  readonly INVALID_POLICY: "INVALID_POLICY";
103
106
  readonly INVALID_ROLE_ARN: "INVALID_ROLE_ARN";
104
107
  readonly INVALID_TIME_DELAY_SECONDS: "INVALID_TIME_DELAY_SECONDS";
108
+ readonly ISM_CONTAINER_TYPE_WITH_DASH_MANIFEST: "ISM_CONTAINER_TYPE_WITH_DASH_MANIFEST";
109
+ readonly ISM_CONTAINER_TYPE_WITH_HLS_MANIFEST: "ISM_CONTAINER_TYPE_WITH_HLS_MANIFEST";
110
+ readonly ISM_CONTAINER_TYPE_WITH_LL_HLS_MANIFEST: "ISM_CONTAINER_TYPE_WITH_LL_HLS_MANIFEST";
111
+ readonly ISM_CONTAINER_TYPE_WITH_SCTE: "ISM_CONTAINER_TYPE_WITH_SCTE";
112
+ readonly ISM_CONTAINER_WITH_KEY_ROTATION: "ISM_CONTAINER_WITH_KEY_ROTATION";
105
113
  readonly MANIFEST_DRM_SYSTEMS_INCOMPATIBLE: "MANIFEST_DRM_SYSTEMS_INCOMPATIBLE";
106
114
  readonly MANIFEST_NAME_COLLISION: "MANIFEST_NAME_COLLISION";
107
115
  readonly MEMBER_DOES_NOT_MATCH_PATTERN: "MEMBER_DOES_NOT_MATCH_PATTERN";
@@ -127,6 +135,7 @@ export declare const ValidationExceptionType: {
127
135
  readonly TIMING_SOURCE_MISSING: "TIMING_SOURCE_MISSING";
128
136
  readonly TOO_MANY_IN_PROGRESS_HARVEST_JOBS: "TOO_MANY_IN_PROGRESS_HARVEST_JOBS";
129
137
  readonly TS_CONTAINER_TYPE_WITH_DASH_MANIFEST: "TS_CONTAINER_TYPE_WITH_DASH_MANIFEST";
138
+ readonly TS_CONTAINER_TYPE_WITH_MSS_MANIFEST: "TS_CONTAINER_TYPE_WITH_MSS_MANIFEST";
130
139
  readonly UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION: "UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION";
131
140
  readonly URL_INVALID: "URL_INVALID";
132
141
  readonly URL_LINK_LOCAL_ADDRESS: "URL_LINK_LOCAL_ADDRESS";
@@ -267,6 +276,7 @@ export interface ListChannelsResponse {
267
276
  }
268
277
  export declare const ContainerType: {
269
278
  readonly CMAF: "CMAF";
279
+ readonly ISM: "ISM";
270
280
  readonly TS: "TS";
271
281
  };
272
282
  export type ContainerType = (typeof ContainerType)[keyof typeof ContainerType];
@@ -417,12 +427,29 @@ export interface CreateLowLatencyHlsManifestConfiguration {
417
427
  FilterConfiguration?: FilterConfiguration | undefined;
418
428
  UrlEncodeChildManifest?: boolean | undefined;
419
429
  }
430
+ export declare const MssManifestLayout: {
431
+ readonly COMPACT: "COMPACT";
432
+ readonly FULL: "FULL";
433
+ };
434
+ export type MssManifestLayout =
435
+ (typeof MssManifestLayout)[keyof typeof MssManifestLayout];
436
+ export interface CreateMssManifestConfiguration {
437
+ ManifestName: string | undefined;
438
+ ManifestWindowSeconds?: number | undefined;
439
+ FilterConfiguration?: FilterConfiguration | undefined;
440
+ ManifestLayout?: MssManifestLayout | undefined;
441
+ }
420
442
  export declare const CmafEncryptionMethod: {
421
443
  readonly CBCS: "CBCS";
422
444
  readonly CENC: "CENC";
423
445
  };
424
446
  export type CmafEncryptionMethod =
425
447
  (typeof CmafEncryptionMethod)[keyof typeof CmafEncryptionMethod];
448
+ export declare const IsmEncryptionMethod: {
449
+ readonly CENC: "CENC";
450
+ };
451
+ export type IsmEncryptionMethod =
452
+ (typeof IsmEncryptionMethod)[keyof typeof IsmEncryptionMethod];
426
453
  export declare const TsEncryptionMethod: {
427
454
  readonly AES_128: "AES_128";
428
455
  readonly SAMPLE_AES: "SAMPLE_AES";
@@ -432,6 +459,7 @@ export type TsEncryptionMethod =
432
459
  export interface EncryptionMethod {
433
460
  TsEncryptionMethod?: TsEncryptionMethod | undefined;
434
461
  CmafEncryptionMethod?: CmafEncryptionMethod | undefined;
462
+ IsmEncryptionMethod?: IsmEncryptionMethod | undefined;
435
463
  }
436
464
  export declare const DrmSystem: {
437
465
  readonly CLEAR_KEY_AES_128: "CLEAR_KEY_AES_128";
@@ -479,6 +507,7 @@ export interface Encryption {
479
507
  ConstantInitializationVector?: string | undefined;
480
508
  EncryptionMethod: EncryptionMethod | undefined;
481
509
  KeyRotationIntervalSeconds?: number | undefined;
510
+ CmafExcludeSegmentDrmMetadata?: boolean | undefined;
482
511
  SpekeKeyProvider: SpekeKeyProvider | undefined;
483
512
  }
484
513
  export declare const ScteFilter: {
@@ -519,6 +548,7 @@ export interface CreateOriginEndpointRequest {
519
548
  | CreateLowLatencyHlsManifestConfiguration[]
520
549
  | undefined;
521
550
  DashManifests?: CreateDashManifestConfiguration[] | undefined;
551
+ MssManifests?: CreateMssManifestConfiguration[] | undefined;
522
552
  ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
523
553
  Tags?: Record<string, string> | undefined;
524
554
  }
@@ -564,6 +594,13 @@ export interface GetLowLatencyHlsManifestConfiguration {
564
594
  StartTag?: StartTag | undefined;
565
595
  UrlEncodeChildManifest?: boolean | undefined;
566
596
  }
597
+ export interface GetMssManifestConfiguration {
598
+ ManifestName: string | undefined;
599
+ Url: string | undefined;
600
+ FilterConfiguration?: FilterConfiguration | undefined;
601
+ ManifestWindowSeconds?: number | undefined;
602
+ ManifestLayout?: MssManifestLayout | undefined;
603
+ }
567
604
  export interface CreateOriginEndpointResponse {
568
605
  Arn: string | undefined;
569
606
  ChannelGroupName: string | undefined;
@@ -578,6 +615,7 @@ export interface CreateOriginEndpointResponse {
578
615
  HlsManifests?: GetHlsManifestConfiguration[] | undefined;
579
616
  LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[] | undefined;
580
617
  DashManifests?: GetDashManifestConfiguration[] | undefined;
618
+ MssManifests?: GetMssManifestConfiguration[] | undefined;
581
619
  ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
582
620
  ETag?: string | undefined;
583
621
  Tags?: Record<string, string> | undefined;
@@ -608,6 +646,7 @@ export interface GetOriginEndpointResponse {
608
646
  HlsManifests?: GetHlsManifestConfiguration[] | undefined;
609
647
  LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[] | undefined;
610
648
  DashManifests?: GetDashManifestConfiguration[] | undefined;
649
+ MssManifests?: GetMssManifestConfiguration[] | undefined;
611
650
  ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
612
651
  ETag?: string | undefined;
613
652
  Tags?: Record<string, string> | undefined;
@@ -632,6 +671,10 @@ export interface ListLowLatencyHlsManifestConfiguration {
632
671
  ChildManifestName?: string | undefined;
633
672
  Url?: string | undefined;
634
673
  }
674
+ export interface ListMssManifestConfiguration {
675
+ ManifestName: string | undefined;
676
+ Url?: string | undefined;
677
+ }
635
678
  export interface OriginEndpointListConfiguration {
636
679
  Arn: string | undefined;
637
680
  ChannelGroupName: string | undefined;
@@ -644,6 +687,7 @@ export interface OriginEndpointListConfiguration {
644
687
  HlsManifests?: ListHlsManifestConfiguration[] | undefined;
645
688
  LowLatencyHlsManifests?: ListLowLatencyHlsManifestConfiguration[] | undefined;
646
689
  DashManifests?: ListDashManifestConfiguration[] | undefined;
690
+ MssManifests?: ListMssManifestConfiguration[] | undefined;
647
691
  ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
648
692
  }
649
693
  export interface ListOriginEndpointsResponse {
@@ -699,6 +743,7 @@ export interface UpdateOriginEndpointRequest {
699
743
  | CreateLowLatencyHlsManifestConfiguration[]
700
744
  | undefined;
701
745
  DashManifests?: CreateDashManifestConfiguration[] | undefined;
746
+ MssManifests?: CreateMssManifestConfiguration[] | undefined;
702
747
  ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
703
748
  ETag?: string | undefined;
704
749
  }
@@ -715,6 +760,7 @@ export interface UpdateOriginEndpointResponse {
715
760
  StartoverWindowSeconds?: number | undefined;
716
761
  HlsManifests?: GetHlsManifestConfiguration[] | undefined;
717
762
  LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[] | undefined;
763
+ MssManifests?: GetMssManifestConfiguration[] | undefined;
718
764
  ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
719
765
  ETag?: string | undefined;
720
766
  Tags?: Record<string, string> | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediapackagev2",
3
3
  "description": "AWS SDK for JavaScript Mediapackagev2 Client for Node.js, Browser and React Native",
4
- "version": "3.839.0",
4
+ "version": "3.843.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-mediapackagev2",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.839.0",
24
- "@aws-sdk/credential-provider-node": "3.839.0",
25
- "@aws-sdk/middleware-host-header": "3.821.0",
26
- "@aws-sdk/middleware-logger": "3.821.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.821.0",
28
- "@aws-sdk/middleware-user-agent": "3.839.0",
29
- "@aws-sdk/region-config-resolver": "3.821.0",
30
- "@aws-sdk/types": "3.821.0",
31
- "@aws-sdk/util-endpoints": "3.828.0",
32
- "@aws-sdk/util-user-agent-browser": "3.821.0",
33
- "@aws-sdk/util-user-agent-node": "3.839.0",
23
+ "@aws-sdk/core": "3.840.0",
24
+ "@aws-sdk/credential-provider-node": "3.840.0",
25
+ "@aws-sdk/middleware-host-header": "3.840.0",
26
+ "@aws-sdk/middleware-logger": "3.840.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.840.0",
28
+ "@aws-sdk/middleware-user-agent": "3.840.0",
29
+ "@aws-sdk/region-config-resolver": "3.840.0",
30
+ "@aws-sdk/types": "3.840.0",
31
+ "@aws-sdk/util-endpoints": "3.840.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.840.0",
33
+ "@aws-sdk/util-user-agent-node": "3.840.0",
34
34
  "@smithy/config-resolver": "^4.1.4",
35
35
  "@smithy/core": "^3.6.0",
36
36
  "@smithy/fetch-http-handler": "^5.0.4",