Skip to content

Commit 7f9f845

Browse files
author
awstools
committed
feat(client-mediapackage): This release adds Dvb Dash 2014 as an available profile option for Dash Origin Endpoints.
1 parent a2256b9 commit 7f9f845

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

clients/client-mediapackage/src/models/models_0.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -682,6 +682,7 @@ export enum ManifestLayout {
682682
}
683683

684684
export enum Profile {
685+
DVB_DASH_2014 = "DVB_DASH_2014",
685686
HBBTV_1_5 = "HBBTV_1_5",
686687
HYBRIDCAST = "HYBRIDCAST",
687688
NONE = "NONE",
@@ -696,6 +697,7 @@ export enum SegmentTemplateFormat {
696697
export enum UtcTiming {
697698
HTTP_HEAD = "HTTP-HEAD",
698699
HTTP_ISO = "HTTP-ISO",
700+
HTTP_XSDATE = "HTTP-XSDATE",
699701
NONE = "NONE",
700702
}
701703

@@ -756,7 +758,7 @@ export interface DashPackage {
756758
PeriodTriggers?: (__PeriodTriggersElement | string)[];
757759

758760
/**
759-
* The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled.
761+
* The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled. When set to "DVB-DASH_2014", DVB-DASH 2014 compliant output is enabled.
760762
*/
761763
Profile?: Profile | string;
762764

@@ -787,7 +789,7 @@ export interface DashPackage {
787789
UtcTiming?: UtcTiming | string;
788790

789791
/**
790-
* Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO or HTTP-HEAD
792+
* Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO, HTTP-HEAD or HTTP-XSDATE
791793
*/
792794
UtcTimingUri?: string;
793795
}

codegen/sdk-codegen/aws-models/mediapackage.json

+10-2
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@
986986
"Profile": {
987987
"target": "com.amazonaws.mediapackage#Profile",
988988
"traits": {
989-
"smithy.api#documentation": "The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to \"HBBTV_1_5\", HbbTV 1.5 compliant output is enabled.",
989+
"smithy.api#documentation": "The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to \"HBBTV_1_5\", HbbTV 1.5 compliant output is enabled. When set to \"DVB-DASH_2014\", DVB-DASH 2014 compliant output is enabled.",
990990
"smithy.api#jsonName": "profile"
991991
}
992992
},
@@ -1027,7 +1027,7 @@
10271027
"UtcTimingUri": {
10281028
"target": "com.amazonaws.mediapackage#__string",
10291029
"traits": {
1030-
"smithy.api#documentation": "Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO or HTTP-HEAD",
1030+
"smithy.api#documentation": "Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO, HTTP-HEAD or HTTP-XSDATE",
10311031
"smithy.api#jsonName": "utcTimingUri"
10321032
}
10331033
}
@@ -2665,6 +2665,10 @@
26652665
{
26662666
"value": "HYBRIDCAST",
26672667
"name": "HYBRIDCAST"
2668+
},
2669+
{
2670+
"value": "DVB_DASH_2014",
2671+
"name": "DVB_DASH_2014"
26682672
}
26692673
]
26702674
}
@@ -3543,6 +3547,10 @@
35433547
{
35443548
"value": "HTTP-ISO",
35453549
"name": "HTTP_ISO"
3550+
},
3551+
{
3552+
"value": "HTTP-XSDATE",
3553+
"name": "HTTP_XSDATE"
35463554
}
35473555
]
35483556
}

0 commit comments

Comments
 (0)