aws-cdk-lib 2.144.0__py3-none-any.whl → 2.146.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/__init__.py +3 -1
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.144.0.jsii.tgz → aws-cdk-lib@2.146.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2_authorizers/__init__.py +27 -0
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +27 -0
- aws_cdk/aws_appsync/__init__.py +62 -0
- aws_cdk/aws_autoscaling/__init__.py +416 -60
- aws_cdk/aws_chatbot/__init__.py +38 -0
- aws_cdk/aws_codebuild/__init__.py +598 -19
- aws_cdk/aws_config/__init__.py +1305 -45
- aws_cdk/aws_connect/__init__.py +86 -0
- aws_cdk/aws_ec2/__init__.py +42 -3
- aws_cdk/aws_ecs/__init__.py +110 -1
- aws_cdk/aws_eks/__init__.py +1495 -72
- aws_cdk/aws_iam/__init__.py +16 -11
- aws_cdk/aws_lambda/__init__.py +12 -0
- aws_cdk/aws_logs/__init__.py +114 -8
- aws_cdk/aws_logs_destinations/__init__.py +11 -9
- aws_cdk/aws_mediaconnect/__init__.py +2 -6
- aws_cdk/aws_mediapackagev2/__init__.py +476 -0
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_pipes/__init__.py +639 -0
- aws_cdk/aws_rds/__init__.py +12 -0
- aws_cdk/aws_rolesanywhere/__init__.py +196 -0
- aws_cdk/aws_route53/__init__.py +3 -3
- aws_cdk/aws_securityhub/__init__.py +2415 -374
- aws_cdk/aws_securitylake/__init__.py +179 -314
- aws_cdk/aws_sns/__init__.py +61 -9
- aws_cdk/aws_sqs/__init__.py +2 -2
- aws_cdk/aws_stepfunctions_tasks/__init__.py +3 -3
- aws_cdk/pipelines/__init__.py +2 -0
- aws_cdk/region_info/__init__.py +6 -0
- {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.146.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.146.0.dist-info}/NOTICE +0 -35
- {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.146.0.dist-info}/RECORD +38 -38
- {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.146.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.146.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.144.0.dist-info → aws_cdk_lib-2.146.0.dist-info}/top_level.txt +0 -0
|
@@ -957,6 +957,31 @@ class CfnOriginEndpoint(
|
|
|
957
957
|
|
|
958
958
|
# the properties below are optional
|
|
959
959
|
container_type="containerType",
|
|
960
|
+
dash_manifests=[mediapackagev2.CfnOriginEndpoint.DashManifestConfigurationProperty(
|
|
961
|
+
manifest_name="manifestName",
|
|
962
|
+
|
|
963
|
+
# the properties below are optional
|
|
964
|
+
drm_signaling="drmSignaling",
|
|
965
|
+
filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
|
|
966
|
+
end="end",
|
|
967
|
+
manifest_filter="manifestFilter",
|
|
968
|
+
start="start",
|
|
969
|
+
time_delay_seconds=123
|
|
970
|
+
),
|
|
971
|
+
manifest_window_seconds=123,
|
|
972
|
+
min_buffer_time_seconds=123,
|
|
973
|
+
min_update_period_seconds=123,
|
|
974
|
+
period_triggers=["periodTriggers"],
|
|
975
|
+
scte_dash=mediapackagev2.CfnOriginEndpoint.ScteDashProperty(
|
|
976
|
+
ad_marker_dash="adMarkerDash"
|
|
977
|
+
),
|
|
978
|
+
segment_template_format="segmentTemplateFormat",
|
|
979
|
+
suggested_presentation_delay_seconds=123,
|
|
980
|
+
utc_timing=mediapackagev2.CfnOriginEndpoint.DashUtcTimingProperty(
|
|
981
|
+
timing_mode="timingMode",
|
|
982
|
+
timing_source="timingSource"
|
|
983
|
+
)
|
|
984
|
+
)],
|
|
960
985
|
description="description",
|
|
961
986
|
hls_manifests=[mediapackagev2.CfnOriginEndpoint.HlsManifestConfigurationProperty(
|
|
962
987
|
manifest_name="manifestName",
|
|
@@ -1041,6 +1066,7 @@ class CfnOriginEndpoint(
|
|
|
1041
1066
|
channel_name: builtins.str,
|
|
1042
1067
|
origin_endpoint_name: builtins.str,
|
|
1043
1068
|
container_type: typing.Optional[builtins.str] = None,
|
|
1069
|
+
dash_manifests: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.DashManifestConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1044
1070
|
description: typing.Optional[builtins.str] = None,
|
|
1045
1071
|
hls_manifests: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.HlsManifestConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1046
1072
|
low_latency_hls_manifests: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -1055,6 +1081,7 @@ class CfnOriginEndpoint(
|
|
|
1055
1081
|
:param channel_name: The channel name associated with the origin endpoint.
|
|
1056
1082
|
:param origin_endpoint_name: The name of the origin endpoint associated with the origin endpoint configuration.
|
|
1057
1083
|
:param container_type: The container type associated with the origin endpoint configuration.
|
|
1084
|
+
:param dash_manifests:
|
|
1058
1085
|
:param description: The description associated with the origin endpoint.
|
|
1059
1086
|
:param hls_manifests: The HLS manfiests associated with the origin endpoint configuration.
|
|
1060
1087
|
:param low_latency_hls_manifests: The low-latency HLS (LL-HLS) manifests associated with the origin endpoint.
|
|
@@ -1071,6 +1098,7 @@ class CfnOriginEndpoint(
|
|
|
1071
1098
|
channel_name=channel_name,
|
|
1072
1099
|
origin_endpoint_name=origin_endpoint_name,
|
|
1073
1100
|
container_type=container_type,
|
|
1101
|
+
dash_manifests=dash_manifests,
|
|
1074
1102
|
description=description,
|
|
1075
1103
|
hls_manifests=hls_manifests,
|
|
1076
1104
|
low_latency_hls_manifests=low_latency_hls_manifests,
|
|
@@ -1201,6 +1229,23 @@ class CfnOriginEndpoint(
|
|
|
1201
1229
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1202
1230
|
jsii.set(self, "containerType", value)
|
|
1203
1231
|
|
|
1232
|
+
@builtins.property
|
|
1233
|
+
@jsii.member(jsii_name="dashManifests")
|
|
1234
|
+
def dash_manifests(
|
|
1235
|
+
self,
|
|
1236
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashManifestConfigurationProperty"]]]]:
|
|
1237
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashManifestConfigurationProperty"]]]], jsii.get(self, "dashManifests"))
|
|
1238
|
+
|
|
1239
|
+
@dash_manifests.setter
|
|
1240
|
+
def dash_manifests(
|
|
1241
|
+
self,
|
|
1242
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashManifestConfigurationProperty"]]]],
|
|
1243
|
+
) -> None:
|
|
1244
|
+
if __debug__:
|
|
1245
|
+
type_hints = typing.get_type_hints(_typecheckingstub__316fdfa36cde837c49bfecdf48716a30e11db3879a7276c8207beeff9aff9317)
|
|
1246
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1247
|
+
jsii.set(self, "dashManifests", value)
|
|
1248
|
+
|
|
1204
1249
|
@builtins.property
|
|
1205
1250
|
@jsii.member(jsii_name="description")
|
|
1206
1251
|
def description(self) -> typing.Optional[builtins.str]:
|
|
@@ -1294,6 +1339,303 @@ class CfnOriginEndpoint(
|
|
|
1294
1339
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1295
1340
|
jsii.set(self, "tags", value)
|
|
1296
1341
|
|
|
1342
|
+
@jsii.data_type(
|
|
1343
|
+
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.DashManifestConfigurationProperty",
|
|
1344
|
+
jsii_struct_bases=[],
|
|
1345
|
+
name_mapping={
|
|
1346
|
+
"manifest_name": "manifestName",
|
|
1347
|
+
"drm_signaling": "drmSignaling",
|
|
1348
|
+
"filter_configuration": "filterConfiguration",
|
|
1349
|
+
"manifest_window_seconds": "manifestWindowSeconds",
|
|
1350
|
+
"min_buffer_time_seconds": "minBufferTimeSeconds",
|
|
1351
|
+
"min_update_period_seconds": "minUpdatePeriodSeconds",
|
|
1352
|
+
"period_triggers": "periodTriggers",
|
|
1353
|
+
"scte_dash": "scteDash",
|
|
1354
|
+
"segment_template_format": "segmentTemplateFormat",
|
|
1355
|
+
"suggested_presentation_delay_seconds": "suggestedPresentationDelaySeconds",
|
|
1356
|
+
"utc_timing": "utcTiming",
|
|
1357
|
+
},
|
|
1358
|
+
)
|
|
1359
|
+
class DashManifestConfigurationProperty:
|
|
1360
|
+
def __init__(
|
|
1361
|
+
self,
|
|
1362
|
+
*,
|
|
1363
|
+
manifest_name: builtins.str,
|
|
1364
|
+
drm_signaling: typing.Optional[builtins.str] = None,
|
|
1365
|
+
filter_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.FilterConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1366
|
+
manifest_window_seconds: typing.Optional[jsii.Number] = None,
|
|
1367
|
+
min_buffer_time_seconds: typing.Optional[jsii.Number] = None,
|
|
1368
|
+
min_update_period_seconds: typing.Optional[jsii.Number] = None,
|
|
1369
|
+
period_triggers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1370
|
+
scte_dash: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.ScteDashProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1371
|
+
segment_template_format: typing.Optional[builtins.str] = None,
|
|
1372
|
+
suggested_presentation_delay_seconds: typing.Optional[jsii.Number] = None,
|
|
1373
|
+
utc_timing: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.DashUtcTimingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1374
|
+
) -> None:
|
|
1375
|
+
'''
|
|
1376
|
+
:param manifest_name: The manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index.
|
|
1377
|
+
:param drm_signaling:
|
|
1378
|
+
:param filter_configuration:
|
|
1379
|
+
:param manifest_window_seconds:
|
|
1380
|
+
:param min_buffer_time_seconds:
|
|
1381
|
+
:param min_update_period_seconds:
|
|
1382
|
+
:param period_triggers: 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.
|
|
1383
|
+
:param scte_dash:
|
|
1384
|
+
:param segment_template_format:
|
|
1385
|
+
:param suggested_presentation_delay_seconds:
|
|
1386
|
+
:param utc_timing:
|
|
1387
|
+
|
|
1388
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html
|
|
1389
|
+
:exampleMetadata: fixture=_generated
|
|
1390
|
+
|
|
1391
|
+
Example::
|
|
1392
|
+
|
|
1393
|
+
# The code below shows an example of how to instantiate this type.
|
|
1394
|
+
# The values are placeholders you should change.
|
|
1395
|
+
from aws_cdk import aws_mediapackagev2 as mediapackagev2
|
|
1396
|
+
|
|
1397
|
+
dash_manifest_configuration_property = mediapackagev2.CfnOriginEndpoint.DashManifestConfigurationProperty(
|
|
1398
|
+
manifest_name="manifestName",
|
|
1399
|
+
|
|
1400
|
+
# the properties below are optional
|
|
1401
|
+
drm_signaling="drmSignaling",
|
|
1402
|
+
filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
|
|
1403
|
+
end="end",
|
|
1404
|
+
manifest_filter="manifestFilter",
|
|
1405
|
+
start="start",
|
|
1406
|
+
time_delay_seconds=123
|
|
1407
|
+
),
|
|
1408
|
+
manifest_window_seconds=123,
|
|
1409
|
+
min_buffer_time_seconds=123,
|
|
1410
|
+
min_update_period_seconds=123,
|
|
1411
|
+
period_triggers=["periodTriggers"],
|
|
1412
|
+
scte_dash=mediapackagev2.CfnOriginEndpoint.ScteDashProperty(
|
|
1413
|
+
ad_marker_dash="adMarkerDash"
|
|
1414
|
+
),
|
|
1415
|
+
segment_template_format="segmentTemplateFormat",
|
|
1416
|
+
suggested_presentation_delay_seconds=123,
|
|
1417
|
+
utc_timing=mediapackagev2.CfnOriginEndpoint.DashUtcTimingProperty(
|
|
1418
|
+
timing_mode="timingMode",
|
|
1419
|
+
timing_source="timingSource"
|
|
1420
|
+
)
|
|
1421
|
+
)
|
|
1422
|
+
'''
|
|
1423
|
+
if __debug__:
|
|
1424
|
+
type_hints = typing.get_type_hints(_typecheckingstub__20e3bfad4ae40517c778173bab356d7bd208497ee33a09fdc9e380135384dfc6)
|
|
1425
|
+
check_type(argname="argument manifest_name", value=manifest_name, expected_type=type_hints["manifest_name"])
|
|
1426
|
+
check_type(argname="argument drm_signaling", value=drm_signaling, expected_type=type_hints["drm_signaling"])
|
|
1427
|
+
check_type(argname="argument filter_configuration", value=filter_configuration, expected_type=type_hints["filter_configuration"])
|
|
1428
|
+
check_type(argname="argument manifest_window_seconds", value=manifest_window_seconds, expected_type=type_hints["manifest_window_seconds"])
|
|
1429
|
+
check_type(argname="argument min_buffer_time_seconds", value=min_buffer_time_seconds, expected_type=type_hints["min_buffer_time_seconds"])
|
|
1430
|
+
check_type(argname="argument min_update_period_seconds", value=min_update_period_seconds, expected_type=type_hints["min_update_period_seconds"])
|
|
1431
|
+
check_type(argname="argument period_triggers", value=period_triggers, expected_type=type_hints["period_triggers"])
|
|
1432
|
+
check_type(argname="argument scte_dash", value=scte_dash, expected_type=type_hints["scte_dash"])
|
|
1433
|
+
check_type(argname="argument segment_template_format", value=segment_template_format, expected_type=type_hints["segment_template_format"])
|
|
1434
|
+
check_type(argname="argument suggested_presentation_delay_seconds", value=suggested_presentation_delay_seconds, expected_type=type_hints["suggested_presentation_delay_seconds"])
|
|
1435
|
+
check_type(argname="argument utc_timing", value=utc_timing, expected_type=type_hints["utc_timing"])
|
|
1436
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1437
|
+
"manifest_name": manifest_name,
|
|
1438
|
+
}
|
|
1439
|
+
if drm_signaling is not None:
|
|
1440
|
+
self._values["drm_signaling"] = drm_signaling
|
|
1441
|
+
if filter_configuration is not None:
|
|
1442
|
+
self._values["filter_configuration"] = filter_configuration
|
|
1443
|
+
if manifest_window_seconds is not None:
|
|
1444
|
+
self._values["manifest_window_seconds"] = manifest_window_seconds
|
|
1445
|
+
if min_buffer_time_seconds is not None:
|
|
1446
|
+
self._values["min_buffer_time_seconds"] = min_buffer_time_seconds
|
|
1447
|
+
if min_update_period_seconds is not None:
|
|
1448
|
+
self._values["min_update_period_seconds"] = min_update_period_seconds
|
|
1449
|
+
if period_triggers is not None:
|
|
1450
|
+
self._values["period_triggers"] = period_triggers
|
|
1451
|
+
if scte_dash is not None:
|
|
1452
|
+
self._values["scte_dash"] = scte_dash
|
|
1453
|
+
if segment_template_format is not None:
|
|
1454
|
+
self._values["segment_template_format"] = segment_template_format
|
|
1455
|
+
if suggested_presentation_delay_seconds is not None:
|
|
1456
|
+
self._values["suggested_presentation_delay_seconds"] = suggested_presentation_delay_seconds
|
|
1457
|
+
if utc_timing is not None:
|
|
1458
|
+
self._values["utc_timing"] = utc_timing
|
|
1459
|
+
|
|
1460
|
+
@builtins.property
|
|
1461
|
+
def manifest_name(self) -> builtins.str:
|
|
1462
|
+
'''
|
|
1463
|
+
The manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index.
|
|
1464
|
+
|
|
1465
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-manifestname
|
|
1466
|
+
'''
|
|
1467
|
+
result = self._values.get("manifest_name")
|
|
1468
|
+
assert result is not None, "Required property 'manifest_name' is missing"
|
|
1469
|
+
return typing.cast(builtins.str, result)
|
|
1470
|
+
|
|
1471
|
+
@builtins.property
|
|
1472
|
+
def drm_signaling(self) -> typing.Optional[builtins.str]:
|
|
1473
|
+
'''
|
|
1474
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-drmsignaling
|
|
1475
|
+
'''
|
|
1476
|
+
result = self._values.get("drm_signaling")
|
|
1477
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1478
|
+
|
|
1479
|
+
@builtins.property
|
|
1480
|
+
def filter_configuration(
|
|
1481
|
+
self,
|
|
1482
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.FilterConfigurationProperty"]]:
|
|
1483
|
+
'''
|
|
1484
|
+
|
|
1485
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-filterconfiguration
|
|
1486
|
+
'''
|
|
1487
|
+
result = self._values.get("filter_configuration")
|
|
1488
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.FilterConfigurationProperty"]], result)
|
|
1489
|
+
|
|
1490
|
+
@builtins.property
|
|
1491
|
+
def manifest_window_seconds(self) -> typing.Optional[jsii.Number]:
|
|
1492
|
+
'''
|
|
1493
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-manifestwindowseconds
|
|
1494
|
+
'''
|
|
1495
|
+
result = self._values.get("manifest_window_seconds")
|
|
1496
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1497
|
+
|
|
1498
|
+
@builtins.property
|
|
1499
|
+
def min_buffer_time_seconds(self) -> typing.Optional[jsii.Number]:
|
|
1500
|
+
'''
|
|
1501
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-minbuffertimeseconds
|
|
1502
|
+
'''
|
|
1503
|
+
result = self._values.get("min_buffer_time_seconds")
|
|
1504
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1505
|
+
|
|
1506
|
+
@builtins.property
|
|
1507
|
+
def min_update_period_seconds(self) -> typing.Optional[jsii.Number]:
|
|
1508
|
+
'''
|
|
1509
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-minupdateperiodseconds
|
|
1510
|
+
'''
|
|
1511
|
+
result = self._values.get("min_update_period_seconds")
|
|
1512
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1513
|
+
|
|
1514
|
+
@builtins.property
|
|
1515
|
+
def period_triggers(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
1516
|
+
'''
|
|
1517
|
+
Leave this value empty to indicate that the manifest is contained all in one period.
|
|
1518
|
+
For more information about periods in the DASH manifest, see Multi-period DASH in AWS Elemental MediaPackage.
|
|
1519
|
+
|
|
1520
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-periodtriggers
|
|
1521
|
+
'''
|
|
1522
|
+
result = self._values.get("period_triggers")
|
|
1523
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
1524
|
+
|
|
1525
|
+
@builtins.property
|
|
1526
|
+
def scte_dash(
|
|
1527
|
+
self,
|
|
1528
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.ScteDashProperty"]]:
|
|
1529
|
+
'''
|
|
1530
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-sctedash
|
|
1531
|
+
'''
|
|
1532
|
+
result = self._values.get("scte_dash")
|
|
1533
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.ScteDashProperty"]], result)
|
|
1534
|
+
|
|
1535
|
+
@builtins.property
|
|
1536
|
+
def segment_template_format(self) -> typing.Optional[builtins.str]:
|
|
1537
|
+
'''
|
|
1538
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-segmenttemplateformat
|
|
1539
|
+
'''
|
|
1540
|
+
result = self._values.get("segment_template_format")
|
|
1541
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1542
|
+
|
|
1543
|
+
@builtins.property
|
|
1544
|
+
def suggested_presentation_delay_seconds(self) -> typing.Optional[jsii.Number]:
|
|
1545
|
+
'''
|
|
1546
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-suggestedpresentationdelayseconds
|
|
1547
|
+
'''
|
|
1548
|
+
result = self._values.get("suggested_presentation_delay_seconds")
|
|
1549
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1550
|
+
|
|
1551
|
+
@builtins.property
|
|
1552
|
+
def utc_timing(
|
|
1553
|
+
self,
|
|
1554
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashUtcTimingProperty"]]:
|
|
1555
|
+
'''
|
|
1556
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-utctiming
|
|
1557
|
+
'''
|
|
1558
|
+
result = self._values.get("utc_timing")
|
|
1559
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashUtcTimingProperty"]], result)
|
|
1560
|
+
|
|
1561
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1562
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1563
|
+
|
|
1564
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1565
|
+
return not (rhs == self)
|
|
1566
|
+
|
|
1567
|
+
def __repr__(self) -> str:
|
|
1568
|
+
return "DashManifestConfigurationProperty(%s)" % ", ".join(
|
|
1569
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1570
|
+
)
|
|
1571
|
+
|
|
1572
|
+
@jsii.data_type(
|
|
1573
|
+
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.DashUtcTimingProperty",
|
|
1574
|
+
jsii_struct_bases=[],
|
|
1575
|
+
name_mapping={"timing_mode": "timingMode", "timing_source": "timingSource"},
|
|
1576
|
+
)
|
|
1577
|
+
class DashUtcTimingProperty:
|
|
1578
|
+
def __init__(
|
|
1579
|
+
self,
|
|
1580
|
+
*,
|
|
1581
|
+
timing_mode: typing.Optional[builtins.str] = None,
|
|
1582
|
+
timing_source: typing.Optional[builtins.str] = None,
|
|
1583
|
+
) -> None:
|
|
1584
|
+
'''
|
|
1585
|
+
:param timing_mode:
|
|
1586
|
+
:param timing_source:
|
|
1587
|
+
|
|
1588
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashutctiming.html
|
|
1589
|
+
:exampleMetadata: fixture=_generated
|
|
1590
|
+
|
|
1591
|
+
Example::
|
|
1592
|
+
|
|
1593
|
+
# The code below shows an example of how to instantiate this type.
|
|
1594
|
+
# The values are placeholders you should change.
|
|
1595
|
+
from aws_cdk import aws_mediapackagev2 as mediapackagev2
|
|
1596
|
+
|
|
1597
|
+
dash_utc_timing_property = mediapackagev2.CfnOriginEndpoint.DashUtcTimingProperty(
|
|
1598
|
+
timing_mode="timingMode",
|
|
1599
|
+
timing_source="timingSource"
|
|
1600
|
+
)
|
|
1601
|
+
'''
|
|
1602
|
+
if __debug__:
|
|
1603
|
+
type_hints = typing.get_type_hints(_typecheckingstub__09bad37e3e4d3382385a9f8aab252d146616b680c49d6ef16671c82ef1248794)
|
|
1604
|
+
check_type(argname="argument timing_mode", value=timing_mode, expected_type=type_hints["timing_mode"])
|
|
1605
|
+
check_type(argname="argument timing_source", value=timing_source, expected_type=type_hints["timing_source"])
|
|
1606
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1607
|
+
if timing_mode is not None:
|
|
1608
|
+
self._values["timing_mode"] = timing_mode
|
|
1609
|
+
if timing_source is not None:
|
|
1610
|
+
self._values["timing_source"] = timing_source
|
|
1611
|
+
|
|
1612
|
+
@builtins.property
|
|
1613
|
+
def timing_mode(self) -> typing.Optional[builtins.str]:
|
|
1614
|
+
'''
|
|
1615
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashutctiming.html#cfn-mediapackagev2-originendpoint-dashutctiming-timingmode
|
|
1616
|
+
'''
|
|
1617
|
+
result = self._values.get("timing_mode")
|
|
1618
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1619
|
+
|
|
1620
|
+
@builtins.property
|
|
1621
|
+
def timing_source(self) -> typing.Optional[builtins.str]:
|
|
1622
|
+
'''
|
|
1623
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashutctiming.html#cfn-mediapackagev2-originendpoint-dashutctiming-timingsource
|
|
1624
|
+
'''
|
|
1625
|
+
result = self._values.get("timing_source")
|
|
1626
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1627
|
+
|
|
1628
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1629
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1630
|
+
|
|
1631
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1632
|
+
return not (rhs == self)
|
|
1633
|
+
|
|
1634
|
+
def __repr__(self) -> str:
|
|
1635
|
+
return "DashUtcTimingProperty(%s)" % ", ".join(
|
|
1636
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1637
|
+
)
|
|
1638
|
+
|
|
1297
1639
|
@jsii.data_type(
|
|
1298
1640
|
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.EncryptionContractConfigurationProperty",
|
|
1299
1641
|
jsii_struct_bases=[],
|
|
@@ -2037,6 +2379,59 @@ class CfnOriginEndpoint(
|
|
|
2037
2379
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
2038
2380
|
)
|
|
2039
2381
|
|
|
2382
|
+
@jsii.data_type(
|
|
2383
|
+
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.ScteDashProperty",
|
|
2384
|
+
jsii_struct_bases=[],
|
|
2385
|
+
name_mapping={"ad_marker_dash": "adMarkerDash"},
|
|
2386
|
+
)
|
|
2387
|
+
class ScteDashProperty:
|
|
2388
|
+
def __init__(
|
|
2389
|
+
self,
|
|
2390
|
+
*,
|
|
2391
|
+
ad_marker_dash: typing.Optional[builtins.str] = None,
|
|
2392
|
+
) -> None:
|
|
2393
|
+
'''
|
|
2394
|
+
:param ad_marker_dash:
|
|
2395
|
+
|
|
2396
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-sctedash.html
|
|
2397
|
+
:exampleMetadata: fixture=_generated
|
|
2398
|
+
|
|
2399
|
+
Example::
|
|
2400
|
+
|
|
2401
|
+
# The code below shows an example of how to instantiate this type.
|
|
2402
|
+
# The values are placeholders you should change.
|
|
2403
|
+
from aws_cdk import aws_mediapackagev2 as mediapackagev2
|
|
2404
|
+
|
|
2405
|
+
scte_dash_property = mediapackagev2.CfnOriginEndpoint.ScteDashProperty(
|
|
2406
|
+
ad_marker_dash="adMarkerDash"
|
|
2407
|
+
)
|
|
2408
|
+
'''
|
|
2409
|
+
if __debug__:
|
|
2410
|
+
type_hints = typing.get_type_hints(_typecheckingstub__13ac94f52ccc71367f414c5388529d309fac2b39d9caa3e0e662dc2cfae97455)
|
|
2411
|
+
check_type(argname="argument ad_marker_dash", value=ad_marker_dash, expected_type=type_hints["ad_marker_dash"])
|
|
2412
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2413
|
+
if ad_marker_dash is not None:
|
|
2414
|
+
self._values["ad_marker_dash"] = ad_marker_dash
|
|
2415
|
+
|
|
2416
|
+
@builtins.property
|
|
2417
|
+
def ad_marker_dash(self) -> typing.Optional[builtins.str]:
|
|
2418
|
+
'''
|
|
2419
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-sctedash.html#cfn-mediapackagev2-originendpoint-sctedash-admarkerdash
|
|
2420
|
+
'''
|
|
2421
|
+
result = self._values.get("ad_marker_dash")
|
|
2422
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2423
|
+
|
|
2424
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2425
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2426
|
+
|
|
2427
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2428
|
+
return not (rhs == self)
|
|
2429
|
+
|
|
2430
|
+
def __repr__(self) -> str:
|
|
2431
|
+
return "ScteDashProperty(%s)" % ", ".join(
|
|
2432
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2433
|
+
)
|
|
2434
|
+
|
|
2040
2435
|
@jsii.data_type(
|
|
2041
2436
|
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.ScteHlsProperty",
|
|
2042
2437
|
jsii_struct_bases=[],
|
|
@@ -2731,6 +3126,7 @@ class CfnOriginEndpointPolicyProps:
|
|
|
2731
3126
|
"channel_name": "channelName",
|
|
2732
3127
|
"origin_endpoint_name": "originEndpointName",
|
|
2733
3128
|
"container_type": "containerType",
|
|
3129
|
+
"dash_manifests": "dashManifests",
|
|
2734
3130
|
"description": "description",
|
|
2735
3131
|
"hls_manifests": "hlsManifests",
|
|
2736
3132
|
"low_latency_hls_manifests": "lowLatencyHlsManifests",
|
|
@@ -2747,6 +3143,7 @@ class CfnOriginEndpointProps:
|
|
|
2747
3143
|
channel_name: builtins.str,
|
|
2748
3144
|
origin_endpoint_name: builtins.str,
|
|
2749
3145
|
container_type: typing.Optional[builtins.str] = None,
|
|
3146
|
+
dash_manifests: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.DashManifestConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2750
3147
|
description: typing.Optional[builtins.str] = None,
|
|
2751
3148
|
hls_manifests: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.HlsManifestConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2752
3149
|
low_latency_hls_manifests: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -2760,6 +3157,7 @@ class CfnOriginEndpointProps:
|
|
|
2760
3157
|
:param channel_name: The channel name associated with the origin endpoint.
|
|
2761
3158
|
:param origin_endpoint_name: The name of the origin endpoint associated with the origin endpoint configuration.
|
|
2762
3159
|
:param container_type: The container type associated with the origin endpoint configuration.
|
|
3160
|
+
:param dash_manifests:
|
|
2763
3161
|
:param description: The description associated with the origin endpoint.
|
|
2764
3162
|
:param hls_manifests: The HLS manfiests associated with the origin endpoint configuration.
|
|
2765
3163
|
:param low_latency_hls_manifests: The low-latency HLS (LL-HLS) manifests associated with the origin endpoint.
|
|
@@ -2783,6 +3181,31 @@ class CfnOriginEndpointProps:
|
|
|
2783
3181
|
|
|
2784
3182
|
# the properties below are optional
|
|
2785
3183
|
container_type="containerType",
|
|
3184
|
+
dash_manifests=[mediapackagev2.CfnOriginEndpoint.DashManifestConfigurationProperty(
|
|
3185
|
+
manifest_name="manifestName",
|
|
3186
|
+
|
|
3187
|
+
# the properties below are optional
|
|
3188
|
+
drm_signaling="drmSignaling",
|
|
3189
|
+
filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
|
|
3190
|
+
end="end",
|
|
3191
|
+
manifest_filter="manifestFilter",
|
|
3192
|
+
start="start",
|
|
3193
|
+
time_delay_seconds=123
|
|
3194
|
+
),
|
|
3195
|
+
manifest_window_seconds=123,
|
|
3196
|
+
min_buffer_time_seconds=123,
|
|
3197
|
+
min_update_period_seconds=123,
|
|
3198
|
+
period_triggers=["periodTriggers"],
|
|
3199
|
+
scte_dash=mediapackagev2.CfnOriginEndpoint.ScteDashProperty(
|
|
3200
|
+
ad_marker_dash="adMarkerDash"
|
|
3201
|
+
),
|
|
3202
|
+
segment_template_format="segmentTemplateFormat",
|
|
3203
|
+
suggested_presentation_delay_seconds=123,
|
|
3204
|
+
utc_timing=mediapackagev2.CfnOriginEndpoint.DashUtcTimingProperty(
|
|
3205
|
+
timing_mode="timingMode",
|
|
3206
|
+
timing_source="timingSource"
|
|
3207
|
+
)
|
|
3208
|
+
)],
|
|
2786
3209
|
description="description",
|
|
2787
3210
|
hls_manifests=[mediapackagev2.CfnOriginEndpoint.HlsManifestConfigurationProperty(
|
|
2788
3211
|
manifest_name="manifestName",
|
|
@@ -2863,6 +3286,7 @@ class CfnOriginEndpointProps:
|
|
|
2863
3286
|
check_type(argname="argument channel_name", value=channel_name, expected_type=type_hints["channel_name"])
|
|
2864
3287
|
check_type(argname="argument origin_endpoint_name", value=origin_endpoint_name, expected_type=type_hints["origin_endpoint_name"])
|
|
2865
3288
|
check_type(argname="argument container_type", value=container_type, expected_type=type_hints["container_type"])
|
|
3289
|
+
check_type(argname="argument dash_manifests", value=dash_manifests, expected_type=type_hints["dash_manifests"])
|
|
2866
3290
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
2867
3291
|
check_type(argname="argument hls_manifests", value=hls_manifests, expected_type=type_hints["hls_manifests"])
|
|
2868
3292
|
check_type(argname="argument low_latency_hls_manifests", value=low_latency_hls_manifests, expected_type=type_hints["low_latency_hls_manifests"])
|
|
@@ -2876,6 +3300,8 @@ class CfnOriginEndpointProps:
|
|
|
2876
3300
|
}
|
|
2877
3301
|
if container_type is not None:
|
|
2878
3302
|
self._values["container_type"] = container_type
|
|
3303
|
+
if dash_manifests is not None:
|
|
3304
|
+
self._values["dash_manifests"] = dash_manifests
|
|
2879
3305
|
if description is not None:
|
|
2880
3306
|
self._values["description"] = description
|
|
2881
3307
|
if hls_manifests is not None:
|
|
@@ -2928,6 +3354,16 @@ class CfnOriginEndpointProps:
|
|
|
2928
3354
|
result = self._values.get("container_type")
|
|
2929
3355
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2930
3356
|
|
|
3357
|
+
@builtins.property
|
|
3358
|
+
def dash_manifests(
|
|
3359
|
+
self,
|
|
3360
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnOriginEndpoint.DashManifestConfigurationProperty]]]]:
|
|
3361
|
+
'''
|
|
3362
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-dashmanifests
|
|
3363
|
+
'''
|
|
3364
|
+
result = self._values.get("dash_manifests")
|
|
3365
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnOriginEndpoint.DashManifestConfigurationProperty]]]], result)
|
|
3366
|
+
|
|
2931
3367
|
@builtins.property
|
|
2932
3368
|
def description(self) -> typing.Optional[builtins.str]:
|
|
2933
3369
|
'''The description associated with the origin endpoint.
|
|
@@ -3191,6 +3627,7 @@ def _typecheckingstub__7dba3dfc2892c78e53aee7675a7a24aa25c0b29481aca92446e31a0d8
|
|
|
3191
3627
|
channel_name: builtins.str,
|
|
3192
3628
|
origin_endpoint_name: builtins.str,
|
|
3193
3629
|
container_type: typing.Optional[builtins.str] = None,
|
|
3630
|
+
dash_manifests: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.DashManifestConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3194
3631
|
description: typing.Optional[builtins.str] = None,
|
|
3195
3632
|
hls_manifests: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.HlsManifestConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3196
3633
|
low_latency_hls_manifests: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -3237,6 +3674,12 @@ def _typecheckingstub__7ded0ec9a4a78b0a13f4013526976d3ef27bae8928fb665d57679f953
|
|
|
3237
3674
|
"""Type checking stubs"""
|
|
3238
3675
|
pass
|
|
3239
3676
|
|
|
3677
|
+
def _typecheckingstub__316fdfa36cde837c49bfecdf48716a30e11db3879a7276c8207beeff9aff9317(
|
|
3678
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnOriginEndpoint.DashManifestConfigurationProperty]]]],
|
|
3679
|
+
) -> None:
|
|
3680
|
+
"""Type checking stubs"""
|
|
3681
|
+
pass
|
|
3682
|
+
|
|
3240
3683
|
def _typecheckingstub__5d2dcbe74f178ed4fd2315de3210f8a81e6084e3e73f7337556d68a41cc54333(
|
|
3241
3684
|
value: typing.Optional[builtins.str],
|
|
3242
3685
|
) -> None:
|
|
@@ -3273,6 +3716,31 @@ def _typecheckingstub__65cc25545f38d01b8ccc61c9494f0994747ef22d12fc3c94c71cb091a
|
|
|
3273
3716
|
"""Type checking stubs"""
|
|
3274
3717
|
pass
|
|
3275
3718
|
|
|
3719
|
+
def _typecheckingstub__20e3bfad4ae40517c778173bab356d7bd208497ee33a09fdc9e380135384dfc6(
|
|
3720
|
+
*,
|
|
3721
|
+
manifest_name: builtins.str,
|
|
3722
|
+
drm_signaling: typing.Optional[builtins.str] = None,
|
|
3723
|
+
filter_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.FilterConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3724
|
+
manifest_window_seconds: typing.Optional[jsii.Number] = None,
|
|
3725
|
+
min_buffer_time_seconds: typing.Optional[jsii.Number] = None,
|
|
3726
|
+
min_update_period_seconds: typing.Optional[jsii.Number] = None,
|
|
3727
|
+
period_triggers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
3728
|
+
scte_dash: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.ScteDashProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3729
|
+
segment_template_format: typing.Optional[builtins.str] = None,
|
|
3730
|
+
suggested_presentation_delay_seconds: typing.Optional[jsii.Number] = None,
|
|
3731
|
+
utc_timing: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.DashUtcTimingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3732
|
+
) -> None:
|
|
3733
|
+
"""Type checking stubs"""
|
|
3734
|
+
pass
|
|
3735
|
+
|
|
3736
|
+
def _typecheckingstub__09bad37e3e4d3382385a9f8aab252d146616b680c49d6ef16671c82ef1248794(
|
|
3737
|
+
*,
|
|
3738
|
+
timing_mode: typing.Optional[builtins.str] = None,
|
|
3739
|
+
timing_source: typing.Optional[builtins.str] = None,
|
|
3740
|
+
) -> None:
|
|
3741
|
+
"""Type checking stubs"""
|
|
3742
|
+
pass
|
|
3743
|
+
|
|
3276
3744
|
def _typecheckingstub__5bec1eea406d4bb796486d5773d483a771df06a4cb391f44e1755e98877b7f22(
|
|
3277
3745
|
*,
|
|
3278
3746
|
preset_speke20_audio: builtins.str,
|
|
@@ -3335,6 +3803,13 @@ def _typecheckingstub__7ba3db62514b88b8da1b21ec0b9459116f857508c0670adb698a120b3
|
|
|
3335
3803
|
"""Type checking stubs"""
|
|
3336
3804
|
pass
|
|
3337
3805
|
|
|
3806
|
+
def _typecheckingstub__13ac94f52ccc71367f414c5388529d309fac2b39d9caa3e0e662dc2cfae97455(
|
|
3807
|
+
*,
|
|
3808
|
+
ad_marker_dash: typing.Optional[builtins.str] = None,
|
|
3809
|
+
) -> None:
|
|
3810
|
+
"""Type checking stubs"""
|
|
3811
|
+
pass
|
|
3812
|
+
|
|
3338
3813
|
def _typecheckingstub__8d4f889b0a331f5c9a9819d549afcb4b4239d6f7040f9146668998df9485e7ea(
|
|
3339
3814
|
*,
|
|
3340
3815
|
ad_marker_hls: typing.Optional[builtins.str] = None,
|
|
@@ -3437,6 +3912,7 @@ def _typecheckingstub__d261c9ffb32b381ea679962b9a614498343af1f15dd4bdfdbf788de76
|
|
|
3437
3912
|
channel_name: builtins.str,
|
|
3438
3913
|
origin_endpoint_name: builtins.str,
|
|
3439
3914
|
container_type: typing.Optional[builtins.str] = None,
|
|
3915
|
+
dash_manifests: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.DashManifestConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3440
3916
|
description: typing.Optional[builtins.str] = None,
|
|
3441
3917
|
hls_manifests: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.HlsManifestConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3442
3918
|
low_latency_hls_manifests: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -5358,6 +5358,12 @@ class EngineVersion(
|
|
|
5358
5358
|
'''AWS OpenSearch 2.11.'''
|
|
5359
5359
|
return typing.cast("EngineVersion", jsii.sget(cls, "OPENSEARCH_2_11"))
|
|
5360
5360
|
|
|
5361
|
+
@jsii.python.classproperty
|
|
5362
|
+
@jsii.member(jsii_name="OPENSEARCH_2_13")
|
|
5363
|
+
def OPENSEARCH_2_13(cls) -> "EngineVersion":
|
|
5364
|
+
'''AWS OpenSearch 2.13.'''
|
|
5365
|
+
return typing.cast("EngineVersion", jsii.sget(cls, "OPENSEARCH_2_13"))
|
|
5366
|
+
|
|
5361
5367
|
@jsii.python.classproperty
|
|
5362
5368
|
@jsii.member(jsii_name="OPENSEARCH_2_3")
|
|
5363
5369
|
def OPENSEARCH_2_3(cls) -> "EngineVersion":
|