aws-cdk-lib 2.201.0__py3-none-any.whl → 2.203.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 +70 -71
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.201.0.jsii.tgz → aws-cdk-lib@2.203.0.jsii.tgz} +0 -0
- aws_cdk/aws_accessanalyzer/__init__.py +310 -4
- aws_cdk/aws_aiops/__init__.py +964 -0
- aws_cdk/aws_amplify/__init__.py +127 -0
- aws_cdk/aws_arczonalshift/__init__.py +8 -8
- aws_cdk/aws_athena/__init__.py +12 -11
- aws_cdk/aws_b2bi/__init__.py +782 -3
- aws_cdk/aws_backup/__init__.py +22 -0
- aws_cdk/aws_batch/__init__.py +53 -1
- aws_cdk/aws_bedrock/__init__.py +123 -9
- aws_cdk/aws_cleanrooms/__init__.py +157 -154
- aws_cdk/aws_cloudformation/__init__.py +28 -28
- aws_cdk/aws_cloudfront/__init__.py +92 -57
- aws_cdk/aws_cloudfront/experimental/__init__.py +42 -3
- aws_cdk/aws_cloudwatch/__init__.py +228 -2
- aws_cdk/aws_connect/__init__.py +120 -8
- aws_cdk/aws_connectcampaignsv2/__init__.py +25 -4
- aws_cdk/aws_customerprofiles/__init__.py +150 -30
- aws_cdk/aws_datazone/__init__.py +23 -4
- aws_cdk/aws_deadline/__init__.py +4 -4
- aws_cdk/aws_dsql/__init__.py +148 -0
- aws_cdk/aws_ec2/__init__.py +321 -19
- aws_cdk/aws_ecr/__init__.py +3 -3
- aws_cdk/aws_ecs/__init__.py +48 -13
- aws_cdk/aws_efs/__init__.py +17 -6
- aws_cdk/aws_eks/__init__.py +180 -158
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +4 -2
- aws_cdk/aws_emrserverless/__init__.py +118 -0
- aws_cdk/aws_fsx/__init__.py +891 -0
- aws_cdk/aws_glue/__init__.py +58 -24
- aws_cdk/aws_iam/__init__.py +11 -11
- aws_cdk/aws_inspectorv2/__init__.py +442 -3
- aws_cdk/aws_kendra/__init__.py +10 -5
- aws_cdk/aws_kms/__init__.py +24 -12
- aws_cdk/aws_lambda/__init__.py +938 -36
- aws_cdk/aws_lambda_event_sources/__init__.py +638 -1
- aws_cdk/aws_lambda_nodejs/__init__.py +37 -3
- aws_cdk/aws_lex/__init__.py +703 -0
- aws_cdk/aws_logs/__init__.py +144 -0
- aws_cdk/aws_mediatailor/__init__.py +399 -0
- aws_cdk/aws_mpa/__init__.py +1475 -0
- aws_cdk/aws_msk/__init__.py +21 -2
- aws_cdk/aws_mwaa/__init__.py +45 -2
- aws_cdk/aws_networkfirewall/__init__.py +4 -2
- aws_cdk/aws_networkmanager/__init__.py +51 -3
- aws_cdk/aws_opsworkscm/__init__.py +44 -2
- aws_cdk/aws_rds/__init__.py +175 -42
- aws_cdk/aws_redshiftserverless/__init__.py +632 -0
- aws_cdk/aws_route53resolver/__init__.py +58 -10
- aws_cdk/aws_s3/__init__.py +19 -1
- aws_cdk/aws_s3tables/__init__.py +230 -0
- aws_cdk/aws_sagemaker/__init__.py +14 -10
- aws_cdk/aws_securityhub/__init__.py +2887 -56
- aws_cdk/aws_synthetics/__init__.py +21 -0
- aws_cdk/aws_vpclattice/__init__.py +6 -4
- aws_cdk/aws_wafv2/__init__.py +849 -18
- aws_cdk/aws_workspacesinstances/__init__.py +3243 -0
- aws_cdk/cloud_assembly_schema/__init__.py +200 -4
- aws_cdk/cx_api/__init__.py +29 -14
- aws_cdk/pipelines/__init__.py +178 -41
- aws_cdk/triggers/__init__.py +41 -4
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/RECORD +69 -66
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/top_level.txt +0 -0
|
@@ -1712,10 +1712,24 @@ class CfnPlaybackConfiguration(
|
|
|
1712
1712
|
hls_configuration=mediatailor.CfnPlaybackConfiguration.HlsConfigurationProperty(
|
|
1713
1713
|
manifest_endpoint_prefix="manifestEndpointPrefix"
|
|
1714
1714
|
),
|
|
1715
|
+
insertion_mode="insertionMode",
|
|
1715
1716
|
live_pre_roll_configuration=mediatailor.CfnPlaybackConfiguration.LivePreRollConfigurationProperty(
|
|
1716
1717
|
ad_decision_server_url="adDecisionServerUrl",
|
|
1717
1718
|
max_duration_seconds=123
|
|
1718
1719
|
),
|
|
1720
|
+
log_configuration=mediatailor.CfnPlaybackConfiguration.LogConfigurationProperty(
|
|
1721
|
+
percent_enabled=123,
|
|
1722
|
+
|
|
1723
|
+
# the properties below are optional
|
|
1724
|
+
ads_interaction_log=mediatailor.CfnPlaybackConfiguration.AdsInteractionLogProperty(
|
|
1725
|
+
exclude_event_types=["excludeEventTypes"],
|
|
1726
|
+
publish_opt_in_event_types=["publishOptInEventTypes"]
|
|
1727
|
+
),
|
|
1728
|
+
enabled_logging_strategies=["enabledLoggingStrategies"],
|
|
1729
|
+
manifest_service_interaction_log=mediatailor.CfnPlaybackConfiguration.ManifestServiceInteractionLogProperty(
|
|
1730
|
+
exclude_event_types=["excludeEventTypes"]
|
|
1731
|
+
)
|
|
1732
|
+
),
|
|
1719
1733
|
manifest_processing_rules=mediatailor.CfnPlaybackConfiguration.ManifestProcessingRulesProperty(
|
|
1720
1734
|
ad_marker_passthrough=mediatailor.CfnPlaybackConfiguration.AdMarkerPassthroughProperty(
|
|
1721
1735
|
enabled=False
|
|
@@ -1746,7 +1760,9 @@ class CfnPlaybackConfiguration(
|
|
|
1746
1760
|
configuration_aliases: typing.Optional[typing.Union[typing.Mapping[builtins.str, typing.Any], _IResolvable_da3f097b]] = None,
|
|
1747
1761
|
dash_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.DashConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1748
1762
|
hls_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.HlsConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1763
|
+
insertion_mode: typing.Optional[builtins.str] = None,
|
|
1749
1764
|
live_pre_roll_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.LivePreRollConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1765
|
+
log_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.LogConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1750
1766
|
manifest_processing_rules: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.ManifestProcessingRulesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1751
1767
|
personalization_threshold_seconds: typing.Optional[jsii.Number] = None,
|
|
1752
1768
|
slate_ad_url: typing.Optional[builtins.str] = None,
|
|
@@ -1766,7 +1782,9 @@ class CfnPlaybackConfiguration(
|
|
|
1766
1782
|
:param configuration_aliases: The player parameters and aliases used as dynamic variables during session initialization. For more information, see `Domain Variables <https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domain.html>`_ .
|
|
1767
1783
|
:param dash_configuration: The configuration for a DASH source.
|
|
1768
1784
|
:param hls_configuration: The configuration for HLS content.
|
|
1785
|
+
:param insertion_mode: The setting that controls whether players can use stitched or guided ad insertion. The default, ``STITCHED_ONLY`` , forces all player sessions to use stitched (server-side) ad insertion. Choosing ``PLAYER_SELECT`` allows players to select either stitched or guided ad insertion at session-initialization time. The default for players that do not specify an insertion mode is stitched.
|
|
1769
1786
|
:param live_pre_roll_configuration: The configuration for pre-roll ad insertion.
|
|
1787
|
+
:param log_configuration: Defines where AWS Elemental MediaTailor sends logs for the playback configuration.
|
|
1770
1788
|
:param manifest_processing_rules: The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
|
|
1771
1789
|
:param personalization_threshold_seconds: Defines the maximum duration of underfilled ad time (in seconds) allowed in an ad break. If the duration of underfilled ad time exceeds the personalization threshold, then the personalization of the ad break is abandoned and the underlying content is shown. This feature applies to *ad replacement* in live and VOD streams, rather than ad insertion, because it relies on an underlying content stream. For more information about ad break behavior, including ad replacement and insertion, see `Ad Behavior in AWS Elemental MediaTailor <https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html>`_ .
|
|
1772
1790
|
:param slate_ad_url: The URL for a video asset to transcode and use to fill in time that's not used by ads. AWS Elemental MediaTailor shows the slate to fill in gaps in media content. Configuring the slate is optional for non-VPAID playback configurations. For VPAID, the slate is required because MediaTailor provides it in the slots designated for dynamic ad content. The slate must be a high-quality asset that contains both audio and video.
|
|
@@ -1788,7 +1806,9 @@ class CfnPlaybackConfiguration(
|
|
|
1788
1806
|
configuration_aliases=configuration_aliases,
|
|
1789
1807
|
dash_configuration=dash_configuration,
|
|
1790
1808
|
hls_configuration=hls_configuration,
|
|
1809
|
+
insertion_mode=insertion_mode,
|
|
1791
1810
|
live_pre_roll_configuration=live_pre_roll_configuration,
|
|
1811
|
+
log_configuration=log_configuration,
|
|
1792
1812
|
manifest_processing_rules=manifest_processing_rules,
|
|
1793
1813
|
personalization_threshold_seconds=personalization_threshold_seconds,
|
|
1794
1814
|
slate_ad_url=slate_ad_url,
|
|
@@ -2055,6 +2075,19 @@ class CfnPlaybackConfiguration(
|
|
|
2055
2075
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2056
2076
|
jsii.set(self, "hlsConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
2057
2077
|
|
|
2078
|
+
@builtins.property
|
|
2079
|
+
@jsii.member(jsii_name="insertionMode")
|
|
2080
|
+
def insertion_mode(self) -> typing.Optional[builtins.str]:
|
|
2081
|
+
'''The setting that controls whether players can use stitched or guided ad insertion.'''
|
|
2082
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "insertionMode"))
|
|
2083
|
+
|
|
2084
|
+
@insertion_mode.setter
|
|
2085
|
+
def insertion_mode(self, value: typing.Optional[builtins.str]) -> None:
|
|
2086
|
+
if __debug__:
|
|
2087
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8db08ab0a15b5e71226bad5d4d94682032ded680bfe3f777d4f4ef02bad39cbf)
|
|
2088
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2089
|
+
jsii.set(self, "insertionMode", value) # pyright: ignore[reportArgumentType]
|
|
2090
|
+
|
|
2058
2091
|
@builtins.property
|
|
2059
2092
|
@jsii.member(jsii_name="livePreRollConfiguration")
|
|
2060
2093
|
def live_pre_roll_configuration(
|
|
@@ -2073,6 +2106,24 @@ class CfnPlaybackConfiguration(
|
|
|
2073
2106
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2074
2107
|
jsii.set(self, "livePreRollConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
2075
2108
|
|
|
2109
|
+
@builtins.property
|
|
2110
|
+
@jsii.member(jsii_name="logConfiguration")
|
|
2111
|
+
def log_configuration(
|
|
2112
|
+
self,
|
|
2113
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPlaybackConfiguration.LogConfigurationProperty"]]:
|
|
2114
|
+
'''Defines where AWS Elemental MediaTailor sends logs for the playback configuration.'''
|
|
2115
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPlaybackConfiguration.LogConfigurationProperty"]], jsii.get(self, "logConfiguration"))
|
|
2116
|
+
|
|
2117
|
+
@log_configuration.setter
|
|
2118
|
+
def log_configuration(
|
|
2119
|
+
self,
|
|
2120
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPlaybackConfiguration.LogConfigurationProperty"]],
|
|
2121
|
+
) -> None:
|
|
2122
|
+
if __debug__:
|
|
2123
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a6fbfb7358fa4aedc54b5bb197d51ad46d862c18709b40e671060ad3ab400894)
|
|
2124
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2125
|
+
jsii.set(self, "logConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
2126
|
+
|
|
2076
2127
|
@builtins.property
|
|
2077
2128
|
@jsii.member(jsii_name="manifestProcessingRules")
|
|
2078
2129
|
def manifest_processing_rules(
|
|
@@ -2261,6 +2312,83 @@ class CfnPlaybackConfiguration(
|
|
|
2261
2312
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
2262
2313
|
)
|
|
2263
2314
|
|
|
2315
|
+
@jsii.data_type(
|
|
2316
|
+
jsii_type="aws-cdk-lib.aws_mediatailor.CfnPlaybackConfiguration.AdsInteractionLogProperty",
|
|
2317
|
+
jsii_struct_bases=[],
|
|
2318
|
+
name_mapping={
|
|
2319
|
+
"exclude_event_types": "excludeEventTypes",
|
|
2320
|
+
"publish_opt_in_event_types": "publishOptInEventTypes",
|
|
2321
|
+
},
|
|
2322
|
+
)
|
|
2323
|
+
class AdsInteractionLogProperty:
|
|
2324
|
+
def __init__(
|
|
2325
|
+
self,
|
|
2326
|
+
*,
|
|
2327
|
+
exclude_event_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2328
|
+
publish_opt_in_event_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2329
|
+
) -> None:
|
|
2330
|
+
'''Settings for customizing what events are included in logs for interactions with the ad decision server (ADS).
|
|
2331
|
+
|
|
2332
|
+
For more information about ADS logs, inlcuding descriptions of the event types, see `MediaTailor ADS logs description and event types <https://docs.aws.amazon.com/mediatailor/latest/ug/ads-log-format.html>`_ in AWS Elemental MediaTailor User Guide.
|
|
2333
|
+
|
|
2334
|
+
:param exclude_event_types: Indicates that MediaTailor won't emit the selected events in the logs for playback sessions that are initialized with this configuration.
|
|
2335
|
+
:param publish_opt_in_event_types: Indicates that MediaTailor emits ``RAW_ADS_RESPONSE`` logs for playback sessions that are initialized with this configuration.
|
|
2336
|
+
|
|
2337
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-adsinteractionlog.html
|
|
2338
|
+
:exampleMetadata: fixture=_generated
|
|
2339
|
+
|
|
2340
|
+
Example::
|
|
2341
|
+
|
|
2342
|
+
# The code below shows an example of how to instantiate this type.
|
|
2343
|
+
# The values are placeholders you should change.
|
|
2344
|
+
from aws_cdk import aws_mediatailor as mediatailor
|
|
2345
|
+
|
|
2346
|
+
ads_interaction_log_property = mediatailor.CfnPlaybackConfiguration.AdsInteractionLogProperty(
|
|
2347
|
+
exclude_event_types=["excludeEventTypes"],
|
|
2348
|
+
publish_opt_in_event_types=["publishOptInEventTypes"]
|
|
2349
|
+
)
|
|
2350
|
+
'''
|
|
2351
|
+
if __debug__:
|
|
2352
|
+
type_hints = typing.get_type_hints(_typecheckingstub__325f2da032e4a3f14a765ea1c946c8707bfd649b7df813a9bf9d270b2edfcd0f)
|
|
2353
|
+
check_type(argname="argument exclude_event_types", value=exclude_event_types, expected_type=type_hints["exclude_event_types"])
|
|
2354
|
+
check_type(argname="argument publish_opt_in_event_types", value=publish_opt_in_event_types, expected_type=type_hints["publish_opt_in_event_types"])
|
|
2355
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2356
|
+
if exclude_event_types is not None:
|
|
2357
|
+
self._values["exclude_event_types"] = exclude_event_types
|
|
2358
|
+
if publish_opt_in_event_types is not None:
|
|
2359
|
+
self._values["publish_opt_in_event_types"] = publish_opt_in_event_types
|
|
2360
|
+
|
|
2361
|
+
@builtins.property
|
|
2362
|
+
def exclude_event_types(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
2363
|
+
'''Indicates that MediaTailor won't emit the selected events in the logs for playback sessions that are initialized with this configuration.
|
|
2364
|
+
|
|
2365
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-adsinteractionlog.html#cfn-mediatailor-playbackconfiguration-adsinteractionlog-excludeeventtypes
|
|
2366
|
+
'''
|
|
2367
|
+
result = self._values.get("exclude_event_types")
|
|
2368
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
2369
|
+
|
|
2370
|
+
@builtins.property
|
|
2371
|
+
def publish_opt_in_event_types(
|
|
2372
|
+
self,
|
|
2373
|
+
) -> typing.Optional[typing.List[builtins.str]]:
|
|
2374
|
+
'''Indicates that MediaTailor emits ``RAW_ADS_RESPONSE`` logs for playback sessions that are initialized with this configuration.
|
|
2375
|
+
|
|
2376
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-adsinteractionlog.html#cfn-mediatailor-playbackconfiguration-adsinteractionlog-publishoptineventtypes
|
|
2377
|
+
'''
|
|
2378
|
+
result = self._values.get("publish_opt_in_event_types")
|
|
2379
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
2380
|
+
|
|
2381
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2382
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2383
|
+
|
|
2384
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2385
|
+
return not (rhs == self)
|
|
2386
|
+
|
|
2387
|
+
def __repr__(self) -> str:
|
|
2388
|
+
return "AdsInteractionLogProperty(%s)" % ", ".join(
|
|
2389
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2390
|
+
)
|
|
2391
|
+
|
|
2264
2392
|
@jsii.data_type(
|
|
2265
2393
|
jsii_type="aws-cdk-lib.aws_mediatailor.CfnPlaybackConfiguration.AvailSuppressionProperty",
|
|
2266
2394
|
jsii_struct_bases=[],
|
|
@@ -2732,6 +2860,131 @@ class CfnPlaybackConfiguration(
|
|
|
2732
2860
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
2733
2861
|
)
|
|
2734
2862
|
|
|
2863
|
+
@jsii.data_type(
|
|
2864
|
+
jsii_type="aws-cdk-lib.aws_mediatailor.CfnPlaybackConfiguration.LogConfigurationProperty",
|
|
2865
|
+
jsii_struct_bases=[],
|
|
2866
|
+
name_mapping={
|
|
2867
|
+
"percent_enabled": "percentEnabled",
|
|
2868
|
+
"ads_interaction_log": "adsInteractionLog",
|
|
2869
|
+
"enabled_logging_strategies": "enabledLoggingStrategies",
|
|
2870
|
+
"manifest_service_interaction_log": "manifestServiceInteractionLog",
|
|
2871
|
+
},
|
|
2872
|
+
)
|
|
2873
|
+
class LogConfigurationProperty:
|
|
2874
|
+
def __init__(
|
|
2875
|
+
self,
|
|
2876
|
+
*,
|
|
2877
|
+
percent_enabled: jsii.Number,
|
|
2878
|
+
ads_interaction_log: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.AdsInteractionLogProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2879
|
+
enabled_logging_strategies: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2880
|
+
manifest_service_interaction_log: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.ManifestServiceInteractionLogProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2881
|
+
) -> None:
|
|
2882
|
+
'''Defines where AWS Elemental MediaTailor sends logs for the playback configuration.
|
|
2883
|
+
|
|
2884
|
+
:param percent_enabled: The percentage of session logs that MediaTailor sends to your configured log destination. For example, if your playback configuration has 1000 sessions and ``percentEnabled`` is set to ``60`` , MediaTailor sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides at random which of the playback configuration sessions to send logs for. If you want to view logs for a specific session, you can use the `debug log mode <https://docs.aws.amazon.com/mediatailor/latest/ug/debug-log-mode.html>`_ . Valid values: ``0`` - ``100``
|
|
2885
|
+
:param ads_interaction_log: Settings for customizing what events are included in logs for interactions with the ad decision server (ADS).
|
|
2886
|
+
:param enabled_logging_strategies: The method used for collecting logs from AWS Elemental MediaTailor. ``LEGACY_CLOUDWATCH`` indicates that MediaTailor is sending logs directly to Amazon CloudWatch Logs. ``VENDED_LOGS`` indicates that MediaTailor is sending logs to CloudWatch, which then vends the logs to your destination of choice. Supported destinations are CloudWatch Logs log group, Amazon S3 bucket, and Amazon Data Firehose stream.
|
|
2887
|
+
:param manifest_service_interaction_log: Settings for customizing what events are included in logs for interactions with the origin server.
|
|
2888
|
+
|
|
2889
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-logconfiguration.html
|
|
2890
|
+
:exampleMetadata: fixture=_generated
|
|
2891
|
+
|
|
2892
|
+
Example::
|
|
2893
|
+
|
|
2894
|
+
# The code below shows an example of how to instantiate this type.
|
|
2895
|
+
# The values are placeholders you should change.
|
|
2896
|
+
from aws_cdk import aws_mediatailor as mediatailor
|
|
2897
|
+
|
|
2898
|
+
log_configuration_property = mediatailor.CfnPlaybackConfiguration.LogConfigurationProperty(
|
|
2899
|
+
percent_enabled=123,
|
|
2900
|
+
|
|
2901
|
+
# the properties below are optional
|
|
2902
|
+
ads_interaction_log=mediatailor.CfnPlaybackConfiguration.AdsInteractionLogProperty(
|
|
2903
|
+
exclude_event_types=["excludeEventTypes"],
|
|
2904
|
+
publish_opt_in_event_types=["publishOptInEventTypes"]
|
|
2905
|
+
),
|
|
2906
|
+
enabled_logging_strategies=["enabledLoggingStrategies"],
|
|
2907
|
+
manifest_service_interaction_log=mediatailor.CfnPlaybackConfiguration.ManifestServiceInteractionLogProperty(
|
|
2908
|
+
exclude_event_types=["excludeEventTypes"]
|
|
2909
|
+
)
|
|
2910
|
+
)
|
|
2911
|
+
'''
|
|
2912
|
+
if __debug__:
|
|
2913
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0b1a16aa41d90a41939aee256096b129464d60c87f4e8ac32c6ce9c43de9dcfd)
|
|
2914
|
+
check_type(argname="argument percent_enabled", value=percent_enabled, expected_type=type_hints["percent_enabled"])
|
|
2915
|
+
check_type(argname="argument ads_interaction_log", value=ads_interaction_log, expected_type=type_hints["ads_interaction_log"])
|
|
2916
|
+
check_type(argname="argument enabled_logging_strategies", value=enabled_logging_strategies, expected_type=type_hints["enabled_logging_strategies"])
|
|
2917
|
+
check_type(argname="argument manifest_service_interaction_log", value=manifest_service_interaction_log, expected_type=type_hints["manifest_service_interaction_log"])
|
|
2918
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2919
|
+
"percent_enabled": percent_enabled,
|
|
2920
|
+
}
|
|
2921
|
+
if ads_interaction_log is not None:
|
|
2922
|
+
self._values["ads_interaction_log"] = ads_interaction_log
|
|
2923
|
+
if enabled_logging_strategies is not None:
|
|
2924
|
+
self._values["enabled_logging_strategies"] = enabled_logging_strategies
|
|
2925
|
+
if manifest_service_interaction_log is not None:
|
|
2926
|
+
self._values["manifest_service_interaction_log"] = manifest_service_interaction_log
|
|
2927
|
+
|
|
2928
|
+
@builtins.property
|
|
2929
|
+
def percent_enabled(self) -> jsii.Number:
|
|
2930
|
+
'''The percentage of session logs that MediaTailor sends to your configured log destination.
|
|
2931
|
+
|
|
2932
|
+
For example, if your playback configuration has 1000 sessions and ``percentEnabled`` is set to ``60`` , MediaTailor sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides at random which of the playback configuration sessions to send logs for. If you want to view logs for a specific session, you can use the `debug log mode <https://docs.aws.amazon.com/mediatailor/latest/ug/debug-log-mode.html>`_ .
|
|
2933
|
+
|
|
2934
|
+
Valid values: ``0`` - ``100``
|
|
2935
|
+
|
|
2936
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-logconfiguration.html#cfn-mediatailor-playbackconfiguration-logconfiguration-percentenabled
|
|
2937
|
+
'''
|
|
2938
|
+
result = self._values.get("percent_enabled")
|
|
2939
|
+
assert result is not None, "Required property 'percent_enabled' is missing"
|
|
2940
|
+
return typing.cast(jsii.Number, result)
|
|
2941
|
+
|
|
2942
|
+
@builtins.property
|
|
2943
|
+
def ads_interaction_log(
|
|
2944
|
+
self,
|
|
2945
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPlaybackConfiguration.AdsInteractionLogProperty"]]:
|
|
2946
|
+
'''Settings for customizing what events are included in logs for interactions with the ad decision server (ADS).
|
|
2947
|
+
|
|
2948
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-logconfiguration.html#cfn-mediatailor-playbackconfiguration-logconfiguration-adsinteractionlog
|
|
2949
|
+
'''
|
|
2950
|
+
result = self._values.get("ads_interaction_log")
|
|
2951
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPlaybackConfiguration.AdsInteractionLogProperty"]], result)
|
|
2952
|
+
|
|
2953
|
+
@builtins.property
|
|
2954
|
+
def enabled_logging_strategies(
|
|
2955
|
+
self,
|
|
2956
|
+
) -> typing.Optional[typing.List[builtins.str]]:
|
|
2957
|
+
'''The method used for collecting logs from AWS Elemental MediaTailor.
|
|
2958
|
+
|
|
2959
|
+
``LEGACY_CLOUDWATCH`` indicates that MediaTailor is sending logs directly to Amazon CloudWatch Logs. ``VENDED_LOGS`` indicates that MediaTailor is sending logs to CloudWatch, which then vends the logs to your destination of choice. Supported destinations are CloudWatch Logs log group, Amazon S3 bucket, and Amazon Data Firehose stream.
|
|
2960
|
+
|
|
2961
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-logconfiguration.html#cfn-mediatailor-playbackconfiguration-logconfiguration-enabledloggingstrategies
|
|
2962
|
+
'''
|
|
2963
|
+
result = self._values.get("enabled_logging_strategies")
|
|
2964
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
2965
|
+
|
|
2966
|
+
@builtins.property
|
|
2967
|
+
def manifest_service_interaction_log(
|
|
2968
|
+
self,
|
|
2969
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPlaybackConfiguration.ManifestServiceInteractionLogProperty"]]:
|
|
2970
|
+
'''Settings for customizing what events are included in logs for interactions with the origin server.
|
|
2971
|
+
|
|
2972
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-logconfiguration.html#cfn-mediatailor-playbackconfiguration-logconfiguration-manifestserviceinteractionlog
|
|
2973
|
+
'''
|
|
2974
|
+
result = self._values.get("manifest_service_interaction_log")
|
|
2975
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPlaybackConfiguration.ManifestServiceInteractionLogProperty"]], result)
|
|
2976
|
+
|
|
2977
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2978
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2979
|
+
|
|
2980
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2981
|
+
return not (rhs == self)
|
|
2982
|
+
|
|
2983
|
+
def __repr__(self) -> str:
|
|
2984
|
+
return "LogConfigurationProperty(%s)" % ", ".join(
|
|
2985
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2986
|
+
)
|
|
2987
|
+
|
|
2735
2988
|
@jsii.data_type(
|
|
2736
2989
|
jsii_type="aws-cdk-lib.aws_mediatailor.CfnPlaybackConfiguration.ManifestProcessingRulesProperty",
|
|
2737
2990
|
jsii_struct_bases=[],
|
|
@@ -2795,6 +3048,63 @@ class CfnPlaybackConfiguration(
|
|
|
2795
3048
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
2796
3049
|
)
|
|
2797
3050
|
|
|
3051
|
+
@jsii.data_type(
|
|
3052
|
+
jsii_type="aws-cdk-lib.aws_mediatailor.CfnPlaybackConfiguration.ManifestServiceInteractionLogProperty",
|
|
3053
|
+
jsii_struct_bases=[],
|
|
3054
|
+
name_mapping={"exclude_event_types": "excludeEventTypes"},
|
|
3055
|
+
)
|
|
3056
|
+
class ManifestServiceInteractionLogProperty:
|
|
3057
|
+
def __init__(
|
|
3058
|
+
self,
|
|
3059
|
+
*,
|
|
3060
|
+
exclude_event_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
3061
|
+
) -> None:
|
|
3062
|
+
'''Settings for customizing what events are included in logs for interactions with the origin server.
|
|
3063
|
+
|
|
3064
|
+
For more information about manifest service logs, including descriptions of the event types, see `MediaTailor manifest logs description and event types <https://docs.aws.amazon.com/mediatailor/latest/ug/log-types.html>`_ in AWS Elemental MediaTailor User Guide.
|
|
3065
|
+
|
|
3066
|
+
:param exclude_event_types: Indicates that MediaTailor won't emit the selected events in the logs for playback sessions that are initialized with this configuration.
|
|
3067
|
+
|
|
3068
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-manifestserviceinteractionlog.html
|
|
3069
|
+
:exampleMetadata: fixture=_generated
|
|
3070
|
+
|
|
3071
|
+
Example::
|
|
3072
|
+
|
|
3073
|
+
# The code below shows an example of how to instantiate this type.
|
|
3074
|
+
# The values are placeholders you should change.
|
|
3075
|
+
from aws_cdk import aws_mediatailor as mediatailor
|
|
3076
|
+
|
|
3077
|
+
manifest_service_interaction_log_property = mediatailor.CfnPlaybackConfiguration.ManifestServiceInteractionLogProperty(
|
|
3078
|
+
exclude_event_types=["excludeEventTypes"]
|
|
3079
|
+
)
|
|
3080
|
+
'''
|
|
3081
|
+
if __debug__:
|
|
3082
|
+
type_hints = typing.get_type_hints(_typecheckingstub__877d8a60ce1cb5812848b2604b2ff4a34e5662596f05cca7a6a335a5facd5374)
|
|
3083
|
+
check_type(argname="argument exclude_event_types", value=exclude_event_types, expected_type=type_hints["exclude_event_types"])
|
|
3084
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3085
|
+
if exclude_event_types is not None:
|
|
3086
|
+
self._values["exclude_event_types"] = exclude_event_types
|
|
3087
|
+
|
|
3088
|
+
@builtins.property
|
|
3089
|
+
def exclude_event_types(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
3090
|
+
'''Indicates that MediaTailor won't emit the selected events in the logs for playback sessions that are initialized with this configuration.
|
|
3091
|
+
|
|
3092
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-manifestserviceinteractionlog.html#cfn-mediatailor-playbackconfiguration-manifestserviceinteractionlog-excludeeventtypes
|
|
3093
|
+
'''
|
|
3094
|
+
result = self._values.get("exclude_event_types")
|
|
3095
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
3096
|
+
|
|
3097
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3098
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3099
|
+
|
|
3100
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3101
|
+
return not (rhs == self)
|
|
3102
|
+
|
|
3103
|
+
def __repr__(self) -> str:
|
|
3104
|
+
return "ManifestServiceInteractionLogProperty(%s)" % ", ".join(
|
|
3105
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3106
|
+
)
|
|
3107
|
+
|
|
2798
3108
|
|
|
2799
3109
|
@jsii.data_type(
|
|
2800
3110
|
jsii_type="aws-cdk-lib.aws_mediatailor.CfnPlaybackConfigurationProps",
|
|
@@ -2810,7 +3120,9 @@ class CfnPlaybackConfiguration(
|
|
|
2810
3120
|
"configuration_aliases": "configurationAliases",
|
|
2811
3121
|
"dash_configuration": "dashConfiguration",
|
|
2812
3122
|
"hls_configuration": "hlsConfiguration",
|
|
3123
|
+
"insertion_mode": "insertionMode",
|
|
2813
3124
|
"live_pre_roll_configuration": "livePreRollConfiguration",
|
|
3125
|
+
"log_configuration": "logConfiguration",
|
|
2814
3126
|
"manifest_processing_rules": "manifestProcessingRules",
|
|
2815
3127
|
"personalization_threshold_seconds": "personalizationThresholdSeconds",
|
|
2816
3128
|
"slate_ad_url": "slateAdUrl",
|
|
@@ -2832,7 +3144,9 @@ class CfnPlaybackConfigurationProps:
|
|
|
2832
3144
|
configuration_aliases: typing.Optional[typing.Union[typing.Mapping[builtins.str, typing.Any], _IResolvable_da3f097b]] = None,
|
|
2833
3145
|
dash_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.DashConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2834
3146
|
hls_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.HlsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3147
|
+
insertion_mode: typing.Optional[builtins.str] = None,
|
|
2835
3148
|
live_pre_roll_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.LivePreRollConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3149
|
+
log_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.LogConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2836
3150
|
manifest_processing_rules: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.ManifestProcessingRulesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2837
3151
|
personalization_threshold_seconds: typing.Optional[jsii.Number] = None,
|
|
2838
3152
|
slate_ad_url: typing.Optional[builtins.str] = None,
|
|
@@ -2851,7 +3165,9 @@ class CfnPlaybackConfigurationProps:
|
|
|
2851
3165
|
:param configuration_aliases: The player parameters and aliases used as dynamic variables during session initialization. For more information, see `Domain Variables <https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domain.html>`_ .
|
|
2852
3166
|
:param dash_configuration: The configuration for a DASH source.
|
|
2853
3167
|
:param hls_configuration: The configuration for HLS content.
|
|
3168
|
+
:param insertion_mode: The setting that controls whether players can use stitched or guided ad insertion. The default, ``STITCHED_ONLY`` , forces all player sessions to use stitched (server-side) ad insertion. Choosing ``PLAYER_SELECT`` allows players to select either stitched or guided ad insertion at session-initialization time. The default for players that do not specify an insertion mode is stitched.
|
|
2854
3169
|
:param live_pre_roll_configuration: The configuration for pre-roll ad insertion.
|
|
3170
|
+
:param log_configuration: Defines where AWS Elemental MediaTailor sends logs for the playback configuration.
|
|
2855
3171
|
:param manifest_processing_rules: The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
|
|
2856
3172
|
:param personalization_threshold_seconds: Defines the maximum duration of underfilled ad time (in seconds) allowed in an ad break. If the duration of underfilled ad time exceeds the personalization threshold, then the personalization of the ad break is abandoned and the underlying content is shown. This feature applies to *ad replacement* in live and VOD streams, rather than ad insertion, because it relies on an underlying content stream. For more information about ad break behavior, including ad replacement and insertion, see `Ad Behavior in AWS Elemental MediaTailor <https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html>`_ .
|
|
2857
3173
|
:param slate_ad_url: The URL for a video asset to transcode and use to fill in time that's not used by ads. AWS Elemental MediaTailor shows the slate to fill in gaps in media content. Configuring the slate is optional for non-VPAID playback configurations. For VPAID, the slate is required because MediaTailor provides it in the slots designated for dynamic ad content. The slate must be a high-quality asset that contains both audio and video.
|
|
@@ -2902,10 +3218,24 @@ class CfnPlaybackConfigurationProps:
|
|
|
2902
3218
|
hls_configuration=mediatailor.CfnPlaybackConfiguration.HlsConfigurationProperty(
|
|
2903
3219
|
manifest_endpoint_prefix="manifestEndpointPrefix"
|
|
2904
3220
|
),
|
|
3221
|
+
insertion_mode="insertionMode",
|
|
2905
3222
|
live_pre_roll_configuration=mediatailor.CfnPlaybackConfiguration.LivePreRollConfigurationProperty(
|
|
2906
3223
|
ad_decision_server_url="adDecisionServerUrl",
|
|
2907
3224
|
max_duration_seconds=123
|
|
2908
3225
|
),
|
|
3226
|
+
log_configuration=mediatailor.CfnPlaybackConfiguration.LogConfigurationProperty(
|
|
3227
|
+
percent_enabled=123,
|
|
3228
|
+
|
|
3229
|
+
# the properties below are optional
|
|
3230
|
+
ads_interaction_log=mediatailor.CfnPlaybackConfiguration.AdsInteractionLogProperty(
|
|
3231
|
+
exclude_event_types=["excludeEventTypes"],
|
|
3232
|
+
publish_opt_in_event_types=["publishOptInEventTypes"]
|
|
3233
|
+
),
|
|
3234
|
+
enabled_logging_strategies=["enabledLoggingStrategies"],
|
|
3235
|
+
manifest_service_interaction_log=mediatailor.CfnPlaybackConfiguration.ManifestServiceInteractionLogProperty(
|
|
3236
|
+
exclude_event_types=["excludeEventTypes"]
|
|
3237
|
+
)
|
|
3238
|
+
),
|
|
2909
3239
|
manifest_processing_rules=mediatailor.CfnPlaybackConfiguration.ManifestProcessingRulesProperty(
|
|
2910
3240
|
ad_marker_passthrough=mediatailor.CfnPlaybackConfiguration.AdMarkerPassthroughProperty(
|
|
2911
3241
|
enabled=False
|
|
@@ -2932,7 +3262,9 @@ class CfnPlaybackConfigurationProps:
|
|
|
2932
3262
|
check_type(argname="argument configuration_aliases", value=configuration_aliases, expected_type=type_hints["configuration_aliases"])
|
|
2933
3263
|
check_type(argname="argument dash_configuration", value=dash_configuration, expected_type=type_hints["dash_configuration"])
|
|
2934
3264
|
check_type(argname="argument hls_configuration", value=hls_configuration, expected_type=type_hints["hls_configuration"])
|
|
3265
|
+
check_type(argname="argument insertion_mode", value=insertion_mode, expected_type=type_hints["insertion_mode"])
|
|
2935
3266
|
check_type(argname="argument live_pre_roll_configuration", value=live_pre_roll_configuration, expected_type=type_hints["live_pre_roll_configuration"])
|
|
3267
|
+
check_type(argname="argument log_configuration", value=log_configuration, expected_type=type_hints["log_configuration"])
|
|
2936
3268
|
check_type(argname="argument manifest_processing_rules", value=manifest_processing_rules, expected_type=type_hints["manifest_processing_rules"])
|
|
2937
3269
|
check_type(argname="argument personalization_threshold_seconds", value=personalization_threshold_seconds, expected_type=type_hints["personalization_threshold_seconds"])
|
|
2938
3270
|
check_type(argname="argument slate_ad_url", value=slate_ad_url, expected_type=type_hints["slate_ad_url"])
|
|
@@ -2957,8 +3289,12 @@ class CfnPlaybackConfigurationProps:
|
|
|
2957
3289
|
self._values["dash_configuration"] = dash_configuration
|
|
2958
3290
|
if hls_configuration is not None:
|
|
2959
3291
|
self._values["hls_configuration"] = hls_configuration
|
|
3292
|
+
if insertion_mode is not None:
|
|
3293
|
+
self._values["insertion_mode"] = insertion_mode
|
|
2960
3294
|
if live_pre_roll_configuration is not None:
|
|
2961
3295
|
self._values["live_pre_roll_configuration"] = live_pre_roll_configuration
|
|
3296
|
+
if log_configuration is not None:
|
|
3297
|
+
self._values["log_configuration"] = log_configuration
|
|
2962
3298
|
if manifest_processing_rules is not None:
|
|
2963
3299
|
self._values["manifest_processing_rules"] = manifest_processing_rules
|
|
2964
3300
|
if personalization_threshold_seconds is not None:
|
|
@@ -3087,6 +3423,17 @@ class CfnPlaybackConfigurationProps:
|
|
|
3087
3423
|
result = self._values.get("hls_configuration")
|
|
3088
3424
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.HlsConfigurationProperty]], result)
|
|
3089
3425
|
|
|
3426
|
+
@builtins.property
|
|
3427
|
+
def insertion_mode(self) -> typing.Optional[builtins.str]:
|
|
3428
|
+
'''The setting that controls whether players can use stitched or guided ad insertion.
|
|
3429
|
+
|
|
3430
|
+
The default, ``STITCHED_ONLY`` , forces all player sessions to use stitched (server-side) ad insertion. Choosing ``PLAYER_SELECT`` allows players to select either stitched or guided ad insertion at session-initialization time. The default for players that do not specify an insertion mode is stitched.
|
|
3431
|
+
|
|
3432
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-playbackconfiguration.html#cfn-mediatailor-playbackconfiguration-insertionmode
|
|
3433
|
+
'''
|
|
3434
|
+
result = self._values.get("insertion_mode")
|
|
3435
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3436
|
+
|
|
3090
3437
|
@builtins.property
|
|
3091
3438
|
def live_pre_roll_configuration(
|
|
3092
3439
|
self,
|
|
@@ -3098,6 +3445,17 @@ class CfnPlaybackConfigurationProps:
|
|
|
3098
3445
|
result = self._values.get("live_pre_roll_configuration")
|
|
3099
3446
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.LivePreRollConfigurationProperty]], result)
|
|
3100
3447
|
|
|
3448
|
+
@builtins.property
|
|
3449
|
+
def log_configuration(
|
|
3450
|
+
self,
|
|
3451
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.LogConfigurationProperty]]:
|
|
3452
|
+
'''Defines where AWS Elemental MediaTailor sends logs for the playback configuration.
|
|
3453
|
+
|
|
3454
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-playbackconfiguration.html#cfn-mediatailor-playbackconfiguration-logconfiguration
|
|
3455
|
+
'''
|
|
3456
|
+
result = self._values.get("log_configuration")
|
|
3457
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.LogConfigurationProperty]], result)
|
|
3458
|
+
|
|
3101
3459
|
@builtins.property
|
|
3102
3460
|
def manifest_processing_rules(
|
|
3103
3461
|
self,
|
|
@@ -4603,7 +4961,9 @@ def _typecheckingstub__3dcfb97a898a80ee6a7b069e26028183e8a797f0c48fdbd4fe6ecb8ad
|
|
|
4603
4961
|
configuration_aliases: typing.Optional[typing.Union[typing.Mapping[builtins.str, typing.Any], _IResolvable_da3f097b]] = None,
|
|
4604
4962
|
dash_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.DashConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4605
4963
|
hls_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.HlsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4964
|
+
insertion_mode: typing.Optional[builtins.str] = None,
|
|
4606
4965
|
live_pre_roll_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.LivePreRollConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4966
|
+
log_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.LogConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4607
4967
|
manifest_processing_rules: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.ManifestProcessingRulesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4608
4968
|
personalization_threshold_seconds: typing.Optional[jsii.Number] = None,
|
|
4609
4969
|
slate_ad_url: typing.Optional[builtins.str] = None,
|
|
@@ -4685,12 +5045,24 @@ def _typecheckingstub__8c53800db93b8d74956b4a23e4372e79b770aeb9e98d1001196859bcb
|
|
|
4685
5045
|
"""Type checking stubs"""
|
|
4686
5046
|
pass
|
|
4687
5047
|
|
|
5048
|
+
def _typecheckingstub__8db08ab0a15b5e71226bad5d4d94682032ded680bfe3f777d4f4ef02bad39cbf(
|
|
5049
|
+
value: typing.Optional[builtins.str],
|
|
5050
|
+
) -> None:
|
|
5051
|
+
"""Type checking stubs"""
|
|
5052
|
+
pass
|
|
5053
|
+
|
|
4688
5054
|
def _typecheckingstub__d20db08db40dad827f8fdbbfd9ec60bdd03cf18a0cf5f764aedb5ed9040d782f(
|
|
4689
5055
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.LivePreRollConfigurationProperty]],
|
|
4690
5056
|
) -> None:
|
|
4691
5057
|
"""Type checking stubs"""
|
|
4692
5058
|
pass
|
|
4693
5059
|
|
|
5060
|
+
def _typecheckingstub__a6fbfb7358fa4aedc54b5bb197d51ad46d862c18709b40e671060ad3ab400894(
|
|
5061
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.LogConfigurationProperty]],
|
|
5062
|
+
) -> None:
|
|
5063
|
+
"""Type checking stubs"""
|
|
5064
|
+
pass
|
|
5065
|
+
|
|
4694
5066
|
def _typecheckingstub__7ef2be3172d1df94da8603df93c79aa68aa713132917a7f79ee5d67eca13bdc5(
|
|
4695
5067
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.ManifestProcessingRulesProperty]],
|
|
4696
5068
|
) -> None:
|
|
@@ -4735,6 +5107,14 @@ def _typecheckingstub__c84cc8c470c35ea1870d24a6e58a722cc2d0952d699c8580003497558
|
|
|
4735
5107
|
"""Type checking stubs"""
|
|
4736
5108
|
pass
|
|
4737
5109
|
|
|
5110
|
+
def _typecheckingstub__325f2da032e4a3f14a765ea1c946c8707bfd649b7df813a9bf9d270b2edfcd0f(
|
|
5111
|
+
*,
|
|
5112
|
+
exclude_event_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
5113
|
+
publish_opt_in_event_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
5114
|
+
) -> None:
|
|
5115
|
+
"""Type checking stubs"""
|
|
5116
|
+
pass
|
|
5117
|
+
|
|
4738
5118
|
def _typecheckingstub__8b4195a89a44a68af7fade1bdaaea19a0b3104ca5fc40a34ac2c5440a8d5f1d0(
|
|
4739
5119
|
*,
|
|
4740
5120
|
fill_policy: typing.Optional[builtins.str] = None,
|
|
@@ -4784,6 +5164,16 @@ def _typecheckingstub__be1326ff9046a5c3b87adfaac42a0610149574f9d367d1c04949ccf8a
|
|
|
4784
5164
|
"""Type checking stubs"""
|
|
4785
5165
|
pass
|
|
4786
5166
|
|
|
5167
|
+
def _typecheckingstub__0b1a16aa41d90a41939aee256096b129464d60c87f4e8ac32c6ce9c43de9dcfd(
|
|
5168
|
+
*,
|
|
5169
|
+
percent_enabled: jsii.Number,
|
|
5170
|
+
ads_interaction_log: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AdsInteractionLogProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5171
|
+
enabled_logging_strategies: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
5172
|
+
manifest_service_interaction_log: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.ManifestServiceInteractionLogProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5173
|
+
) -> None:
|
|
5174
|
+
"""Type checking stubs"""
|
|
5175
|
+
pass
|
|
5176
|
+
|
|
4787
5177
|
def _typecheckingstub__ef5bb7a5b9697fa8ca9b867a5d8f7f8c6041a353ed9fad8ec9b06f14fd300d73(
|
|
4788
5178
|
*,
|
|
4789
5179
|
ad_marker_passthrough: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AdMarkerPassthroughProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -4791,6 +5181,13 @@ def _typecheckingstub__ef5bb7a5b9697fa8ca9b867a5d8f7f8c6041a353ed9fad8ec9b06f14f
|
|
|
4791
5181
|
"""Type checking stubs"""
|
|
4792
5182
|
pass
|
|
4793
5183
|
|
|
5184
|
+
def _typecheckingstub__877d8a60ce1cb5812848b2604b2ff4a34e5662596f05cca7a6a335a5facd5374(
|
|
5185
|
+
*,
|
|
5186
|
+
exclude_event_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
5187
|
+
) -> None:
|
|
5188
|
+
"""Type checking stubs"""
|
|
5189
|
+
pass
|
|
5190
|
+
|
|
4794
5191
|
def _typecheckingstub__935886ab495203cc213786b925e7fd8fe4acd3f9db5864d4f1f5c011539346f8(
|
|
4795
5192
|
*,
|
|
4796
5193
|
ad_decision_server_url: builtins.str,
|
|
@@ -4803,7 +5200,9 @@ def _typecheckingstub__935886ab495203cc213786b925e7fd8fe4acd3f9db5864d4f1f5c0115
|
|
|
4803
5200
|
configuration_aliases: typing.Optional[typing.Union[typing.Mapping[builtins.str, typing.Any], _IResolvable_da3f097b]] = None,
|
|
4804
5201
|
dash_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.DashConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4805
5202
|
hls_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.HlsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5203
|
+
insertion_mode: typing.Optional[builtins.str] = None,
|
|
4806
5204
|
live_pre_roll_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.LivePreRollConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5205
|
+
log_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.LogConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4807
5206
|
manifest_processing_rules: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.ManifestProcessingRulesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4808
5207
|
personalization_threshold_seconds: typing.Optional[jsii.Number] = None,
|
|
4809
5208
|
slate_ad_url: typing.Optional[builtins.str] = None,
|