aws-cdk-lib 2.210.0__py3-none-any.whl → 2.211.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 +6 -11
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.210.0.jsii.tgz → aws-cdk-lib@2.211.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +2 -1
- aws_cdk/aws_appconfig/__init__.py +9 -0
- aws_cdk/aws_arcregionswitch/__init__.py +4962 -0
- aws_cdk/aws_athena/__init__.py +23 -19
- aws_cdk/aws_autoscaling/__init__.py +6 -6
- aws_cdk/aws_batch/__init__.py +721 -51
- aws_cdk/aws_cassandra/__init__.py +28 -1
- aws_cdk/aws_cloudfront/__init__.py +20 -8
- aws_cdk/aws_cognito/__init__.py +9 -2
- aws_cdk/aws_datazone/__init__.py +118 -77
- aws_cdk/aws_dax/__init__.py +39 -0
- aws_cdk/aws_deadline/__init__.py +155 -7
- aws_cdk/aws_docdb/__init__.py +20 -11
- aws_cdk/aws_dynamodb/__init__.py +160 -20
- aws_cdk/aws_ec2/__init__.py +978 -256
- aws_cdk/aws_ecr/__init__.py +274 -0
- aws_cdk/aws_ecs/__init__.py +1642 -140
- aws_cdk/aws_eks/__init__.py +51 -3
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +30 -16
- aws_cdk/aws_entityresolution/__init__.py +240 -45
- aws_cdk/aws_evs/__init__.py +20 -45
- aws_cdk/aws_iot/__init__.py +387 -0
- aws_cdk/aws_iotsitewise/__init__.py +1247 -139
- aws_cdk/aws_ivs/__init__.py +443 -33
- aws_cdk/aws_kinesisfirehose/__init__.py +2 -0
- aws_cdk/aws_lambda/__init__.py +3 -3
- aws_cdk/aws_lightsail/__init__.py +590 -0
- aws_cdk/aws_logs/__init__.py +97 -3
- aws_cdk/aws_medialive/__init__.py +270 -7
- aws_cdk/aws_mediapackagev2/__init__.py +204 -6
- aws_cdk/aws_neptune/__init__.py +41 -2
- aws_cdk/aws_networkfirewall/__init__.py +490 -134
- aws_cdk/aws_observabilityadmin/__init__.py +1468 -0
- aws_cdk/aws_opensearchserverless/__init__.py +2 -2
- aws_cdk/aws_opsworks/__init__.py +125 -125
- aws_cdk/aws_opsworkscm/__init__.py +1 -53
- aws_cdk/aws_pcs/__init__.py +36 -0
- aws_cdk/aws_qbusiness/__init__.py +3 -3
- aws_cdk/aws_quicksight/__init__.py +107 -0
- aws_cdk/aws_rds/__init__.py +274 -0
- aws_cdk/aws_s3/__init__.py +56 -1
- aws_cdk/aws_s3express/__init__.py +52 -1
- aws_cdk/aws_sagemaker/__init__.py +4033 -218
- aws_cdk/aws_ses/__init__.py +172 -9
- aws_cdk/aws_ssm/__init__.py +8 -4
- aws_cdk/aws_verifiedpermissions/__init__.py +23 -2
- aws_cdk/aws_wisdom/__init__.py +2 -2
- aws_cdk/aws_workspacesweb/__init__.py +949 -157
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/METADATA +8 -8
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/RECORD +57 -55
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ivs/__init__.py
CHANGED
|
@@ -1772,8 +1772,6 @@ class CfnPlaybackRestrictionPolicy(
|
|
|
1772
1772
|
cfn_playback_restriction_policy = ivs.CfnPlaybackRestrictionPolicy(self, "MyCfnPlaybackRestrictionPolicy",
|
|
1773
1773
|
allowed_countries=["allowedCountries"],
|
|
1774
1774
|
allowed_origins=["allowedOrigins"],
|
|
1775
|
-
|
|
1776
|
-
# the properties below are optional
|
|
1777
1775
|
enable_strict_origin_enforcement=False,
|
|
1778
1776
|
name="name",
|
|
1779
1777
|
tags=[CfnTag(
|
|
@@ -1788,8 +1786,8 @@ class CfnPlaybackRestrictionPolicy(
|
|
|
1788
1786
|
scope: _constructs_77d1e7e8.Construct,
|
|
1789
1787
|
id: builtins.str,
|
|
1790
1788
|
*,
|
|
1791
|
-
allowed_countries: typing.Sequence[builtins.str],
|
|
1792
|
-
allowed_origins: typing.Sequence[builtins.str],
|
|
1789
|
+
allowed_countries: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1790
|
+
allowed_origins: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1793
1791
|
enable_strict_origin_enforcement: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1794
1792
|
name: typing.Optional[builtins.str] = None,
|
|
1795
1793
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -1871,12 +1869,15 @@ class CfnPlaybackRestrictionPolicy(
|
|
|
1871
1869
|
|
|
1872
1870
|
@builtins.property
|
|
1873
1871
|
@jsii.member(jsii_name="allowedCountries")
|
|
1874
|
-
def allowed_countries(self) -> typing.List[builtins.str]:
|
|
1872
|
+
def allowed_countries(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
1875
1873
|
'''A list of country codes that control geoblocking restrictions.'''
|
|
1876
|
-
return typing.cast(typing.List[builtins.str], jsii.get(self, "allowedCountries"))
|
|
1874
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "allowedCountries"))
|
|
1877
1875
|
|
|
1878
1876
|
@allowed_countries.setter
|
|
1879
|
-
def allowed_countries(
|
|
1877
|
+
def allowed_countries(
|
|
1878
|
+
self,
|
|
1879
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
1880
|
+
) -> None:
|
|
1880
1881
|
if __debug__:
|
|
1881
1882
|
type_hints = typing.get_type_hints(_typecheckingstub__f6636af9e45dbeea2bcf7b5990280edcd8fec18083a4bfe23a76e19bd655ef03)
|
|
1882
1883
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
@@ -1884,12 +1885,15 @@ class CfnPlaybackRestrictionPolicy(
|
|
|
1884
1885
|
|
|
1885
1886
|
@builtins.property
|
|
1886
1887
|
@jsii.member(jsii_name="allowedOrigins")
|
|
1887
|
-
def allowed_origins(self) -> typing.List[builtins.str]:
|
|
1888
|
+
def allowed_origins(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
1888
1889
|
'''A list of origin sites that control CORS restriction.'''
|
|
1889
|
-
return typing.cast(typing.List[builtins.str], jsii.get(self, "allowedOrigins"))
|
|
1890
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "allowedOrigins"))
|
|
1890
1891
|
|
|
1891
1892
|
@allowed_origins.setter
|
|
1892
|
-
def allowed_origins(
|
|
1893
|
+
def allowed_origins(
|
|
1894
|
+
self,
|
|
1895
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
1896
|
+
) -> None:
|
|
1893
1897
|
if __debug__:
|
|
1894
1898
|
type_hints = typing.get_type_hints(_typecheckingstub__773f5ee580b6a7c42904b5a38460c9ae7e7e147bde8b69e1c43edddd32d7dc69)
|
|
1895
1899
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
@@ -1955,8 +1959,8 @@ class CfnPlaybackRestrictionPolicyProps:
|
|
|
1955
1959
|
def __init__(
|
|
1956
1960
|
self,
|
|
1957
1961
|
*,
|
|
1958
|
-
allowed_countries: typing.Sequence[builtins.str],
|
|
1959
|
-
allowed_origins: typing.Sequence[builtins.str],
|
|
1962
|
+
allowed_countries: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1963
|
+
allowed_origins: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1960
1964
|
enable_strict_origin_enforcement: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1961
1965
|
name: typing.Optional[builtins.str] = None,
|
|
1962
1966
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -1981,8 +1985,6 @@ class CfnPlaybackRestrictionPolicyProps:
|
|
|
1981
1985
|
cfn_playback_restriction_policy_props = ivs.CfnPlaybackRestrictionPolicyProps(
|
|
1982
1986
|
allowed_countries=["allowedCountries"],
|
|
1983
1987
|
allowed_origins=["allowedOrigins"],
|
|
1984
|
-
|
|
1985
|
-
# the properties below are optional
|
|
1986
1988
|
enable_strict_origin_enforcement=False,
|
|
1987
1989
|
name="name",
|
|
1988
1990
|
tags=[CfnTag(
|
|
@@ -1998,10 +2000,11 @@ class CfnPlaybackRestrictionPolicyProps:
|
|
|
1998
2000
|
check_type(argname="argument enable_strict_origin_enforcement", value=enable_strict_origin_enforcement, expected_type=type_hints["enable_strict_origin_enforcement"])
|
|
1999
2001
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
2000
2002
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
2001
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2002
|
-
|
|
2003
|
-
"
|
|
2004
|
-
|
|
2003
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2004
|
+
if allowed_countries is not None:
|
|
2005
|
+
self._values["allowed_countries"] = allowed_countries
|
|
2006
|
+
if allowed_origins is not None:
|
|
2007
|
+
self._values["allowed_origins"] = allowed_origins
|
|
2005
2008
|
if enable_strict_origin_enforcement is not None:
|
|
2006
2009
|
self._values["enable_strict_origin_enforcement"] = enable_strict_origin_enforcement
|
|
2007
2010
|
if name is not None:
|
|
@@ -2010,7 +2013,7 @@ class CfnPlaybackRestrictionPolicyProps:
|
|
|
2010
2013
|
self._values["tags"] = tags
|
|
2011
2014
|
|
|
2012
2015
|
@builtins.property
|
|
2013
|
-
def allowed_countries(self) -> typing.List[builtins.str]:
|
|
2016
|
+
def allowed_countries(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
2014
2017
|
'''A list of country codes that control geoblocking restrictions.
|
|
2015
2018
|
|
|
2016
2019
|
Allowed values are the officially assigned ISO 3166-1 alpha-2 codes. Default: All countries (an empty array).
|
|
@@ -2018,11 +2021,10 @@ class CfnPlaybackRestrictionPolicyProps:
|
|
|
2018
2021
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackrestrictionpolicy.html#cfn-ivs-playbackrestrictionpolicy-allowedcountries
|
|
2019
2022
|
'''
|
|
2020
2023
|
result = self._values.get("allowed_countries")
|
|
2021
|
-
|
|
2022
|
-
return typing.cast(typing.List[builtins.str], result)
|
|
2024
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
2023
2025
|
|
|
2024
2026
|
@builtins.property
|
|
2025
|
-
def allowed_origins(self) -> typing.List[builtins.str]:
|
|
2027
|
+
def allowed_origins(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
2026
2028
|
'''A list of origin sites that control CORS restriction.
|
|
2027
2029
|
|
|
2028
2030
|
Allowed values are the same as valid values of the Origin header defined at `https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin" <https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin>`_
|
|
@@ -2030,8 +2032,7 @@ class CfnPlaybackRestrictionPolicyProps:
|
|
|
2030
2032
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackrestrictionpolicy.html#cfn-ivs-playbackrestrictionpolicy-allowedorigins
|
|
2031
2033
|
'''
|
|
2032
2034
|
result = self._values.get("allowed_origins")
|
|
2033
|
-
|
|
2034
|
-
return typing.cast(typing.List[builtins.str], result)
|
|
2035
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
2035
2036
|
|
|
2036
2037
|
@builtins.property
|
|
2037
2038
|
def enable_strict_origin_enforcement(
|
|
@@ -3097,7 +3098,20 @@ class CfnStage(
|
|
|
3097
3098
|
storage_configuration_arn="storageConfigurationArn",
|
|
3098
3099
|
|
|
3099
3100
|
# the properties below are optional
|
|
3100
|
-
|
|
3101
|
+
hls_configuration=ivs.CfnStage.HlsConfigurationProperty(
|
|
3102
|
+
participant_recording_hls_configuration=ivs.CfnStage.ParticipantRecordingHlsConfigurationProperty(
|
|
3103
|
+
target_segment_duration_seconds=123
|
|
3104
|
+
)
|
|
3105
|
+
),
|
|
3106
|
+
media_types=["mediaTypes"],
|
|
3107
|
+
recording_reconnect_window_seconds=123,
|
|
3108
|
+
thumbnail_configuration=ivs.CfnStage.ThumbnailConfigurationProperty(
|
|
3109
|
+
participant_thumbnail_configuration=ivs.CfnStage.ParticipantThumbnailConfigurationProperty(
|
|
3110
|
+
recording_mode="recordingMode",
|
|
3111
|
+
storage=["storage"],
|
|
3112
|
+
target_interval_seconds=123
|
|
3113
|
+
)
|
|
3114
|
+
)
|
|
3101
3115
|
),
|
|
3102
3116
|
name="name",
|
|
3103
3117
|
tags=[CfnTag(
|
|
@@ -3247,7 +3261,10 @@ class CfnStage(
|
|
|
3247
3261
|
jsii_struct_bases=[],
|
|
3248
3262
|
name_mapping={
|
|
3249
3263
|
"storage_configuration_arn": "storageConfigurationArn",
|
|
3264
|
+
"hls_configuration": "hlsConfiguration",
|
|
3250
3265
|
"media_types": "mediaTypes",
|
|
3266
|
+
"recording_reconnect_window_seconds": "recordingReconnectWindowSeconds",
|
|
3267
|
+
"thumbnail_configuration": "thumbnailConfiguration",
|
|
3251
3268
|
},
|
|
3252
3269
|
)
|
|
3253
3270
|
class AutoParticipantRecordingConfigurationProperty:
|
|
@@ -3255,12 +3272,18 @@ class CfnStage(
|
|
|
3255
3272
|
self,
|
|
3256
3273
|
*,
|
|
3257
3274
|
storage_configuration_arn: builtins.str,
|
|
3275
|
+
hls_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnStage.HlsConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3258
3276
|
media_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
3277
|
+
recording_reconnect_window_seconds: typing.Optional[jsii.Number] = None,
|
|
3278
|
+
thumbnail_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnStage.ThumbnailConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3259
3279
|
) -> None:
|
|
3260
3280
|
'''The ``AWS::IVS::AutoParticipantRecordingConfiguration`` property type describes a configuration for individual participant recording.
|
|
3261
3281
|
|
|
3262
3282
|
:param storage_configuration_arn: ARN of the StorageConfiguration resource to use for individual participant recording. Default: "" (empty string, no storage configuration is specified). Individual participant recording cannot be started unless a storage configuration is specified, when a Stage is created or updated.
|
|
3283
|
+
:param hls_configuration: HLS configuration object for individual participant recording.
|
|
3263
3284
|
:param media_types: Types of media to be recorded. Default: ``AUDIO_VIDEO`` .
|
|
3285
|
+
:param recording_reconnect_window_seconds: If a stage publisher disconnects and then reconnects within the specified interval, the multiple recordings will be considered a single recording and merged together. The default value is 0, which disables merging. Default: - 0
|
|
3286
|
+
:param thumbnail_configuration: A complex type that allows you to enable/disable the recording of thumbnails for individual participant recording and modify the interval at which thumbnails are generated for the live session.
|
|
3264
3287
|
|
|
3265
3288
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-autoparticipantrecordingconfiguration.html
|
|
3266
3289
|
:exampleMetadata: fixture=_generated
|
|
@@ -3275,18 +3298,40 @@ class CfnStage(
|
|
|
3275
3298
|
storage_configuration_arn="storageConfigurationArn",
|
|
3276
3299
|
|
|
3277
3300
|
# the properties below are optional
|
|
3278
|
-
|
|
3301
|
+
hls_configuration=ivs.CfnStage.HlsConfigurationProperty(
|
|
3302
|
+
participant_recording_hls_configuration=ivs.CfnStage.ParticipantRecordingHlsConfigurationProperty(
|
|
3303
|
+
target_segment_duration_seconds=123
|
|
3304
|
+
)
|
|
3305
|
+
),
|
|
3306
|
+
media_types=["mediaTypes"],
|
|
3307
|
+
recording_reconnect_window_seconds=123,
|
|
3308
|
+
thumbnail_configuration=ivs.CfnStage.ThumbnailConfigurationProperty(
|
|
3309
|
+
participant_thumbnail_configuration=ivs.CfnStage.ParticipantThumbnailConfigurationProperty(
|
|
3310
|
+
recording_mode="recordingMode",
|
|
3311
|
+
storage=["storage"],
|
|
3312
|
+
target_interval_seconds=123
|
|
3313
|
+
)
|
|
3314
|
+
)
|
|
3279
3315
|
)
|
|
3280
3316
|
'''
|
|
3281
3317
|
if __debug__:
|
|
3282
3318
|
type_hints = typing.get_type_hints(_typecheckingstub__3aeae0e25427fa7c0b735f190d30738c3d5c425f52576a56e84290d192a62871)
|
|
3283
3319
|
check_type(argname="argument storage_configuration_arn", value=storage_configuration_arn, expected_type=type_hints["storage_configuration_arn"])
|
|
3320
|
+
check_type(argname="argument hls_configuration", value=hls_configuration, expected_type=type_hints["hls_configuration"])
|
|
3284
3321
|
check_type(argname="argument media_types", value=media_types, expected_type=type_hints["media_types"])
|
|
3322
|
+
check_type(argname="argument recording_reconnect_window_seconds", value=recording_reconnect_window_seconds, expected_type=type_hints["recording_reconnect_window_seconds"])
|
|
3323
|
+
check_type(argname="argument thumbnail_configuration", value=thumbnail_configuration, expected_type=type_hints["thumbnail_configuration"])
|
|
3285
3324
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3286
3325
|
"storage_configuration_arn": storage_configuration_arn,
|
|
3287
3326
|
}
|
|
3327
|
+
if hls_configuration is not None:
|
|
3328
|
+
self._values["hls_configuration"] = hls_configuration
|
|
3288
3329
|
if media_types is not None:
|
|
3289
3330
|
self._values["media_types"] = media_types
|
|
3331
|
+
if recording_reconnect_window_seconds is not None:
|
|
3332
|
+
self._values["recording_reconnect_window_seconds"] = recording_reconnect_window_seconds
|
|
3333
|
+
if thumbnail_configuration is not None:
|
|
3334
|
+
self._values["thumbnail_configuration"] = thumbnail_configuration
|
|
3290
3335
|
|
|
3291
3336
|
@builtins.property
|
|
3292
3337
|
def storage_configuration_arn(self) -> builtins.str:
|
|
@@ -3300,6 +3345,17 @@ class CfnStage(
|
|
|
3300
3345
|
assert result is not None, "Required property 'storage_configuration_arn' is missing"
|
|
3301
3346
|
return typing.cast(builtins.str, result)
|
|
3302
3347
|
|
|
3348
|
+
@builtins.property
|
|
3349
|
+
def hls_configuration(
|
|
3350
|
+
self,
|
|
3351
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnStage.HlsConfigurationProperty"]]:
|
|
3352
|
+
'''HLS configuration object for individual participant recording.
|
|
3353
|
+
|
|
3354
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-autoparticipantrecordingconfiguration.html#cfn-ivs-stage-autoparticipantrecordingconfiguration-hlsconfiguration
|
|
3355
|
+
'''
|
|
3356
|
+
result = self._values.get("hls_configuration")
|
|
3357
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnStage.HlsConfigurationProperty"]], result)
|
|
3358
|
+
|
|
3303
3359
|
@builtins.property
|
|
3304
3360
|
def media_types(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
3305
3361
|
'''Types of media to be recorded.
|
|
@@ -3311,6 +3367,30 @@ class CfnStage(
|
|
|
3311
3367
|
result = self._values.get("media_types")
|
|
3312
3368
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
3313
3369
|
|
|
3370
|
+
@builtins.property
|
|
3371
|
+
def recording_reconnect_window_seconds(self) -> typing.Optional[jsii.Number]:
|
|
3372
|
+
'''If a stage publisher disconnects and then reconnects within the specified interval, the multiple recordings will be considered a single recording and merged together.
|
|
3373
|
+
|
|
3374
|
+
The default value is 0, which disables merging.
|
|
3375
|
+
|
|
3376
|
+
:default: - 0
|
|
3377
|
+
|
|
3378
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-autoparticipantrecordingconfiguration.html#cfn-ivs-stage-autoparticipantrecordingconfiguration-recordingreconnectwindowseconds
|
|
3379
|
+
'''
|
|
3380
|
+
result = self._values.get("recording_reconnect_window_seconds")
|
|
3381
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
3382
|
+
|
|
3383
|
+
@builtins.property
|
|
3384
|
+
def thumbnail_configuration(
|
|
3385
|
+
self,
|
|
3386
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnStage.ThumbnailConfigurationProperty"]]:
|
|
3387
|
+
'''A complex type that allows you to enable/disable the recording of thumbnails for individual participant recording and modify the interval at which thumbnails are generated for the live session.
|
|
3388
|
+
|
|
3389
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-autoparticipantrecordingconfiguration.html#cfn-ivs-stage-autoparticipantrecordingconfiguration-thumbnailconfiguration
|
|
3390
|
+
'''
|
|
3391
|
+
result = self._values.get("thumbnail_configuration")
|
|
3392
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnStage.ThumbnailConfigurationProperty"]], result)
|
|
3393
|
+
|
|
3314
3394
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3315
3395
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3316
3396
|
|
|
@@ -3322,6 +3402,290 @@ class CfnStage(
|
|
|
3322
3402
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
3323
3403
|
)
|
|
3324
3404
|
|
|
3405
|
+
@jsii.data_type(
|
|
3406
|
+
jsii_type="aws-cdk-lib.aws_ivs.CfnStage.HlsConfigurationProperty",
|
|
3407
|
+
jsii_struct_bases=[],
|
|
3408
|
+
name_mapping={
|
|
3409
|
+
"participant_recording_hls_configuration": "participantRecordingHlsConfiguration",
|
|
3410
|
+
},
|
|
3411
|
+
)
|
|
3412
|
+
class HlsConfigurationProperty:
|
|
3413
|
+
def __init__(
|
|
3414
|
+
self,
|
|
3415
|
+
*,
|
|
3416
|
+
participant_recording_hls_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnStage.ParticipantRecordingHlsConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3417
|
+
) -> None:
|
|
3418
|
+
'''HLS configuration object for individual participant recording.
|
|
3419
|
+
|
|
3420
|
+
:param participant_recording_hls_configuration: An object representing a configuration of participant HLS recordings for individual participant recording.
|
|
3421
|
+
|
|
3422
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-hlsconfiguration.html
|
|
3423
|
+
:exampleMetadata: fixture=_generated
|
|
3424
|
+
|
|
3425
|
+
Example::
|
|
3426
|
+
|
|
3427
|
+
# The code below shows an example of how to instantiate this type.
|
|
3428
|
+
# The values are placeholders you should change.
|
|
3429
|
+
from aws_cdk import aws_ivs as ivs
|
|
3430
|
+
|
|
3431
|
+
hls_configuration_property = ivs.CfnStage.HlsConfigurationProperty(
|
|
3432
|
+
participant_recording_hls_configuration=ivs.CfnStage.ParticipantRecordingHlsConfigurationProperty(
|
|
3433
|
+
target_segment_duration_seconds=123
|
|
3434
|
+
)
|
|
3435
|
+
)
|
|
3436
|
+
'''
|
|
3437
|
+
if __debug__:
|
|
3438
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f1b24d11d6043ac394cc0aaa82dfbd5a7f260263c0077880f9391897c17f94ab)
|
|
3439
|
+
check_type(argname="argument participant_recording_hls_configuration", value=participant_recording_hls_configuration, expected_type=type_hints["participant_recording_hls_configuration"])
|
|
3440
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3441
|
+
if participant_recording_hls_configuration is not None:
|
|
3442
|
+
self._values["participant_recording_hls_configuration"] = participant_recording_hls_configuration
|
|
3443
|
+
|
|
3444
|
+
@builtins.property
|
|
3445
|
+
def participant_recording_hls_configuration(
|
|
3446
|
+
self,
|
|
3447
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnStage.ParticipantRecordingHlsConfigurationProperty"]]:
|
|
3448
|
+
'''An object representing a configuration of participant HLS recordings for individual participant recording.
|
|
3449
|
+
|
|
3450
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-hlsconfiguration.html#cfn-ivs-stage-hlsconfiguration-participantrecordinghlsconfiguration
|
|
3451
|
+
'''
|
|
3452
|
+
result = self._values.get("participant_recording_hls_configuration")
|
|
3453
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnStage.ParticipantRecordingHlsConfigurationProperty"]], result)
|
|
3454
|
+
|
|
3455
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3456
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3457
|
+
|
|
3458
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3459
|
+
return not (rhs == self)
|
|
3460
|
+
|
|
3461
|
+
def __repr__(self) -> str:
|
|
3462
|
+
return "HlsConfigurationProperty(%s)" % ", ".join(
|
|
3463
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3464
|
+
)
|
|
3465
|
+
|
|
3466
|
+
@jsii.data_type(
|
|
3467
|
+
jsii_type="aws-cdk-lib.aws_ivs.CfnStage.ParticipantRecordingHlsConfigurationProperty",
|
|
3468
|
+
jsii_struct_bases=[],
|
|
3469
|
+
name_mapping={
|
|
3470
|
+
"target_segment_duration_seconds": "targetSegmentDurationSeconds",
|
|
3471
|
+
},
|
|
3472
|
+
)
|
|
3473
|
+
class ParticipantRecordingHlsConfigurationProperty:
|
|
3474
|
+
def __init__(
|
|
3475
|
+
self,
|
|
3476
|
+
*,
|
|
3477
|
+
target_segment_duration_seconds: typing.Optional[jsii.Number] = None,
|
|
3478
|
+
) -> None:
|
|
3479
|
+
'''An object representing a configuration of participant HLS recordings for individual participant recording.
|
|
3480
|
+
|
|
3481
|
+
:param target_segment_duration_seconds: Defines the target duration for recorded segments generated when recording a stage participant. Segments may have durations longer than the specified value when needed to ensure each segment begins with a keyframe. Default: 6. Default: - 6
|
|
3482
|
+
|
|
3483
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-participantrecordinghlsconfiguration.html
|
|
3484
|
+
:exampleMetadata: fixture=_generated
|
|
3485
|
+
|
|
3486
|
+
Example::
|
|
3487
|
+
|
|
3488
|
+
# The code below shows an example of how to instantiate this type.
|
|
3489
|
+
# The values are placeholders you should change.
|
|
3490
|
+
from aws_cdk import aws_ivs as ivs
|
|
3491
|
+
|
|
3492
|
+
participant_recording_hls_configuration_property = ivs.CfnStage.ParticipantRecordingHlsConfigurationProperty(
|
|
3493
|
+
target_segment_duration_seconds=123
|
|
3494
|
+
)
|
|
3495
|
+
'''
|
|
3496
|
+
if __debug__:
|
|
3497
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c424f313ea62bac79b96e713568a6da8a2f8e4d2f3e202f03e07ee31203d0c9e)
|
|
3498
|
+
check_type(argname="argument target_segment_duration_seconds", value=target_segment_duration_seconds, expected_type=type_hints["target_segment_duration_seconds"])
|
|
3499
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3500
|
+
if target_segment_duration_seconds is not None:
|
|
3501
|
+
self._values["target_segment_duration_seconds"] = target_segment_duration_seconds
|
|
3502
|
+
|
|
3503
|
+
@builtins.property
|
|
3504
|
+
def target_segment_duration_seconds(self) -> typing.Optional[jsii.Number]:
|
|
3505
|
+
'''Defines the target duration for recorded segments generated when recording a stage participant.
|
|
3506
|
+
|
|
3507
|
+
Segments may have durations longer than the specified value when needed to ensure each segment begins with a keyframe. Default: 6.
|
|
3508
|
+
|
|
3509
|
+
:default: - 6
|
|
3510
|
+
|
|
3511
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-participantrecordinghlsconfiguration.html#cfn-ivs-stage-participantrecordinghlsconfiguration-targetsegmentdurationseconds
|
|
3512
|
+
'''
|
|
3513
|
+
result = self._values.get("target_segment_duration_seconds")
|
|
3514
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
3515
|
+
|
|
3516
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3517
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3518
|
+
|
|
3519
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3520
|
+
return not (rhs == self)
|
|
3521
|
+
|
|
3522
|
+
def __repr__(self) -> str:
|
|
3523
|
+
return "ParticipantRecordingHlsConfigurationProperty(%s)" % ", ".join(
|
|
3524
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3525
|
+
)
|
|
3526
|
+
|
|
3527
|
+
@jsii.data_type(
|
|
3528
|
+
jsii_type="aws-cdk-lib.aws_ivs.CfnStage.ParticipantThumbnailConfigurationProperty",
|
|
3529
|
+
jsii_struct_bases=[],
|
|
3530
|
+
name_mapping={
|
|
3531
|
+
"recording_mode": "recordingMode",
|
|
3532
|
+
"storage": "storage",
|
|
3533
|
+
"target_interval_seconds": "targetIntervalSeconds",
|
|
3534
|
+
},
|
|
3535
|
+
)
|
|
3536
|
+
class ParticipantThumbnailConfigurationProperty:
|
|
3537
|
+
def __init__(
|
|
3538
|
+
self,
|
|
3539
|
+
*,
|
|
3540
|
+
recording_mode: typing.Optional[builtins.str] = None,
|
|
3541
|
+
storage: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
3542
|
+
target_interval_seconds: typing.Optional[jsii.Number] = None,
|
|
3543
|
+
) -> None:
|
|
3544
|
+
'''An object representing a configuration of thumbnails for recorded video from an individual participant.
|
|
3545
|
+
|
|
3546
|
+
:param recording_mode: Thumbnail recording mode. Default: DISABLED. Default: - "INTERVAL"
|
|
3547
|
+
:param storage: Indicates the format in which thumbnails are recorded. SEQUENTIAL records all generated thumbnails in a serial manner, to the media/thumbnails/high directory. LATEST saves the latest thumbnail in media/latest_thumbnail/high/thumb.jpg and overwrites it at the interval specified by targetIntervalSeconds. You can enable both SEQUENTIAL and LATEST. Default: SEQUENTIAL.
|
|
3548
|
+
:param target_interval_seconds: The targeted thumbnail-generation interval in seconds. This is configurable only if recordingMode is INTERVAL. Default: 60. Default: - 60
|
|
3549
|
+
|
|
3550
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-participantthumbnailconfiguration.html
|
|
3551
|
+
:exampleMetadata: fixture=_generated
|
|
3552
|
+
|
|
3553
|
+
Example::
|
|
3554
|
+
|
|
3555
|
+
# The code below shows an example of how to instantiate this type.
|
|
3556
|
+
# The values are placeholders you should change.
|
|
3557
|
+
from aws_cdk import aws_ivs as ivs
|
|
3558
|
+
|
|
3559
|
+
participant_thumbnail_configuration_property = ivs.CfnStage.ParticipantThumbnailConfigurationProperty(
|
|
3560
|
+
recording_mode="recordingMode",
|
|
3561
|
+
storage=["storage"],
|
|
3562
|
+
target_interval_seconds=123
|
|
3563
|
+
)
|
|
3564
|
+
'''
|
|
3565
|
+
if __debug__:
|
|
3566
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b9df09a9ac85620ee575beb443edf9d7cc39be07f22c354bc718bf20fcc31e86)
|
|
3567
|
+
check_type(argname="argument recording_mode", value=recording_mode, expected_type=type_hints["recording_mode"])
|
|
3568
|
+
check_type(argname="argument storage", value=storage, expected_type=type_hints["storage"])
|
|
3569
|
+
check_type(argname="argument target_interval_seconds", value=target_interval_seconds, expected_type=type_hints["target_interval_seconds"])
|
|
3570
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3571
|
+
if recording_mode is not None:
|
|
3572
|
+
self._values["recording_mode"] = recording_mode
|
|
3573
|
+
if storage is not None:
|
|
3574
|
+
self._values["storage"] = storage
|
|
3575
|
+
if target_interval_seconds is not None:
|
|
3576
|
+
self._values["target_interval_seconds"] = target_interval_seconds
|
|
3577
|
+
|
|
3578
|
+
@builtins.property
|
|
3579
|
+
def recording_mode(self) -> typing.Optional[builtins.str]:
|
|
3580
|
+
'''Thumbnail recording mode.
|
|
3581
|
+
|
|
3582
|
+
Default: DISABLED.
|
|
3583
|
+
|
|
3584
|
+
:default: - "INTERVAL"
|
|
3585
|
+
|
|
3586
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-participantthumbnailconfiguration.html#cfn-ivs-stage-participantthumbnailconfiguration-recordingmode
|
|
3587
|
+
'''
|
|
3588
|
+
result = self._values.get("recording_mode")
|
|
3589
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3590
|
+
|
|
3591
|
+
@builtins.property
|
|
3592
|
+
def storage(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
3593
|
+
'''Indicates the format in which thumbnails are recorded.
|
|
3594
|
+
|
|
3595
|
+
SEQUENTIAL records all generated thumbnails in a serial manner, to the media/thumbnails/high directory. LATEST saves the latest thumbnail in media/latest_thumbnail/high/thumb.jpg and overwrites it at the interval specified by targetIntervalSeconds. You can enable both SEQUENTIAL and LATEST. Default: SEQUENTIAL.
|
|
3596
|
+
|
|
3597
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-participantthumbnailconfiguration.html#cfn-ivs-stage-participantthumbnailconfiguration-storage
|
|
3598
|
+
'''
|
|
3599
|
+
result = self._values.get("storage")
|
|
3600
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
3601
|
+
|
|
3602
|
+
@builtins.property
|
|
3603
|
+
def target_interval_seconds(self) -> typing.Optional[jsii.Number]:
|
|
3604
|
+
'''The targeted thumbnail-generation interval in seconds.
|
|
3605
|
+
|
|
3606
|
+
This is configurable only if recordingMode is INTERVAL. Default: 60.
|
|
3607
|
+
|
|
3608
|
+
:default: - 60
|
|
3609
|
+
|
|
3610
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-participantthumbnailconfiguration.html#cfn-ivs-stage-participantthumbnailconfiguration-targetintervalseconds
|
|
3611
|
+
'''
|
|
3612
|
+
result = self._values.get("target_interval_seconds")
|
|
3613
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
3614
|
+
|
|
3615
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3616
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3617
|
+
|
|
3618
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3619
|
+
return not (rhs == self)
|
|
3620
|
+
|
|
3621
|
+
def __repr__(self) -> str:
|
|
3622
|
+
return "ParticipantThumbnailConfigurationProperty(%s)" % ", ".join(
|
|
3623
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3624
|
+
)
|
|
3625
|
+
|
|
3626
|
+
@jsii.data_type(
|
|
3627
|
+
jsii_type="aws-cdk-lib.aws_ivs.CfnStage.ThumbnailConfigurationProperty",
|
|
3628
|
+
jsii_struct_bases=[],
|
|
3629
|
+
name_mapping={
|
|
3630
|
+
"participant_thumbnail_configuration": "participantThumbnailConfiguration",
|
|
3631
|
+
},
|
|
3632
|
+
)
|
|
3633
|
+
class ThumbnailConfigurationProperty:
|
|
3634
|
+
def __init__(
|
|
3635
|
+
self,
|
|
3636
|
+
*,
|
|
3637
|
+
participant_thumbnail_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnStage.ParticipantThumbnailConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3638
|
+
) -> None:
|
|
3639
|
+
'''A complex type that allows you to enable/disable the recording of thumbnails for individual participant recording and modify the interval at which thumbnails are generated for the live session.
|
|
3640
|
+
|
|
3641
|
+
:param participant_thumbnail_configuration: An object representing a configuration of thumbnails for recorded video from an individual participant.
|
|
3642
|
+
|
|
3643
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-thumbnailconfiguration.html
|
|
3644
|
+
:exampleMetadata: fixture=_generated
|
|
3645
|
+
|
|
3646
|
+
Example::
|
|
3647
|
+
|
|
3648
|
+
# The code below shows an example of how to instantiate this type.
|
|
3649
|
+
# The values are placeholders you should change.
|
|
3650
|
+
from aws_cdk import aws_ivs as ivs
|
|
3651
|
+
|
|
3652
|
+
thumbnail_configuration_property = ivs.CfnStage.ThumbnailConfigurationProperty(
|
|
3653
|
+
participant_thumbnail_configuration=ivs.CfnStage.ParticipantThumbnailConfigurationProperty(
|
|
3654
|
+
recording_mode="recordingMode",
|
|
3655
|
+
storage=["storage"],
|
|
3656
|
+
target_interval_seconds=123
|
|
3657
|
+
)
|
|
3658
|
+
)
|
|
3659
|
+
'''
|
|
3660
|
+
if __debug__:
|
|
3661
|
+
type_hints = typing.get_type_hints(_typecheckingstub__09c5b4fe96dfd3867e000fc0e9c7da180fd5fca029a0a6c6d438e6ba423b05a8)
|
|
3662
|
+
check_type(argname="argument participant_thumbnail_configuration", value=participant_thumbnail_configuration, expected_type=type_hints["participant_thumbnail_configuration"])
|
|
3663
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3664
|
+
if participant_thumbnail_configuration is not None:
|
|
3665
|
+
self._values["participant_thumbnail_configuration"] = participant_thumbnail_configuration
|
|
3666
|
+
|
|
3667
|
+
@builtins.property
|
|
3668
|
+
def participant_thumbnail_configuration(
|
|
3669
|
+
self,
|
|
3670
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnStage.ParticipantThumbnailConfigurationProperty"]]:
|
|
3671
|
+
'''An object representing a configuration of thumbnails for recorded video from an individual participant.
|
|
3672
|
+
|
|
3673
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-thumbnailconfiguration.html#cfn-ivs-stage-thumbnailconfiguration-participantthumbnailconfiguration
|
|
3674
|
+
'''
|
|
3675
|
+
result = self._values.get("participant_thumbnail_configuration")
|
|
3676
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnStage.ParticipantThumbnailConfigurationProperty"]], result)
|
|
3677
|
+
|
|
3678
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3679
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3680
|
+
|
|
3681
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3682
|
+
return not (rhs == self)
|
|
3683
|
+
|
|
3684
|
+
def __repr__(self) -> str:
|
|
3685
|
+
return "ThumbnailConfigurationProperty(%s)" % ", ".join(
|
|
3686
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3687
|
+
)
|
|
3688
|
+
|
|
3325
3689
|
|
|
3326
3690
|
@jsii.data_type(
|
|
3327
3691
|
jsii_type="aws-cdk-lib.aws_ivs.CfnStageProps",
|
|
@@ -3360,7 +3724,20 @@ class CfnStageProps:
|
|
|
3360
3724
|
storage_configuration_arn="storageConfigurationArn",
|
|
3361
3725
|
|
|
3362
3726
|
# the properties below are optional
|
|
3363
|
-
|
|
3727
|
+
hls_configuration=ivs.CfnStage.HlsConfigurationProperty(
|
|
3728
|
+
participant_recording_hls_configuration=ivs.CfnStage.ParticipantRecordingHlsConfigurationProperty(
|
|
3729
|
+
target_segment_duration_seconds=123
|
|
3730
|
+
)
|
|
3731
|
+
),
|
|
3732
|
+
media_types=["mediaTypes"],
|
|
3733
|
+
recording_reconnect_window_seconds=123,
|
|
3734
|
+
thumbnail_configuration=ivs.CfnStage.ThumbnailConfigurationProperty(
|
|
3735
|
+
participant_thumbnail_configuration=ivs.CfnStage.ParticipantThumbnailConfigurationProperty(
|
|
3736
|
+
recording_mode="recordingMode",
|
|
3737
|
+
storage=["storage"],
|
|
3738
|
+
target_interval_seconds=123
|
|
3739
|
+
)
|
|
3740
|
+
)
|
|
3364
3741
|
),
|
|
3365
3742
|
name="name",
|
|
3366
3743
|
tags=[CfnTag(
|
|
@@ -4282,8 +4659,8 @@ def _typecheckingstub__987a35e58d5c2ae76d6f7c41b5ef19dc05ac42c651fd8a03f9f28e044
|
|
|
4282
4659
|
scope: _constructs_77d1e7e8.Construct,
|
|
4283
4660
|
id: builtins.str,
|
|
4284
4661
|
*,
|
|
4285
|
-
allowed_countries: typing.Sequence[builtins.str],
|
|
4286
|
-
allowed_origins: typing.Sequence[builtins.str],
|
|
4662
|
+
allowed_countries: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4663
|
+
allowed_origins: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4287
4664
|
enable_strict_origin_enforcement: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4288
4665
|
name: typing.Optional[builtins.str] = None,
|
|
4289
4666
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -4304,13 +4681,13 @@ def _typecheckingstub__0e57b154c63f829875b079b3d6baf6c33a6d6c377987d9ac6e9f45863
|
|
|
4304
4681
|
pass
|
|
4305
4682
|
|
|
4306
4683
|
def _typecheckingstub__f6636af9e45dbeea2bcf7b5990280edcd8fec18083a4bfe23a76e19bd655ef03(
|
|
4307
|
-
value: typing.List[builtins.str],
|
|
4684
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
4308
4685
|
) -> None:
|
|
4309
4686
|
"""Type checking stubs"""
|
|
4310
4687
|
pass
|
|
4311
4688
|
|
|
4312
4689
|
def _typecheckingstub__773f5ee580b6a7c42904b5a38460c9ae7e7e147bde8b69e1c43edddd32d7dc69(
|
|
4313
|
-
value: typing.List[builtins.str],
|
|
4690
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
4314
4691
|
) -> None:
|
|
4315
4692
|
"""Type checking stubs"""
|
|
4316
4693
|
pass
|
|
@@ -4335,8 +4712,8 @@ def _typecheckingstub__72c43ae8ddd92a7ae402fb8cc1729052bd0d141f4f2106265c702c75b
|
|
|
4335
4712
|
|
|
4336
4713
|
def _typecheckingstub__feaf48f348987f686c52239e867f8aedc7a8a6debbbc2bec008fea1cc72c201f(
|
|
4337
4714
|
*,
|
|
4338
|
-
allowed_countries: typing.Sequence[builtins.str],
|
|
4339
|
-
allowed_origins: typing.Sequence[builtins.str],
|
|
4715
|
+
allowed_countries: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4716
|
+
allowed_origins: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4340
4717
|
enable_strict_origin_enforcement: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4341
4718
|
name: typing.Optional[builtins.str] = None,
|
|
4342
4719
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -4544,7 +4921,40 @@ def _typecheckingstub__6a345b4498f1ee0487e9359886004162443d2310aa5159615d98ad8d3
|
|
|
4544
4921
|
def _typecheckingstub__3aeae0e25427fa7c0b735f190d30738c3d5c425f52576a56e84290d192a62871(
|
|
4545
4922
|
*,
|
|
4546
4923
|
storage_configuration_arn: builtins.str,
|
|
4924
|
+
hls_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnStage.HlsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4547
4925
|
media_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4926
|
+
recording_reconnect_window_seconds: typing.Optional[jsii.Number] = None,
|
|
4927
|
+
thumbnail_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnStage.ThumbnailConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4928
|
+
) -> None:
|
|
4929
|
+
"""Type checking stubs"""
|
|
4930
|
+
pass
|
|
4931
|
+
|
|
4932
|
+
def _typecheckingstub__f1b24d11d6043ac394cc0aaa82dfbd5a7f260263c0077880f9391897c17f94ab(
|
|
4933
|
+
*,
|
|
4934
|
+
participant_recording_hls_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnStage.ParticipantRecordingHlsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4935
|
+
) -> None:
|
|
4936
|
+
"""Type checking stubs"""
|
|
4937
|
+
pass
|
|
4938
|
+
|
|
4939
|
+
def _typecheckingstub__c424f313ea62bac79b96e713568a6da8a2f8e4d2f3e202f03e07ee31203d0c9e(
|
|
4940
|
+
*,
|
|
4941
|
+
target_segment_duration_seconds: typing.Optional[jsii.Number] = None,
|
|
4942
|
+
) -> None:
|
|
4943
|
+
"""Type checking stubs"""
|
|
4944
|
+
pass
|
|
4945
|
+
|
|
4946
|
+
def _typecheckingstub__b9df09a9ac85620ee575beb443edf9d7cc39be07f22c354bc718bf20fcc31e86(
|
|
4947
|
+
*,
|
|
4948
|
+
recording_mode: typing.Optional[builtins.str] = None,
|
|
4949
|
+
storage: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4950
|
+
target_interval_seconds: typing.Optional[jsii.Number] = None,
|
|
4951
|
+
) -> None:
|
|
4952
|
+
"""Type checking stubs"""
|
|
4953
|
+
pass
|
|
4954
|
+
|
|
4955
|
+
def _typecheckingstub__09c5b4fe96dfd3867e000fc0e9c7da180fd5fca029a0a6c6d438e6ba423b05a8(
|
|
4956
|
+
*,
|
|
4957
|
+
participant_thumbnail_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnStage.ParticipantThumbnailConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4548
4958
|
) -> None:
|
|
4549
4959
|
"""Type checking stubs"""
|
|
4550
4960
|
pass
|