aws-cdk-lib 2.207.0__py3-none-any.whl → 2.208.0__py3-none-any.whl
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.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.207.0.jsii.tgz → aws-cdk-lib@2.208.0.jsii.tgz} +0 -0
- aws_cdk/aws_aiops/__init__.py +16 -12
- aws_cdk/aws_amazonmq/__init__.py +8 -18
- aws_cdk/aws_appstream/__init__.py +36 -4
- aws_cdk/aws_bedrock/__init__.py +191 -72
- aws_cdk/aws_certificatemanager/__init__.py +45 -0
- aws_cdk/aws_cloudfront/__init__.py +12 -2
- aws_cdk/aws_connect/__init__.py +107 -3
- aws_cdk/aws_customerprofiles/__init__.py +27 -22
- aws_cdk/aws_docdb/__init__.py +5 -3
- aws_cdk/aws_ec2/__init__.py +53 -11
- aws_cdk/aws_ecs/__init__.py +118 -29
- aws_cdk/aws_events/__init__.py +142 -0
- aws_cdk/aws_gamelift/__init__.py +2 -2
- aws_cdk/aws_guardduty/__init__.py +86 -0
- aws_cdk/aws_kinesisfirehose/__init__.py +377 -4
- aws_cdk/aws_logs/__init__.py +53 -4
- aws_cdk/aws_mediapackagev2/__init__.py +881 -0
- aws_cdk/aws_omics/__init__.py +13 -10
- aws_cdk/aws_quicksight/__init__.py +111 -4
- aws_cdk/aws_rds/__init__.py +208 -10
- aws_cdk/aws_s3/__init__.py +775 -5
- aws_cdk/aws_s3express/__init__.py +61 -3
- aws_cdk/aws_s3tables/__init__.py +254 -0
- aws_cdk/aws_sagemaker/__init__.py +524 -137
- aws_cdk/aws_ssm/__init__.py +48 -0
- aws_cdk/aws_transfer/__init__.py +49 -0
- aws_cdk/aws_wisdom/__init__.py +1185 -100
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/RECORD +35 -35
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/top_level.txt +0 -0
|
@@ -1229,7 +1229,29 @@ class CfnOriginEndpoint(
|
|
|
1229
1229
|
manifest_name="manifestName",
|
|
1230
1230
|
|
|
1231
1231
|
# the properties below are optional
|
|
1232
|
+
base_urls=[mediapackagev2.CfnOriginEndpoint.DashBaseUrlProperty(
|
|
1233
|
+
url="url",
|
|
1234
|
+
|
|
1235
|
+
# the properties below are optional
|
|
1236
|
+
dvb_priority=123,
|
|
1237
|
+
dvb_weight=123,
|
|
1238
|
+
service_location="serviceLocation"
|
|
1239
|
+
)],
|
|
1240
|
+
compactness="compactness",
|
|
1232
1241
|
drm_signaling="drmSignaling",
|
|
1242
|
+
dvb_settings=mediapackagev2.CfnOriginEndpoint.DashDvbSettingsProperty(
|
|
1243
|
+
error_metrics=[mediapackagev2.CfnOriginEndpoint.DashDvbMetricsReportingProperty(
|
|
1244
|
+
reporting_url="reportingUrl",
|
|
1245
|
+
|
|
1246
|
+
# the properties below are optional
|
|
1247
|
+
probability=123
|
|
1248
|
+
)],
|
|
1249
|
+
font_download=mediapackagev2.CfnOriginEndpoint.DashDvbFontDownloadProperty(
|
|
1250
|
+
font_family="fontFamily",
|
|
1251
|
+
mime_type="mimeType",
|
|
1252
|
+
url="url"
|
|
1253
|
+
)
|
|
1254
|
+
),
|
|
1233
1255
|
filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
|
|
1234
1256
|
clip_start_time="clipStartTime",
|
|
1235
1257
|
end="end",
|
|
@@ -1241,10 +1263,23 @@ class CfnOriginEndpoint(
|
|
|
1241
1263
|
min_buffer_time_seconds=123,
|
|
1242
1264
|
min_update_period_seconds=123,
|
|
1243
1265
|
period_triggers=["periodTriggers"],
|
|
1266
|
+
profiles=["profiles"],
|
|
1267
|
+
program_information=mediapackagev2.CfnOriginEndpoint.DashProgramInformationProperty(
|
|
1268
|
+
copyright="copyright",
|
|
1269
|
+
language_code="languageCode",
|
|
1270
|
+
more_information_url="moreInformationUrl",
|
|
1271
|
+
source="source",
|
|
1272
|
+
title="title"
|
|
1273
|
+
),
|
|
1244
1274
|
scte_dash=mediapackagev2.CfnOriginEndpoint.ScteDashProperty(
|
|
1245
1275
|
ad_marker_dash="adMarkerDash"
|
|
1246
1276
|
),
|
|
1247
1277
|
segment_template_format="segmentTemplateFormat",
|
|
1278
|
+
subtitle_configuration=mediapackagev2.CfnOriginEndpoint.DashSubtitleConfigurationProperty(
|
|
1279
|
+
ttml_configuration=mediapackagev2.CfnOriginEndpoint.DashTtmlConfigurationProperty(
|
|
1280
|
+
ttml_profile="ttmlProfile"
|
|
1281
|
+
)
|
|
1282
|
+
),
|
|
1248
1283
|
suggested_presentation_delay_seconds=123,
|
|
1249
1284
|
utc_timing=mediapackagev2.CfnOriginEndpoint.DashUtcTimingProperty(
|
|
1250
1285
|
timing_mode="timingMode",
|
|
@@ -1676,19 +1711,397 @@ class CfnOriginEndpoint(
|
|
|
1676
1711
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1677
1712
|
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
1678
1713
|
|
|
1714
|
+
@jsii.data_type(
|
|
1715
|
+
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.DashBaseUrlProperty",
|
|
1716
|
+
jsii_struct_bases=[],
|
|
1717
|
+
name_mapping={
|
|
1718
|
+
"url": "url",
|
|
1719
|
+
"dvb_priority": "dvbPriority",
|
|
1720
|
+
"dvb_weight": "dvbWeight",
|
|
1721
|
+
"service_location": "serviceLocation",
|
|
1722
|
+
},
|
|
1723
|
+
)
|
|
1724
|
+
class DashBaseUrlProperty:
|
|
1725
|
+
def __init__(
|
|
1726
|
+
self,
|
|
1727
|
+
*,
|
|
1728
|
+
url: builtins.str,
|
|
1729
|
+
dvb_priority: typing.Optional[jsii.Number] = None,
|
|
1730
|
+
dvb_weight: typing.Optional[jsii.Number] = None,
|
|
1731
|
+
service_location: typing.Optional[builtins.str] = None,
|
|
1732
|
+
) -> None:
|
|
1733
|
+
'''The base URLs to use for retrieving segments.
|
|
1734
|
+
|
|
1735
|
+
You can specify multiple locations and indicate the priority and weight for when each should be used, for use in mutli-CDN workflows.
|
|
1736
|
+
|
|
1737
|
+
:param url: A source location for segments.
|
|
1738
|
+
:param dvb_priority: For use with DVB-DASH profiles only. The priority of this location for servings segments. The lower the number, the higher the priority.
|
|
1739
|
+
:param dvb_weight: For use with DVB-DASH profiles only. The weighting for source locations that have the same priority.
|
|
1740
|
+
:param service_location: The name of the source location.
|
|
1741
|
+
|
|
1742
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashbaseurl.html
|
|
1743
|
+
:exampleMetadata: fixture=_generated
|
|
1744
|
+
|
|
1745
|
+
Example::
|
|
1746
|
+
|
|
1747
|
+
# The code below shows an example of how to instantiate this type.
|
|
1748
|
+
# The values are placeholders you should change.
|
|
1749
|
+
from aws_cdk import aws_mediapackagev2 as mediapackagev2
|
|
1750
|
+
|
|
1751
|
+
dash_base_url_property = mediapackagev2.CfnOriginEndpoint.DashBaseUrlProperty(
|
|
1752
|
+
url="url",
|
|
1753
|
+
|
|
1754
|
+
# the properties below are optional
|
|
1755
|
+
dvb_priority=123,
|
|
1756
|
+
dvb_weight=123,
|
|
1757
|
+
service_location="serviceLocation"
|
|
1758
|
+
)
|
|
1759
|
+
'''
|
|
1760
|
+
if __debug__:
|
|
1761
|
+
type_hints = typing.get_type_hints(_typecheckingstub__be1d880fe401caed5e0186c4f4a6b76f8d63f2e78cf2fcbb490b66d185d4af29)
|
|
1762
|
+
check_type(argname="argument url", value=url, expected_type=type_hints["url"])
|
|
1763
|
+
check_type(argname="argument dvb_priority", value=dvb_priority, expected_type=type_hints["dvb_priority"])
|
|
1764
|
+
check_type(argname="argument dvb_weight", value=dvb_weight, expected_type=type_hints["dvb_weight"])
|
|
1765
|
+
check_type(argname="argument service_location", value=service_location, expected_type=type_hints["service_location"])
|
|
1766
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1767
|
+
"url": url,
|
|
1768
|
+
}
|
|
1769
|
+
if dvb_priority is not None:
|
|
1770
|
+
self._values["dvb_priority"] = dvb_priority
|
|
1771
|
+
if dvb_weight is not None:
|
|
1772
|
+
self._values["dvb_weight"] = dvb_weight
|
|
1773
|
+
if service_location is not None:
|
|
1774
|
+
self._values["service_location"] = service_location
|
|
1775
|
+
|
|
1776
|
+
@builtins.property
|
|
1777
|
+
def url(self) -> builtins.str:
|
|
1778
|
+
'''A source location for segments.
|
|
1779
|
+
|
|
1780
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashbaseurl.html#cfn-mediapackagev2-originendpoint-dashbaseurl-url
|
|
1781
|
+
'''
|
|
1782
|
+
result = self._values.get("url")
|
|
1783
|
+
assert result is not None, "Required property 'url' is missing"
|
|
1784
|
+
return typing.cast(builtins.str, result)
|
|
1785
|
+
|
|
1786
|
+
@builtins.property
|
|
1787
|
+
def dvb_priority(self) -> typing.Optional[jsii.Number]:
|
|
1788
|
+
'''For use with DVB-DASH profiles only.
|
|
1789
|
+
|
|
1790
|
+
The priority of this location for servings segments. The lower the number, the higher the priority.
|
|
1791
|
+
|
|
1792
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashbaseurl.html#cfn-mediapackagev2-originendpoint-dashbaseurl-dvbpriority
|
|
1793
|
+
'''
|
|
1794
|
+
result = self._values.get("dvb_priority")
|
|
1795
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1796
|
+
|
|
1797
|
+
@builtins.property
|
|
1798
|
+
def dvb_weight(self) -> typing.Optional[jsii.Number]:
|
|
1799
|
+
'''For use with DVB-DASH profiles only.
|
|
1800
|
+
|
|
1801
|
+
The weighting for source locations that have the same priority.
|
|
1802
|
+
|
|
1803
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashbaseurl.html#cfn-mediapackagev2-originendpoint-dashbaseurl-dvbweight
|
|
1804
|
+
'''
|
|
1805
|
+
result = self._values.get("dvb_weight")
|
|
1806
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1807
|
+
|
|
1808
|
+
@builtins.property
|
|
1809
|
+
def service_location(self) -> typing.Optional[builtins.str]:
|
|
1810
|
+
'''The name of the source location.
|
|
1811
|
+
|
|
1812
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashbaseurl.html#cfn-mediapackagev2-originendpoint-dashbaseurl-servicelocation
|
|
1813
|
+
'''
|
|
1814
|
+
result = self._values.get("service_location")
|
|
1815
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1816
|
+
|
|
1817
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1818
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1819
|
+
|
|
1820
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1821
|
+
return not (rhs == self)
|
|
1822
|
+
|
|
1823
|
+
def __repr__(self) -> str:
|
|
1824
|
+
return "DashBaseUrlProperty(%s)" % ", ".join(
|
|
1825
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1826
|
+
)
|
|
1827
|
+
|
|
1828
|
+
@jsii.data_type(
|
|
1829
|
+
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.DashDvbFontDownloadProperty",
|
|
1830
|
+
jsii_struct_bases=[],
|
|
1831
|
+
name_mapping={
|
|
1832
|
+
"font_family": "fontFamily",
|
|
1833
|
+
"mime_type": "mimeType",
|
|
1834
|
+
"url": "url",
|
|
1835
|
+
},
|
|
1836
|
+
)
|
|
1837
|
+
class DashDvbFontDownloadProperty:
|
|
1838
|
+
def __init__(
|
|
1839
|
+
self,
|
|
1840
|
+
*,
|
|
1841
|
+
font_family: typing.Optional[builtins.str] = None,
|
|
1842
|
+
mime_type: typing.Optional[builtins.str] = None,
|
|
1843
|
+
url: typing.Optional[builtins.str] = None,
|
|
1844
|
+
) -> None:
|
|
1845
|
+
'''For use with DVB-DASH profiles only.
|
|
1846
|
+
|
|
1847
|
+
The settings for font downloads that you want AWS Elemental MediaPackage to pass through to the manifest.
|
|
1848
|
+
|
|
1849
|
+
:param font_family: The ``fontFamily`` name for subtitles, as described in `EBU-TT-D Subtitling Distribution Format <https://docs.aws.amazon.com/https://tech.ebu.ch/publications/tech3380>`_ .
|
|
1850
|
+
:param mime_type: The ``mimeType`` of the resource that's at the font download URL. For information about font MIME types, see the `MPEG-DASH Profile for Transport of ISO BMFF Based DVB Services over IP Based Networks <https://docs.aws.amazon.com/https://dvb.org/wp-content/uploads/2021/06/A168r4_MPEG-DASH-Profile-for-Transport-of-ISO-BMFF-Based-DVB-Services_Draft-ts_103-285-v140_November_2021.pdf>`_ document.
|
|
1851
|
+
:param url: The URL for downloading fonts for subtitles.
|
|
1852
|
+
|
|
1853
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbfontdownload.html
|
|
1854
|
+
:exampleMetadata: fixture=_generated
|
|
1855
|
+
|
|
1856
|
+
Example::
|
|
1857
|
+
|
|
1858
|
+
# The code below shows an example of how to instantiate this type.
|
|
1859
|
+
# The values are placeholders you should change.
|
|
1860
|
+
from aws_cdk import aws_mediapackagev2 as mediapackagev2
|
|
1861
|
+
|
|
1862
|
+
dash_dvb_font_download_property = mediapackagev2.CfnOriginEndpoint.DashDvbFontDownloadProperty(
|
|
1863
|
+
font_family="fontFamily",
|
|
1864
|
+
mime_type="mimeType",
|
|
1865
|
+
url="url"
|
|
1866
|
+
)
|
|
1867
|
+
'''
|
|
1868
|
+
if __debug__:
|
|
1869
|
+
type_hints = typing.get_type_hints(_typecheckingstub__81c2694b55243cfd80ec8b5b8d807b1d991f3ae38973b41f6fb77d9d5ea24965)
|
|
1870
|
+
check_type(argname="argument font_family", value=font_family, expected_type=type_hints["font_family"])
|
|
1871
|
+
check_type(argname="argument mime_type", value=mime_type, expected_type=type_hints["mime_type"])
|
|
1872
|
+
check_type(argname="argument url", value=url, expected_type=type_hints["url"])
|
|
1873
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1874
|
+
if font_family is not None:
|
|
1875
|
+
self._values["font_family"] = font_family
|
|
1876
|
+
if mime_type is not None:
|
|
1877
|
+
self._values["mime_type"] = mime_type
|
|
1878
|
+
if url is not None:
|
|
1879
|
+
self._values["url"] = url
|
|
1880
|
+
|
|
1881
|
+
@builtins.property
|
|
1882
|
+
def font_family(self) -> typing.Optional[builtins.str]:
|
|
1883
|
+
'''The ``fontFamily`` name for subtitles, as described in `EBU-TT-D Subtitling Distribution Format <https://docs.aws.amazon.com/https://tech.ebu.ch/publications/tech3380>`_ .
|
|
1884
|
+
|
|
1885
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbfontdownload.html#cfn-mediapackagev2-originendpoint-dashdvbfontdownload-fontfamily
|
|
1886
|
+
'''
|
|
1887
|
+
result = self._values.get("font_family")
|
|
1888
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1889
|
+
|
|
1890
|
+
@builtins.property
|
|
1891
|
+
def mime_type(self) -> typing.Optional[builtins.str]:
|
|
1892
|
+
'''The ``mimeType`` of the resource that's at the font download URL.
|
|
1893
|
+
|
|
1894
|
+
For information about font MIME types, see the `MPEG-DASH Profile for Transport of ISO BMFF Based DVB Services over IP Based Networks <https://docs.aws.amazon.com/https://dvb.org/wp-content/uploads/2021/06/A168r4_MPEG-DASH-Profile-for-Transport-of-ISO-BMFF-Based-DVB-Services_Draft-ts_103-285-v140_November_2021.pdf>`_ document.
|
|
1895
|
+
|
|
1896
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbfontdownload.html#cfn-mediapackagev2-originendpoint-dashdvbfontdownload-mimetype
|
|
1897
|
+
'''
|
|
1898
|
+
result = self._values.get("mime_type")
|
|
1899
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1900
|
+
|
|
1901
|
+
@builtins.property
|
|
1902
|
+
def url(self) -> typing.Optional[builtins.str]:
|
|
1903
|
+
'''The URL for downloading fonts for subtitles.
|
|
1904
|
+
|
|
1905
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbfontdownload.html#cfn-mediapackagev2-originendpoint-dashdvbfontdownload-url
|
|
1906
|
+
'''
|
|
1907
|
+
result = self._values.get("url")
|
|
1908
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1909
|
+
|
|
1910
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1911
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1912
|
+
|
|
1913
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1914
|
+
return not (rhs == self)
|
|
1915
|
+
|
|
1916
|
+
def __repr__(self) -> str:
|
|
1917
|
+
return "DashDvbFontDownloadProperty(%s)" % ", ".join(
|
|
1918
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1919
|
+
)
|
|
1920
|
+
|
|
1921
|
+
@jsii.data_type(
|
|
1922
|
+
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.DashDvbMetricsReportingProperty",
|
|
1923
|
+
jsii_struct_bases=[],
|
|
1924
|
+
name_mapping={"reporting_url": "reportingUrl", "probability": "probability"},
|
|
1925
|
+
)
|
|
1926
|
+
class DashDvbMetricsReportingProperty:
|
|
1927
|
+
def __init__(
|
|
1928
|
+
self,
|
|
1929
|
+
*,
|
|
1930
|
+
reporting_url: builtins.str,
|
|
1931
|
+
probability: typing.Optional[jsii.Number] = None,
|
|
1932
|
+
) -> None:
|
|
1933
|
+
'''For use with DVB-DASH profiles only.
|
|
1934
|
+
|
|
1935
|
+
The settings for error reporting from the playback device that you want AWS Elemental MediaPackage to pass through to the manifest.
|
|
1936
|
+
|
|
1937
|
+
:param reporting_url: The URL where playback devices send error reports.
|
|
1938
|
+
:param probability: The number of playback devices per 1000 that will send error reports to the reporting URL. This represents the probability that a playback device will be a reporting player for this session.
|
|
1939
|
+
|
|
1940
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbmetricsreporting.html
|
|
1941
|
+
:exampleMetadata: fixture=_generated
|
|
1942
|
+
|
|
1943
|
+
Example::
|
|
1944
|
+
|
|
1945
|
+
# The code below shows an example of how to instantiate this type.
|
|
1946
|
+
# The values are placeholders you should change.
|
|
1947
|
+
from aws_cdk import aws_mediapackagev2 as mediapackagev2
|
|
1948
|
+
|
|
1949
|
+
dash_dvb_metrics_reporting_property = mediapackagev2.CfnOriginEndpoint.DashDvbMetricsReportingProperty(
|
|
1950
|
+
reporting_url="reportingUrl",
|
|
1951
|
+
|
|
1952
|
+
# the properties below are optional
|
|
1953
|
+
probability=123
|
|
1954
|
+
)
|
|
1955
|
+
'''
|
|
1956
|
+
if __debug__:
|
|
1957
|
+
type_hints = typing.get_type_hints(_typecheckingstub__fadf127f9f82d1f5f09e73b8a4d72d5685c1236b84cdaa5c6132a7ab4774e495)
|
|
1958
|
+
check_type(argname="argument reporting_url", value=reporting_url, expected_type=type_hints["reporting_url"])
|
|
1959
|
+
check_type(argname="argument probability", value=probability, expected_type=type_hints["probability"])
|
|
1960
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1961
|
+
"reporting_url": reporting_url,
|
|
1962
|
+
}
|
|
1963
|
+
if probability is not None:
|
|
1964
|
+
self._values["probability"] = probability
|
|
1965
|
+
|
|
1966
|
+
@builtins.property
|
|
1967
|
+
def reporting_url(self) -> builtins.str:
|
|
1968
|
+
'''The URL where playback devices send error reports.
|
|
1969
|
+
|
|
1970
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbmetricsreporting.html#cfn-mediapackagev2-originendpoint-dashdvbmetricsreporting-reportingurl
|
|
1971
|
+
'''
|
|
1972
|
+
result = self._values.get("reporting_url")
|
|
1973
|
+
assert result is not None, "Required property 'reporting_url' is missing"
|
|
1974
|
+
return typing.cast(builtins.str, result)
|
|
1975
|
+
|
|
1976
|
+
@builtins.property
|
|
1977
|
+
def probability(self) -> typing.Optional[jsii.Number]:
|
|
1978
|
+
'''The number of playback devices per 1000 that will send error reports to the reporting URL.
|
|
1979
|
+
|
|
1980
|
+
This represents the probability that a playback device will be a reporting player for this session.
|
|
1981
|
+
|
|
1982
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbmetricsreporting.html#cfn-mediapackagev2-originendpoint-dashdvbmetricsreporting-probability
|
|
1983
|
+
'''
|
|
1984
|
+
result = self._values.get("probability")
|
|
1985
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1986
|
+
|
|
1987
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1988
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1989
|
+
|
|
1990
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1991
|
+
return not (rhs == self)
|
|
1992
|
+
|
|
1993
|
+
def __repr__(self) -> str:
|
|
1994
|
+
return "DashDvbMetricsReportingProperty(%s)" % ", ".join(
|
|
1995
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1996
|
+
)
|
|
1997
|
+
|
|
1998
|
+
@jsii.data_type(
|
|
1999
|
+
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.DashDvbSettingsProperty",
|
|
2000
|
+
jsii_struct_bases=[],
|
|
2001
|
+
name_mapping={
|
|
2002
|
+
"error_metrics": "errorMetrics",
|
|
2003
|
+
"font_download": "fontDownload",
|
|
2004
|
+
},
|
|
2005
|
+
)
|
|
2006
|
+
class DashDvbSettingsProperty:
|
|
2007
|
+
def __init__(
|
|
2008
|
+
self,
|
|
2009
|
+
*,
|
|
2010
|
+
error_metrics: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.DashDvbMetricsReportingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2011
|
+
font_download: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.DashDvbFontDownloadProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2012
|
+
) -> None:
|
|
2013
|
+
'''For endpoints that use the DVB-DASH profile only.
|
|
2014
|
+
|
|
2015
|
+
The font download and error reporting information that you want MediaPackage to pass through to the manifest.
|
|
2016
|
+
|
|
2017
|
+
:param error_metrics: Playback device error reporting settings.
|
|
2018
|
+
:param font_download: Subtitle font settings.
|
|
2019
|
+
|
|
2020
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbsettings.html
|
|
2021
|
+
:exampleMetadata: fixture=_generated
|
|
2022
|
+
|
|
2023
|
+
Example::
|
|
2024
|
+
|
|
2025
|
+
# The code below shows an example of how to instantiate this type.
|
|
2026
|
+
# The values are placeholders you should change.
|
|
2027
|
+
from aws_cdk import aws_mediapackagev2 as mediapackagev2
|
|
2028
|
+
|
|
2029
|
+
dash_dvb_settings_property = mediapackagev2.CfnOriginEndpoint.DashDvbSettingsProperty(
|
|
2030
|
+
error_metrics=[mediapackagev2.CfnOriginEndpoint.DashDvbMetricsReportingProperty(
|
|
2031
|
+
reporting_url="reportingUrl",
|
|
2032
|
+
|
|
2033
|
+
# the properties below are optional
|
|
2034
|
+
probability=123
|
|
2035
|
+
)],
|
|
2036
|
+
font_download=mediapackagev2.CfnOriginEndpoint.DashDvbFontDownloadProperty(
|
|
2037
|
+
font_family="fontFamily",
|
|
2038
|
+
mime_type="mimeType",
|
|
2039
|
+
url="url"
|
|
2040
|
+
)
|
|
2041
|
+
)
|
|
2042
|
+
'''
|
|
2043
|
+
if __debug__:
|
|
2044
|
+
type_hints = typing.get_type_hints(_typecheckingstub__280a149dc1f481cd4b69b2b250e75d424c71bee34e699369b2294841b0aed7d8)
|
|
2045
|
+
check_type(argname="argument error_metrics", value=error_metrics, expected_type=type_hints["error_metrics"])
|
|
2046
|
+
check_type(argname="argument font_download", value=font_download, expected_type=type_hints["font_download"])
|
|
2047
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2048
|
+
if error_metrics is not None:
|
|
2049
|
+
self._values["error_metrics"] = error_metrics
|
|
2050
|
+
if font_download is not None:
|
|
2051
|
+
self._values["font_download"] = font_download
|
|
2052
|
+
|
|
2053
|
+
@builtins.property
|
|
2054
|
+
def error_metrics(
|
|
2055
|
+
self,
|
|
2056
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashDvbMetricsReportingProperty"]]]]:
|
|
2057
|
+
'''Playback device error reporting settings.
|
|
2058
|
+
|
|
2059
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbsettings.html#cfn-mediapackagev2-originendpoint-dashdvbsettings-errormetrics
|
|
2060
|
+
'''
|
|
2061
|
+
result = self._values.get("error_metrics")
|
|
2062
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashDvbMetricsReportingProperty"]]]], result)
|
|
2063
|
+
|
|
2064
|
+
@builtins.property
|
|
2065
|
+
def font_download(
|
|
2066
|
+
self,
|
|
2067
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashDvbFontDownloadProperty"]]:
|
|
2068
|
+
'''Subtitle font settings.
|
|
2069
|
+
|
|
2070
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbsettings.html#cfn-mediapackagev2-originendpoint-dashdvbsettings-fontdownload
|
|
2071
|
+
'''
|
|
2072
|
+
result = self._values.get("font_download")
|
|
2073
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashDvbFontDownloadProperty"]], result)
|
|
2074
|
+
|
|
2075
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2076
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2077
|
+
|
|
2078
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2079
|
+
return not (rhs == self)
|
|
2080
|
+
|
|
2081
|
+
def __repr__(self) -> str:
|
|
2082
|
+
return "DashDvbSettingsProperty(%s)" % ", ".join(
|
|
2083
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2084
|
+
)
|
|
2085
|
+
|
|
1679
2086
|
@jsii.data_type(
|
|
1680
2087
|
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.DashManifestConfigurationProperty",
|
|
1681
2088
|
jsii_struct_bases=[],
|
|
1682
2089
|
name_mapping={
|
|
1683
2090
|
"manifest_name": "manifestName",
|
|
2091
|
+
"base_urls": "baseUrls",
|
|
2092
|
+
"compactness": "compactness",
|
|
1684
2093
|
"drm_signaling": "drmSignaling",
|
|
2094
|
+
"dvb_settings": "dvbSettings",
|
|
1685
2095
|
"filter_configuration": "filterConfiguration",
|
|
1686
2096
|
"manifest_window_seconds": "manifestWindowSeconds",
|
|
1687
2097
|
"min_buffer_time_seconds": "minBufferTimeSeconds",
|
|
1688
2098
|
"min_update_period_seconds": "minUpdatePeriodSeconds",
|
|
1689
2099
|
"period_triggers": "periodTriggers",
|
|
2100
|
+
"profiles": "profiles",
|
|
2101
|
+
"program_information": "programInformation",
|
|
1690
2102
|
"scte_dash": "scteDash",
|
|
1691
2103
|
"segment_template_format": "segmentTemplateFormat",
|
|
2104
|
+
"subtitle_configuration": "subtitleConfiguration",
|
|
1692
2105
|
"suggested_presentation_delay_seconds": "suggestedPresentationDelaySeconds",
|
|
1693
2106
|
"utc_timing": "utcTiming",
|
|
1694
2107
|
},
|
|
@@ -1698,28 +2111,40 @@ class CfnOriginEndpoint(
|
|
|
1698
2111
|
self,
|
|
1699
2112
|
*,
|
|
1700
2113
|
manifest_name: builtins.str,
|
|
2114
|
+
base_urls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.DashBaseUrlProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2115
|
+
compactness: typing.Optional[builtins.str] = None,
|
|
1701
2116
|
drm_signaling: typing.Optional[builtins.str] = None,
|
|
2117
|
+
dvb_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.DashDvbSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1702
2118
|
filter_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.FilterConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1703
2119
|
manifest_window_seconds: typing.Optional[jsii.Number] = None,
|
|
1704
2120
|
min_buffer_time_seconds: typing.Optional[jsii.Number] = None,
|
|
1705
2121
|
min_update_period_seconds: typing.Optional[jsii.Number] = None,
|
|
1706
2122
|
period_triggers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2123
|
+
profiles: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2124
|
+
program_information: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.DashProgramInformationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1707
2125
|
scte_dash: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.ScteDashProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1708
2126
|
segment_template_format: typing.Optional[builtins.str] = None,
|
|
2127
|
+
subtitle_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.DashSubtitleConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1709
2128
|
suggested_presentation_delay_seconds: typing.Optional[jsii.Number] = None,
|
|
1710
2129
|
utc_timing: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.DashUtcTimingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1711
2130
|
) -> None:
|
|
1712
2131
|
'''The DASH manifest configuration associated with the origin endpoint.
|
|
1713
2132
|
|
|
1714
2133
|
:param manifest_name: A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint.
|
|
2134
|
+
:param base_urls: The base URLs to use for retrieving segments.
|
|
2135
|
+
:param compactness: The layout of the DASH manifest that MediaPackage produces. ``STANDARD`` indicates a default manifest, which is compacted. ``NONE`` indicates a full manifest. For information about compactness, see `DASH manifest compactness <https://docs.aws.amazon.com/mediapackage/latest/userguide/compacted.html>`_ in the *AWS Elemental MediaPackage v2 User Guide* .
|
|
1715
2136
|
:param drm_signaling: Determines how the DASH manifest signals the DRM content.
|
|
2137
|
+
:param dvb_settings: For endpoints that use the DVB-DASH profile only. The font download and error reporting information that you want MediaPackage to pass through to the manifest.
|
|
1716
2138
|
:param filter_configuration: Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.
|
|
1717
2139
|
:param manifest_window_seconds: The total duration (in seconds) of the manifest's content.
|
|
1718
2140
|
:param min_buffer_time_seconds: Minimum amount of content (in seconds) that a player must keep available in the buffer.
|
|
1719
2141
|
:param min_update_period_seconds: Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest.
|
|
1720
2142
|
:param period_triggers: A list of triggers that controls when AWS Elemental MediaPackage separates the MPEG-DASH manifest into multiple periods. Type ``ADS`` to indicate that AWS Elemental MediaPackage must create periods in the output manifest that correspond to SCTE-35 ad markers in the input source. Leave this value empty to indicate that the manifest is contained all in one period. For more information about periods in the DASH manifest, see `Multi-period DASH in AWS Elemental MediaPackage <https://docs.aws.amazon.com/mediapackage/latest/userguide/multi-period.html>`_ .
|
|
2143
|
+
:param profiles: The profile that the output is compliant with.
|
|
2144
|
+
:param program_information: Details about the content that you want MediaPackage to pass through in the manifest to the playback device.
|
|
1721
2145
|
:param scte_dash: The SCTE configuration.
|
|
1722
2146
|
:param segment_template_format: Determines the type of variable used in the ``media`` URL of the ``SegmentTemplate`` tag in the manifest. Also specifies if segment timeline information is included in ``SegmentTimeline`` or ``SegmentTemplate`` . Value description: - ``NUMBER_WITH_TIMELINE`` - The ``$Number$`` variable is used in the ``media`` URL. The value of this variable is the sequential number of the segment. A full ``SegmentTimeline`` object is presented in each ``SegmentTemplate`` .
|
|
2147
|
+
:param subtitle_configuration: The configuration for DASH subtitles.
|
|
1723
2148
|
:param suggested_presentation_delay_seconds: The amount of time (in seconds) that the player should be from the end of the manifest.
|
|
1724
2149
|
:param utc_timing: Determines the type of UTC timing included in the DASH Media Presentation Description (MPD).
|
|
1725
2150
|
|
|
@@ -1736,7 +2161,29 @@ class CfnOriginEndpoint(
|
|
|
1736
2161
|
manifest_name="manifestName",
|
|
1737
2162
|
|
|
1738
2163
|
# the properties below are optional
|
|
2164
|
+
base_urls=[mediapackagev2.CfnOriginEndpoint.DashBaseUrlProperty(
|
|
2165
|
+
url="url",
|
|
2166
|
+
|
|
2167
|
+
# the properties below are optional
|
|
2168
|
+
dvb_priority=123,
|
|
2169
|
+
dvb_weight=123,
|
|
2170
|
+
service_location="serviceLocation"
|
|
2171
|
+
)],
|
|
2172
|
+
compactness="compactness",
|
|
1739
2173
|
drm_signaling="drmSignaling",
|
|
2174
|
+
dvb_settings=mediapackagev2.CfnOriginEndpoint.DashDvbSettingsProperty(
|
|
2175
|
+
error_metrics=[mediapackagev2.CfnOriginEndpoint.DashDvbMetricsReportingProperty(
|
|
2176
|
+
reporting_url="reportingUrl",
|
|
2177
|
+
|
|
2178
|
+
# the properties below are optional
|
|
2179
|
+
probability=123
|
|
2180
|
+
)],
|
|
2181
|
+
font_download=mediapackagev2.CfnOriginEndpoint.DashDvbFontDownloadProperty(
|
|
2182
|
+
font_family="fontFamily",
|
|
2183
|
+
mime_type="mimeType",
|
|
2184
|
+
url="url"
|
|
2185
|
+
)
|
|
2186
|
+
),
|
|
1740
2187
|
filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
|
|
1741
2188
|
clip_start_time="clipStartTime",
|
|
1742
2189
|
end="end",
|
|
@@ -1748,10 +2195,23 @@ class CfnOriginEndpoint(
|
|
|
1748
2195
|
min_buffer_time_seconds=123,
|
|
1749
2196
|
min_update_period_seconds=123,
|
|
1750
2197
|
period_triggers=["periodTriggers"],
|
|
2198
|
+
profiles=["profiles"],
|
|
2199
|
+
program_information=mediapackagev2.CfnOriginEndpoint.DashProgramInformationProperty(
|
|
2200
|
+
copyright="copyright",
|
|
2201
|
+
language_code="languageCode",
|
|
2202
|
+
more_information_url="moreInformationUrl",
|
|
2203
|
+
source="source",
|
|
2204
|
+
title="title"
|
|
2205
|
+
),
|
|
1751
2206
|
scte_dash=mediapackagev2.CfnOriginEndpoint.ScteDashProperty(
|
|
1752
2207
|
ad_marker_dash="adMarkerDash"
|
|
1753
2208
|
),
|
|
1754
2209
|
segment_template_format="segmentTemplateFormat",
|
|
2210
|
+
subtitle_configuration=mediapackagev2.CfnOriginEndpoint.DashSubtitleConfigurationProperty(
|
|
2211
|
+
ttml_configuration=mediapackagev2.CfnOriginEndpoint.DashTtmlConfigurationProperty(
|
|
2212
|
+
ttml_profile="ttmlProfile"
|
|
2213
|
+
)
|
|
2214
|
+
),
|
|
1755
2215
|
suggested_presentation_delay_seconds=123,
|
|
1756
2216
|
utc_timing=mediapackagev2.CfnOriginEndpoint.DashUtcTimingProperty(
|
|
1757
2217
|
timing_mode="timingMode",
|
|
@@ -1762,21 +2222,33 @@ class CfnOriginEndpoint(
|
|
|
1762
2222
|
if __debug__:
|
|
1763
2223
|
type_hints = typing.get_type_hints(_typecheckingstub__20e3bfad4ae40517c778173bab356d7bd208497ee33a09fdc9e380135384dfc6)
|
|
1764
2224
|
check_type(argname="argument manifest_name", value=manifest_name, expected_type=type_hints["manifest_name"])
|
|
2225
|
+
check_type(argname="argument base_urls", value=base_urls, expected_type=type_hints["base_urls"])
|
|
2226
|
+
check_type(argname="argument compactness", value=compactness, expected_type=type_hints["compactness"])
|
|
1765
2227
|
check_type(argname="argument drm_signaling", value=drm_signaling, expected_type=type_hints["drm_signaling"])
|
|
2228
|
+
check_type(argname="argument dvb_settings", value=dvb_settings, expected_type=type_hints["dvb_settings"])
|
|
1766
2229
|
check_type(argname="argument filter_configuration", value=filter_configuration, expected_type=type_hints["filter_configuration"])
|
|
1767
2230
|
check_type(argname="argument manifest_window_seconds", value=manifest_window_seconds, expected_type=type_hints["manifest_window_seconds"])
|
|
1768
2231
|
check_type(argname="argument min_buffer_time_seconds", value=min_buffer_time_seconds, expected_type=type_hints["min_buffer_time_seconds"])
|
|
1769
2232
|
check_type(argname="argument min_update_period_seconds", value=min_update_period_seconds, expected_type=type_hints["min_update_period_seconds"])
|
|
1770
2233
|
check_type(argname="argument period_triggers", value=period_triggers, expected_type=type_hints["period_triggers"])
|
|
2234
|
+
check_type(argname="argument profiles", value=profiles, expected_type=type_hints["profiles"])
|
|
2235
|
+
check_type(argname="argument program_information", value=program_information, expected_type=type_hints["program_information"])
|
|
1771
2236
|
check_type(argname="argument scte_dash", value=scte_dash, expected_type=type_hints["scte_dash"])
|
|
1772
2237
|
check_type(argname="argument segment_template_format", value=segment_template_format, expected_type=type_hints["segment_template_format"])
|
|
2238
|
+
check_type(argname="argument subtitle_configuration", value=subtitle_configuration, expected_type=type_hints["subtitle_configuration"])
|
|
1773
2239
|
check_type(argname="argument suggested_presentation_delay_seconds", value=suggested_presentation_delay_seconds, expected_type=type_hints["suggested_presentation_delay_seconds"])
|
|
1774
2240
|
check_type(argname="argument utc_timing", value=utc_timing, expected_type=type_hints["utc_timing"])
|
|
1775
2241
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1776
2242
|
"manifest_name": manifest_name,
|
|
1777
2243
|
}
|
|
2244
|
+
if base_urls is not None:
|
|
2245
|
+
self._values["base_urls"] = base_urls
|
|
2246
|
+
if compactness is not None:
|
|
2247
|
+
self._values["compactness"] = compactness
|
|
1778
2248
|
if drm_signaling is not None:
|
|
1779
2249
|
self._values["drm_signaling"] = drm_signaling
|
|
2250
|
+
if dvb_settings is not None:
|
|
2251
|
+
self._values["dvb_settings"] = dvb_settings
|
|
1780
2252
|
if filter_configuration is not None:
|
|
1781
2253
|
self._values["filter_configuration"] = filter_configuration
|
|
1782
2254
|
if manifest_window_seconds is not None:
|
|
@@ -1787,10 +2259,16 @@ class CfnOriginEndpoint(
|
|
|
1787
2259
|
self._values["min_update_period_seconds"] = min_update_period_seconds
|
|
1788
2260
|
if period_triggers is not None:
|
|
1789
2261
|
self._values["period_triggers"] = period_triggers
|
|
2262
|
+
if profiles is not None:
|
|
2263
|
+
self._values["profiles"] = profiles
|
|
2264
|
+
if program_information is not None:
|
|
2265
|
+
self._values["program_information"] = program_information
|
|
1790
2266
|
if scte_dash is not None:
|
|
1791
2267
|
self._values["scte_dash"] = scte_dash
|
|
1792
2268
|
if segment_template_format is not None:
|
|
1793
2269
|
self._values["segment_template_format"] = segment_template_format
|
|
2270
|
+
if subtitle_configuration is not None:
|
|
2271
|
+
self._values["subtitle_configuration"] = subtitle_configuration
|
|
1794
2272
|
if suggested_presentation_delay_seconds is not None:
|
|
1795
2273
|
self._values["suggested_presentation_delay_seconds"] = suggested_presentation_delay_seconds
|
|
1796
2274
|
if utc_timing is not None:
|
|
@@ -1808,6 +2286,30 @@ class CfnOriginEndpoint(
|
|
|
1808
2286
|
assert result is not None, "Required property 'manifest_name' is missing"
|
|
1809
2287
|
return typing.cast(builtins.str, result)
|
|
1810
2288
|
|
|
2289
|
+
@builtins.property
|
|
2290
|
+
def base_urls(
|
|
2291
|
+
self,
|
|
2292
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashBaseUrlProperty"]]]]:
|
|
2293
|
+
'''The base URLs to use for retrieving segments.
|
|
2294
|
+
|
|
2295
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-baseurls
|
|
2296
|
+
'''
|
|
2297
|
+
result = self._values.get("base_urls")
|
|
2298
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashBaseUrlProperty"]]]], result)
|
|
2299
|
+
|
|
2300
|
+
@builtins.property
|
|
2301
|
+
def compactness(self) -> typing.Optional[builtins.str]:
|
|
2302
|
+
'''The layout of the DASH manifest that MediaPackage produces.
|
|
2303
|
+
|
|
2304
|
+
``STANDARD`` indicates a default manifest, which is compacted. ``NONE`` indicates a full manifest.
|
|
2305
|
+
|
|
2306
|
+
For information about compactness, see `DASH manifest compactness <https://docs.aws.amazon.com/mediapackage/latest/userguide/compacted.html>`_ in the *AWS Elemental MediaPackage v2 User Guide* .
|
|
2307
|
+
|
|
2308
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-compactness
|
|
2309
|
+
'''
|
|
2310
|
+
result = self._values.get("compactness")
|
|
2311
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2312
|
+
|
|
1811
2313
|
@builtins.property
|
|
1812
2314
|
def drm_signaling(self) -> typing.Optional[builtins.str]:
|
|
1813
2315
|
'''Determines how the DASH manifest signals the DRM content.
|
|
@@ -1817,6 +2319,19 @@ class CfnOriginEndpoint(
|
|
|
1817
2319
|
result = self._values.get("drm_signaling")
|
|
1818
2320
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1819
2321
|
|
|
2322
|
+
@builtins.property
|
|
2323
|
+
def dvb_settings(
|
|
2324
|
+
self,
|
|
2325
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashDvbSettingsProperty"]]:
|
|
2326
|
+
'''For endpoints that use the DVB-DASH profile only.
|
|
2327
|
+
|
|
2328
|
+
The font download and error reporting information that you want MediaPackage to pass through to the manifest.
|
|
2329
|
+
|
|
2330
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-dvbsettings
|
|
2331
|
+
'''
|
|
2332
|
+
result = self._values.get("dvb_settings")
|
|
2333
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashDvbSettingsProperty"]], result)
|
|
2334
|
+
|
|
1820
2335
|
@builtins.property
|
|
1821
2336
|
def filter_configuration(
|
|
1822
2337
|
self,
|
|
@@ -1866,6 +2381,26 @@ class CfnOriginEndpoint(
|
|
|
1866
2381
|
result = self._values.get("period_triggers")
|
|
1867
2382
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
1868
2383
|
|
|
2384
|
+
@builtins.property
|
|
2385
|
+
def profiles(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
2386
|
+
'''The profile that the output is compliant with.
|
|
2387
|
+
|
|
2388
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-profiles
|
|
2389
|
+
'''
|
|
2390
|
+
result = self._values.get("profiles")
|
|
2391
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
2392
|
+
|
|
2393
|
+
@builtins.property
|
|
2394
|
+
def program_information(
|
|
2395
|
+
self,
|
|
2396
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashProgramInformationProperty"]]:
|
|
2397
|
+
'''Details about the content that you want MediaPackage to pass through in the manifest to the playback device.
|
|
2398
|
+
|
|
2399
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-programinformation
|
|
2400
|
+
'''
|
|
2401
|
+
result = self._values.get("program_information")
|
|
2402
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashProgramInformationProperty"]], result)
|
|
2403
|
+
|
|
1869
2404
|
@builtins.property
|
|
1870
2405
|
def scte_dash(
|
|
1871
2406
|
self,
|
|
@@ -1892,6 +2427,17 @@ class CfnOriginEndpoint(
|
|
|
1892
2427
|
result = self._values.get("segment_template_format")
|
|
1893
2428
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1894
2429
|
|
|
2430
|
+
@builtins.property
|
|
2431
|
+
def subtitle_configuration(
|
|
2432
|
+
self,
|
|
2433
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashSubtitleConfigurationProperty"]]:
|
|
2434
|
+
'''The configuration for DASH subtitles.
|
|
2435
|
+
|
|
2436
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-subtitleconfiguration
|
|
2437
|
+
'''
|
|
2438
|
+
result = self._values.get("subtitle_configuration")
|
|
2439
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashSubtitleConfigurationProperty"]], result)
|
|
2440
|
+
|
|
1895
2441
|
@builtins.property
|
|
1896
2442
|
def suggested_presentation_delay_seconds(self) -> typing.Optional[jsii.Number]:
|
|
1897
2443
|
'''The amount of time (in seconds) that the player should be from the end of the manifest.
|
|
@@ -1923,6 +2469,240 @@ class CfnOriginEndpoint(
|
|
|
1923
2469
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
1924
2470
|
)
|
|
1925
2471
|
|
|
2472
|
+
@jsii.data_type(
|
|
2473
|
+
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.DashProgramInformationProperty",
|
|
2474
|
+
jsii_struct_bases=[],
|
|
2475
|
+
name_mapping={
|
|
2476
|
+
"copyright": "copyright",
|
|
2477
|
+
"language_code": "languageCode",
|
|
2478
|
+
"more_information_url": "moreInformationUrl",
|
|
2479
|
+
"source": "source",
|
|
2480
|
+
"title": "title",
|
|
2481
|
+
},
|
|
2482
|
+
)
|
|
2483
|
+
class DashProgramInformationProperty:
|
|
2484
|
+
def __init__(
|
|
2485
|
+
self,
|
|
2486
|
+
*,
|
|
2487
|
+
copyright: typing.Optional[builtins.str] = None,
|
|
2488
|
+
language_code: typing.Optional[builtins.str] = None,
|
|
2489
|
+
more_information_url: typing.Optional[builtins.str] = None,
|
|
2490
|
+
source: typing.Optional[builtins.str] = None,
|
|
2491
|
+
title: typing.Optional[builtins.str] = None,
|
|
2492
|
+
) -> None:
|
|
2493
|
+
'''Details about the content that you want MediaPackage to pass through in the manifest to the playback device.
|
|
2494
|
+
|
|
2495
|
+
:param copyright: A copyright statement about the content.
|
|
2496
|
+
:param language_code: The language code for this manifest.
|
|
2497
|
+
:param more_information_url: An absolute URL that contains more information about this content.
|
|
2498
|
+
:param source: Information about the content provider.
|
|
2499
|
+
:param title: The title for the manifest.
|
|
2500
|
+
|
|
2501
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprograminformation.html
|
|
2502
|
+
:exampleMetadata: fixture=_generated
|
|
2503
|
+
|
|
2504
|
+
Example::
|
|
2505
|
+
|
|
2506
|
+
# The code below shows an example of how to instantiate this type.
|
|
2507
|
+
# The values are placeholders you should change.
|
|
2508
|
+
from aws_cdk import aws_mediapackagev2 as mediapackagev2
|
|
2509
|
+
|
|
2510
|
+
dash_program_information_property = mediapackagev2.CfnOriginEndpoint.DashProgramInformationProperty(
|
|
2511
|
+
copyright="copyright",
|
|
2512
|
+
language_code="languageCode",
|
|
2513
|
+
more_information_url="moreInformationUrl",
|
|
2514
|
+
source="source",
|
|
2515
|
+
title="title"
|
|
2516
|
+
)
|
|
2517
|
+
'''
|
|
2518
|
+
if __debug__:
|
|
2519
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5b0c2b5b70e24041767a172f1ebbd9317cd4ce50194b747d40b0c075a554bb92)
|
|
2520
|
+
check_type(argname="argument copyright", value=copyright, expected_type=type_hints["copyright"])
|
|
2521
|
+
check_type(argname="argument language_code", value=language_code, expected_type=type_hints["language_code"])
|
|
2522
|
+
check_type(argname="argument more_information_url", value=more_information_url, expected_type=type_hints["more_information_url"])
|
|
2523
|
+
check_type(argname="argument source", value=source, expected_type=type_hints["source"])
|
|
2524
|
+
check_type(argname="argument title", value=title, expected_type=type_hints["title"])
|
|
2525
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2526
|
+
if copyright is not None:
|
|
2527
|
+
self._values["copyright"] = copyright
|
|
2528
|
+
if language_code is not None:
|
|
2529
|
+
self._values["language_code"] = language_code
|
|
2530
|
+
if more_information_url is not None:
|
|
2531
|
+
self._values["more_information_url"] = more_information_url
|
|
2532
|
+
if source is not None:
|
|
2533
|
+
self._values["source"] = source
|
|
2534
|
+
if title is not None:
|
|
2535
|
+
self._values["title"] = title
|
|
2536
|
+
|
|
2537
|
+
@builtins.property
|
|
2538
|
+
def copyright(self) -> typing.Optional[builtins.str]:
|
|
2539
|
+
'''A copyright statement about the content.
|
|
2540
|
+
|
|
2541
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprograminformation.html#cfn-mediapackagev2-originendpoint-dashprograminformation-copyright
|
|
2542
|
+
'''
|
|
2543
|
+
result = self._values.get("copyright")
|
|
2544
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2545
|
+
|
|
2546
|
+
@builtins.property
|
|
2547
|
+
def language_code(self) -> typing.Optional[builtins.str]:
|
|
2548
|
+
'''The language code for this manifest.
|
|
2549
|
+
|
|
2550
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprograminformation.html#cfn-mediapackagev2-originendpoint-dashprograminformation-languagecode
|
|
2551
|
+
'''
|
|
2552
|
+
result = self._values.get("language_code")
|
|
2553
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2554
|
+
|
|
2555
|
+
@builtins.property
|
|
2556
|
+
def more_information_url(self) -> typing.Optional[builtins.str]:
|
|
2557
|
+
'''An absolute URL that contains more information about this content.
|
|
2558
|
+
|
|
2559
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprograminformation.html#cfn-mediapackagev2-originendpoint-dashprograminformation-moreinformationurl
|
|
2560
|
+
'''
|
|
2561
|
+
result = self._values.get("more_information_url")
|
|
2562
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2563
|
+
|
|
2564
|
+
@builtins.property
|
|
2565
|
+
def source(self) -> typing.Optional[builtins.str]:
|
|
2566
|
+
'''Information about the content provider.
|
|
2567
|
+
|
|
2568
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprograminformation.html#cfn-mediapackagev2-originendpoint-dashprograminformation-source
|
|
2569
|
+
'''
|
|
2570
|
+
result = self._values.get("source")
|
|
2571
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2572
|
+
|
|
2573
|
+
@builtins.property
|
|
2574
|
+
def title(self) -> typing.Optional[builtins.str]:
|
|
2575
|
+
'''The title for the manifest.
|
|
2576
|
+
|
|
2577
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprograminformation.html#cfn-mediapackagev2-originendpoint-dashprograminformation-title
|
|
2578
|
+
'''
|
|
2579
|
+
result = self._values.get("title")
|
|
2580
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2581
|
+
|
|
2582
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2583
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2584
|
+
|
|
2585
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2586
|
+
return not (rhs == self)
|
|
2587
|
+
|
|
2588
|
+
def __repr__(self) -> str:
|
|
2589
|
+
return "DashProgramInformationProperty(%s)" % ", ".join(
|
|
2590
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2591
|
+
)
|
|
2592
|
+
|
|
2593
|
+
@jsii.data_type(
|
|
2594
|
+
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.DashSubtitleConfigurationProperty",
|
|
2595
|
+
jsii_struct_bases=[],
|
|
2596
|
+
name_mapping={"ttml_configuration": "ttmlConfiguration"},
|
|
2597
|
+
)
|
|
2598
|
+
class DashSubtitleConfigurationProperty:
|
|
2599
|
+
def __init__(
|
|
2600
|
+
self,
|
|
2601
|
+
*,
|
|
2602
|
+
ttml_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.DashTtmlConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2603
|
+
) -> None:
|
|
2604
|
+
'''The configuration for DASH subtitles.
|
|
2605
|
+
|
|
2606
|
+
:param ttml_configuration: Settings for TTML subtitles.
|
|
2607
|
+
|
|
2608
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashsubtitleconfiguration.html
|
|
2609
|
+
:exampleMetadata: fixture=_generated
|
|
2610
|
+
|
|
2611
|
+
Example::
|
|
2612
|
+
|
|
2613
|
+
# The code below shows an example of how to instantiate this type.
|
|
2614
|
+
# The values are placeholders you should change.
|
|
2615
|
+
from aws_cdk import aws_mediapackagev2 as mediapackagev2
|
|
2616
|
+
|
|
2617
|
+
dash_subtitle_configuration_property = mediapackagev2.CfnOriginEndpoint.DashSubtitleConfigurationProperty(
|
|
2618
|
+
ttml_configuration=mediapackagev2.CfnOriginEndpoint.DashTtmlConfigurationProperty(
|
|
2619
|
+
ttml_profile="ttmlProfile"
|
|
2620
|
+
)
|
|
2621
|
+
)
|
|
2622
|
+
'''
|
|
2623
|
+
if __debug__:
|
|
2624
|
+
type_hints = typing.get_type_hints(_typecheckingstub__aa51912df0060cf290274ace134d0cb16e34e1de7ea689b411eeae296d9a8155)
|
|
2625
|
+
check_type(argname="argument ttml_configuration", value=ttml_configuration, expected_type=type_hints["ttml_configuration"])
|
|
2626
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2627
|
+
if ttml_configuration is not None:
|
|
2628
|
+
self._values["ttml_configuration"] = ttml_configuration
|
|
2629
|
+
|
|
2630
|
+
@builtins.property
|
|
2631
|
+
def ttml_configuration(
|
|
2632
|
+
self,
|
|
2633
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashTtmlConfigurationProperty"]]:
|
|
2634
|
+
'''Settings for TTML subtitles.
|
|
2635
|
+
|
|
2636
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashsubtitleconfiguration.html#cfn-mediapackagev2-originendpoint-dashsubtitleconfiguration-ttmlconfiguration
|
|
2637
|
+
'''
|
|
2638
|
+
result = self._values.get("ttml_configuration")
|
|
2639
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashTtmlConfigurationProperty"]], result)
|
|
2640
|
+
|
|
2641
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2642
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2643
|
+
|
|
2644
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2645
|
+
return not (rhs == self)
|
|
2646
|
+
|
|
2647
|
+
def __repr__(self) -> str:
|
|
2648
|
+
return "DashSubtitleConfigurationProperty(%s)" % ", ".join(
|
|
2649
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2650
|
+
)
|
|
2651
|
+
|
|
2652
|
+
@jsii.data_type(
|
|
2653
|
+
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.DashTtmlConfigurationProperty",
|
|
2654
|
+
jsii_struct_bases=[],
|
|
2655
|
+
name_mapping={"ttml_profile": "ttmlProfile"},
|
|
2656
|
+
)
|
|
2657
|
+
class DashTtmlConfigurationProperty:
|
|
2658
|
+
def __init__(self, *, ttml_profile: builtins.str) -> None:
|
|
2659
|
+
'''The settings for TTML subtitles.
|
|
2660
|
+
|
|
2661
|
+
:param ttml_profile: The profile that MediaPackage uses when signaling subtitles in the manifest. ``IMSC`` is the default profile. ``EBU-TT-D`` produces subtitles that are compliant with the EBU-TT-D TTML profile. MediaPackage passes through subtitle styles to the manifest. For more information about EBU-TT-D subtitles, see `EBU-TT-D Subtitling Distribution Format <https://docs.aws.amazon.com/https://tech.ebu.ch/publications/tech3380>`_ .
|
|
2662
|
+
|
|
2663
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashttmlconfiguration.html
|
|
2664
|
+
:exampleMetadata: fixture=_generated
|
|
2665
|
+
|
|
2666
|
+
Example::
|
|
2667
|
+
|
|
2668
|
+
# The code below shows an example of how to instantiate this type.
|
|
2669
|
+
# The values are placeholders you should change.
|
|
2670
|
+
from aws_cdk import aws_mediapackagev2 as mediapackagev2
|
|
2671
|
+
|
|
2672
|
+
dash_ttml_configuration_property = mediapackagev2.CfnOriginEndpoint.DashTtmlConfigurationProperty(
|
|
2673
|
+
ttml_profile="ttmlProfile"
|
|
2674
|
+
)
|
|
2675
|
+
'''
|
|
2676
|
+
if __debug__:
|
|
2677
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bba187ab72699f6dc21195cb98838c8f292af76576ca0254079260c1346c116d)
|
|
2678
|
+
check_type(argname="argument ttml_profile", value=ttml_profile, expected_type=type_hints["ttml_profile"])
|
|
2679
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2680
|
+
"ttml_profile": ttml_profile,
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
@builtins.property
|
|
2684
|
+
def ttml_profile(self) -> builtins.str:
|
|
2685
|
+
'''The profile that MediaPackage uses when signaling subtitles in the manifest.
|
|
2686
|
+
|
|
2687
|
+
``IMSC`` is the default profile. ``EBU-TT-D`` produces subtitles that are compliant with the EBU-TT-D TTML profile. MediaPackage passes through subtitle styles to the manifest. For more information about EBU-TT-D subtitles, see `EBU-TT-D Subtitling Distribution Format <https://docs.aws.amazon.com/https://tech.ebu.ch/publications/tech3380>`_ .
|
|
2688
|
+
|
|
2689
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashttmlconfiguration.html#cfn-mediapackagev2-originendpoint-dashttmlconfiguration-ttmlprofile
|
|
2690
|
+
'''
|
|
2691
|
+
result = self._values.get("ttml_profile")
|
|
2692
|
+
assert result is not None, "Required property 'ttml_profile' is missing"
|
|
2693
|
+
return typing.cast(builtins.str, result)
|
|
2694
|
+
|
|
2695
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2696
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2697
|
+
|
|
2698
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2699
|
+
return not (rhs == self)
|
|
2700
|
+
|
|
2701
|
+
def __repr__(self) -> str:
|
|
2702
|
+
return "DashTtmlConfigurationProperty(%s)" % ", ".join(
|
|
2703
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2704
|
+
)
|
|
2705
|
+
|
|
1926
2706
|
@jsii.data_type(
|
|
1927
2707
|
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.DashUtcTimingProperty",
|
|
1928
2708
|
jsii_struct_bases=[],
|
|
@@ -3813,7 +4593,29 @@ class CfnOriginEndpointProps:
|
|
|
3813
4593
|
manifest_name="manifestName",
|
|
3814
4594
|
|
|
3815
4595
|
# the properties below are optional
|
|
4596
|
+
base_urls=[mediapackagev2.CfnOriginEndpoint.DashBaseUrlProperty(
|
|
4597
|
+
url="url",
|
|
4598
|
+
|
|
4599
|
+
# the properties below are optional
|
|
4600
|
+
dvb_priority=123,
|
|
4601
|
+
dvb_weight=123,
|
|
4602
|
+
service_location="serviceLocation"
|
|
4603
|
+
)],
|
|
4604
|
+
compactness="compactness",
|
|
3816
4605
|
drm_signaling="drmSignaling",
|
|
4606
|
+
dvb_settings=mediapackagev2.CfnOriginEndpoint.DashDvbSettingsProperty(
|
|
4607
|
+
error_metrics=[mediapackagev2.CfnOriginEndpoint.DashDvbMetricsReportingProperty(
|
|
4608
|
+
reporting_url="reportingUrl",
|
|
4609
|
+
|
|
4610
|
+
# the properties below are optional
|
|
4611
|
+
probability=123
|
|
4612
|
+
)],
|
|
4613
|
+
font_download=mediapackagev2.CfnOriginEndpoint.DashDvbFontDownloadProperty(
|
|
4614
|
+
font_family="fontFamily",
|
|
4615
|
+
mime_type="mimeType",
|
|
4616
|
+
url="url"
|
|
4617
|
+
)
|
|
4618
|
+
),
|
|
3817
4619
|
filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
|
|
3818
4620
|
clip_start_time="clipStartTime",
|
|
3819
4621
|
end="end",
|
|
@@ -3825,10 +4627,23 @@ class CfnOriginEndpointProps:
|
|
|
3825
4627
|
min_buffer_time_seconds=123,
|
|
3826
4628
|
min_update_period_seconds=123,
|
|
3827
4629
|
period_triggers=["periodTriggers"],
|
|
4630
|
+
profiles=["profiles"],
|
|
4631
|
+
program_information=mediapackagev2.CfnOriginEndpoint.DashProgramInformationProperty(
|
|
4632
|
+
copyright="copyright",
|
|
4633
|
+
language_code="languageCode",
|
|
4634
|
+
more_information_url="moreInformationUrl",
|
|
4635
|
+
source="source",
|
|
4636
|
+
title="title"
|
|
4637
|
+
),
|
|
3828
4638
|
scte_dash=mediapackagev2.CfnOriginEndpoint.ScteDashProperty(
|
|
3829
4639
|
ad_marker_dash="adMarkerDash"
|
|
3830
4640
|
),
|
|
3831
4641
|
segment_template_format="segmentTemplateFormat",
|
|
4642
|
+
subtitle_configuration=mediapackagev2.CfnOriginEndpoint.DashSubtitleConfigurationProperty(
|
|
4643
|
+
ttml_configuration=mediapackagev2.CfnOriginEndpoint.DashTtmlConfigurationProperty(
|
|
4644
|
+
ttml_profile="ttmlProfile"
|
|
4645
|
+
)
|
|
4646
|
+
),
|
|
3832
4647
|
suggested_presentation_delay_seconds=123,
|
|
3833
4648
|
utc_timing=mediapackagev2.CfnOriginEndpoint.DashUtcTimingProperty(
|
|
3834
4649
|
timing_mode="timingMode",
|
|
@@ -4424,23 +5239,89 @@ def _typecheckingstub__65cc25545f38d01b8ccc61c9494f0994747ef22d12fc3c94c71cb091a
|
|
|
4424
5239
|
"""Type checking stubs"""
|
|
4425
5240
|
pass
|
|
4426
5241
|
|
|
5242
|
+
def _typecheckingstub__be1d880fe401caed5e0186c4f4a6b76f8d63f2e78cf2fcbb490b66d185d4af29(
|
|
5243
|
+
*,
|
|
5244
|
+
url: builtins.str,
|
|
5245
|
+
dvb_priority: typing.Optional[jsii.Number] = None,
|
|
5246
|
+
dvb_weight: typing.Optional[jsii.Number] = None,
|
|
5247
|
+
service_location: typing.Optional[builtins.str] = None,
|
|
5248
|
+
) -> None:
|
|
5249
|
+
"""Type checking stubs"""
|
|
5250
|
+
pass
|
|
5251
|
+
|
|
5252
|
+
def _typecheckingstub__81c2694b55243cfd80ec8b5b8d807b1d991f3ae38973b41f6fb77d9d5ea24965(
|
|
5253
|
+
*,
|
|
5254
|
+
font_family: typing.Optional[builtins.str] = None,
|
|
5255
|
+
mime_type: typing.Optional[builtins.str] = None,
|
|
5256
|
+
url: typing.Optional[builtins.str] = None,
|
|
5257
|
+
) -> None:
|
|
5258
|
+
"""Type checking stubs"""
|
|
5259
|
+
pass
|
|
5260
|
+
|
|
5261
|
+
def _typecheckingstub__fadf127f9f82d1f5f09e73b8a4d72d5685c1236b84cdaa5c6132a7ab4774e495(
|
|
5262
|
+
*,
|
|
5263
|
+
reporting_url: builtins.str,
|
|
5264
|
+
probability: typing.Optional[jsii.Number] = None,
|
|
5265
|
+
) -> None:
|
|
5266
|
+
"""Type checking stubs"""
|
|
5267
|
+
pass
|
|
5268
|
+
|
|
5269
|
+
def _typecheckingstub__280a149dc1f481cd4b69b2b250e75d424c71bee34e699369b2294841b0aed7d8(
|
|
5270
|
+
*,
|
|
5271
|
+
error_metrics: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.DashDvbMetricsReportingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
5272
|
+
font_download: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.DashDvbFontDownloadProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5273
|
+
) -> None:
|
|
5274
|
+
"""Type checking stubs"""
|
|
5275
|
+
pass
|
|
5276
|
+
|
|
4427
5277
|
def _typecheckingstub__20e3bfad4ae40517c778173bab356d7bd208497ee33a09fdc9e380135384dfc6(
|
|
4428
5278
|
*,
|
|
4429
5279
|
manifest_name: builtins.str,
|
|
5280
|
+
base_urls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.DashBaseUrlProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
5281
|
+
compactness: typing.Optional[builtins.str] = None,
|
|
4430
5282
|
drm_signaling: typing.Optional[builtins.str] = None,
|
|
5283
|
+
dvb_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.DashDvbSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4431
5284
|
filter_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.FilterConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4432
5285
|
manifest_window_seconds: typing.Optional[jsii.Number] = None,
|
|
4433
5286
|
min_buffer_time_seconds: typing.Optional[jsii.Number] = None,
|
|
4434
5287
|
min_update_period_seconds: typing.Optional[jsii.Number] = None,
|
|
4435
5288
|
period_triggers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
5289
|
+
profiles: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
5290
|
+
program_information: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.DashProgramInformationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4436
5291
|
scte_dash: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.ScteDashProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4437
5292
|
segment_template_format: typing.Optional[builtins.str] = None,
|
|
5293
|
+
subtitle_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.DashSubtitleConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4438
5294
|
suggested_presentation_delay_seconds: typing.Optional[jsii.Number] = None,
|
|
4439
5295
|
utc_timing: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.DashUtcTimingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4440
5296
|
) -> None:
|
|
4441
5297
|
"""Type checking stubs"""
|
|
4442
5298
|
pass
|
|
4443
5299
|
|
|
5300
|
+
def _typecheckingstub__5b0c2b5b70e24041767a172f1ebbd9317cd4ce50194b747d40b0c075a554bb92(
|
|
5301
|
+
*,
|
|
5302
|
+
copyright: typing.Optional[builtins.str] = None,
|
|
5303
|
+
language_code: typing.Optional[builtins.str] = None,
|
|
5304
|
+
more_information_url: typing.Optional[builtins.str] = None,
|
|
5305
|
+
source: typing.Optional[builtins.str] = None,
|
|
5306
|
+
title: typing.Optional[builtins.str] = None,
|
|
5307
|
+
) -> None:
|
|
5308
|
+
"""Type checking stubs"""
|
|
5309
|
+
pass
|
|
5310
|
+
|
|
5311
|
+
def _typecheckingstub__aa51912df0060cf290274ace134d0cb16e34e1de7ea689b411eeae296d9a8155(
|
|
5312
|
+
*,
|
|
5313
|
+
ttml_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.DashTtmlConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5314
|
+
) -> None:
|
|
5315
|
+
"""Type checking stubs"""
|
|
5316
|
+
pass
|
|
5317
|
+
|
|
5318
|
+
def _typecheckingstub__bba187ab72699f6dc21195cb98838c8f292af76576ca0254079260c1346c116d(
|
|
5319
|
+
*,
|
|
5320
|
+
ttml_profile: builtins.str,
|
|
5321
|
+
) -> None:
|
|
5322
|
+
"""Type checking stubs"""
|
|
5323
|
+
pass
|
|
5324
|
+
|
|
4444
5325
|
def _typecheckingstub__09bad37e3e4d3382385a9f8aab252d146616b680c49d6ef16671c82ef1248794(
|
|
4445
5326
|
*,
|
|
4446
5327
|
timing_mode: typing.Optional[builtins.str] = None,
|