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
|
@@ -16018,19 +16018,24 @@ class CfnChannel(
|
|
|
16018
16018
|
@jsii.data_type(
|
|
16019
16019
|
jsii_type="aws-cdk-lib.aws_medialive.CfnChannel.MediaPackageGroupSettingsProperty",
|
|
16020
16020
|
jsii_struct_bases=[],
|
|
16021
|
-
name_mapping={
|
|
16021
|
+
name_mapping={
|
|
16022
|
+
"destination": "destination",
|
|
16023
|
+
"mediapackage_v2_group_settings": "mediapackageV2GroupSettings",
|
|
16024
|
+
},
|
|
16022
16025
|
)
|
|
16023
16026
|
class MediaPackageGroupSettingsProperty:
|
|
16024
16027
|
def __init__(
|
|
16025
16028
|
self,
|
|
16026
16029
|
*,
|
|
16027
16030
|
destination: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.OutputLocationRefProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
16031
|
+
mediapackage_v2_group_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.MediaPackageV2GroupSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
16028
16032
|
) -> None:
|
|
16029
16033
|
'''The settings for the MediaPackage group.
|
|
16030
16034
|
|
|
16031
16035
|
The parent of this entity is OutputGroupSettings.
|
|
16032
16036
|
|
|
16033
16037
|
:param destination: The MediaPackage channel destination.
|
|
16038
|
+
:param mediapackage_v2_group_settings:
|
|
16034
16039
|
|
|
16035
16040
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackagegroupsettings.html
|
|
16036
16041
|
:exampleMetadata: fixture=_generated
|
|
@@ -16044,15 +16049,25 @@ class CfnChannel(
|
|
|
16044
16049
|
media_package_group_settings_property = medialive.CfnChannel.MediaPackageGroupSettingsProperty(
|
|
16045
16050
|
destination=medialive.CfnChannel.OutputLocationRefProperty(
|
|
16046
16051
|
destination_ref_id="destinationRefId"
|
|
16052
|
+
),
|
|
16053
|
+
mediapackage_v2_group_settings=medialive.CfnChannel.MediaPackageV2GroupSettingsProperty(
|
|
16054
|
+
caption_language_mappings=[medialive.CfnChannel.CaptionLanguageMappingProperty(
|
|
16055
|
+
caption_channel=123,
|
|
16056
|
+
language_code="languageCode",
|
|
16057
|
+
language_description="languageDescription"
|
|
16058
|
+
)]
|
|
16047
16059
|
)
|
|
16048
16060
|
)
|
|
16049
16061
|
'''
|
|
16050
16062
|
if __debug__:
|
|
16051
16063
|
type_hints = typing.get_type_hints(_typecheckingstub__85fb14a458ec20936e4659288aff4ca667c9931c1d403d6a189b9b390fa82420)
|
|
16052
16064
|
check_type(argname="argument destination", value=destination, expected_type=type_hints["destination"])
|
|
16065
|
+
check_type(argname="argument mediapackage_v2_group_settings", value=mediapackage_v2_group_settings, expected_type=type_hints["mediapackage_v2_group_settings"])
|
|
16053
16066
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
16054
16067
|
if destination is not None:
|
|
16055
16068
|
self._values["destination"] = destination
|
|
16069
|
+
if mediapackage_v2_group_settings is not None:
|
|
16070
|
+
self._values["mediapackage_v2_group_settings"] = mediapackage_v2_group_settings
|
|
16056
16071
|
|
|
16057
16072
|
@builtins.property
|
|
16058
16073
|
def destination(
|
|
@@ -16065,6 +16080,16 @@ class CfnChannel(
|
|
|
16065
16080
|
result = self._values.get("destination")
|
|
16066
16081
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannel.OutputLocationRefProperty"]], result)
|
|
16067
16082
|
|
|
16083
|
+
@builtins.property
|
|
16084
|
+
def mediapackage_v2_group_settings(
|
|
16085
|
+
self,
|
|
16086
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannel.MediaPackageV2GroupSettingsProperty"]]:
|
|
16087
|
+
'''
|
|
16088
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackagegroupsettings.html#cfn-medialive-channel-mediapackagegroupsettings-mediapackagev2groupsettings
|
|
16089
|
+
'''
|
|
16090
|
+
result = self._values.get("mediapackage_v2_group_settings")
|
|
16091
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannel.MediaPackageV2GroupSettingsProperty"]], result)
|
|
16092
|
+
|
|
16068
16093
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
16069
16094
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
16070
16095
|
|
|
@@ -16170,11 +16195,22 @@ class CfnChannel(
|
|
|
16170
16195
|
@jsii.data_type(
|
|
16171
16196
|
jsii_type="aws-cdk-lib.aws_medialive.CfnChannel.MediaPackageOutputSettingsProperty",
|
|
16172
16197
|
jsii_struct_bases=[],
|
|
16173
|
-
name_mapping={
|
|
16198
|
+
name_mapping={
|
|
16199
|
+
"media_package_v2_destination_settings": "mediaPackageV2DestinationSettings",
|
|
16200
|
+
},
|
|
16174
16201
|
)
|
|
16175
16202
|
class MediaPackageOutputSettingsProperty:
|
|
16176
|
-
def __init__(
|
|
16177
|
-
|
|
16203
|
+
def __init__(
|
|
16204
|
+
self,
|
|
16205
|
+
*,
|
|
16206
|
+
media_package_v2_destination_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.MediaPackageV2DestinationSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
16207
|
+
) -> None:
|
|
16208
|
+
'''The settings for a MediaPackage output.
|
|
16209
|
+
|
|
16210
|
+
The parent of this entity is OutputSettings.
|
|
16211
|
+
|
|
16212
|
+
:param media_package_v2_destination_settings:
|
|
16213
|
+
|
|
16178
16214
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackageoutputsettings.html
|
|
16179
16215
|
:exampleMetadata: fixture=_generated
|
|
16180
16216
|
|
|
@@ -16184,9 +16220,31 @@ class CfnChannel(
|
|
|
16184
16220
|
# The values are placeholders you should change.
|
|
16185
16221
|
from aws_cdk import aws_medialive as medialive
|
|
16186
16222
|
|
|
16187
|
-
media_package_output_settings_property = medialive.CfnChannel.MediaPackageOutputSettingsProperty(
|
|
16223
|
+
media_package_output_settings_property = medialive.CfnChannel.MediaPackageOutputSettingsProperty(
|
|
16224
|
+
media_package_v2_destination_settings=medialive.CfnChannel.MediaPackageV2DestinationSettingsProperty(
|
|
16225
|
+
audio_group_id="audioGroupId",
|
|
16226
|
+
audio_rendition_sets="audioRenditionSets",
|
|
16227
|
+
hls_auto_select="hlsAutoSelect",
|
|
16228
|
+
hls_default="hlsDefault"
|
|
16229
|
+
)
|
|
16230
|
+
)
|
|
16188
16231
|
'''
|
|
16232
|
+
if __debug__:
|
|
16233
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9761b0531c7dd9bf5b687d6f1f84caf60dcc2278f66da2452ed86fe3678b06f1)
|
|
16234
|
+
check_type(argname="argument media_package_v2_destination_settings", value=media_package_v2_destination_settings, expected_type=type_hints["media_package_v2_destination_settings"])
|
|
16189
16235
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
16236
|
+
if media_package_v2_destination_settings is not None:
|
|
16237
|
+
self._values["media_package_v2_destination_settings"] = media_package_v2_destination_settings
|
|
16238
|
+
|
|
16239
|
+
@builtins.property
|
|
16240
|
+
def media_package_v2_destination_settings(
|
|
16241
|
+
self,
|
|
16242
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannel.MediaPackageV2DestinationSettingsProperty"]]:
|
|
16243
|
+
'''
|
|
16244
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackageoutputsettings.html#cfn-medialive-channel-mediapackageoutputsettings-mediapackagev2destinationsettings
|
|
16245
|
+
'''
|
|
16246
|
+
result = self._values.get("media_package_v2_destination_settings")
|
|
16247
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannel.MediaPackageV2DestinationSettingsProperty"]], result)
|
|
16190
16248
|
|
|
16191
16249
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
16192
16250
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -16199,6 +16257,165 @@ class CfnChannel(
|
|
|
16199
16257
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
16200
16258
|
)
|
|
16201
16259
|
|
|
16260
|
+
@jsii.data_type(
|
|
16261
|
+
jsii_type="aws-cdk-lib.aws_medialive.CfnChannel.MediaPackageV2DestinationSettingsProperty",
|
|
16262
|
+
jsii_struct_bases=[],
|
|
16263
|
+
name_mapping={
|
|
16264
|
+
"audio_group_id": "audioGroupId",
|
|
16265
|
+
"audio_rendition_sets": "audioRenditionSets",
|
|
16266
|
+
"hls_auto_select": "hlsAutoSelect",
|
|
16267
|
+
"hls_default": "hlsDefault",
|
|
16268
|
+
},
|
|
16269
|
+
)
|
|
16270
|
+
class MediaPackageV2DestinationSettingsProperty:
|
|
16271
|
+
def __init__(
|
|
16272
|
+
self,
|
|
16273
|
+
*,
|
|
16274
|
+
audio_group_id: typing.Optional[builtins.str] = None,
|
|
16275
|
+
audio_rendition_sets: typing.Optional[builtins.str] = None,
|
|
16276
|
+
hls_auto_select: typing.Optional[builtins.str] = None,
|
|
16277
|
+
hls_default: typing.Optional[builtins.str] = None,
|
|
16278
|
+
) -> None:
|
|
16279
|
+
'''
|
|
16280
|
+
:param audio_group_id:
|
|
16281
|
+
:param audio_rendition_sets:
|
|
16282
|
+
:param hls_auto_select:
|
|
16283
|
+
:param hls_default:
|
|
16284
|
+
|
|
16285
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackagev2destinationsettings.html
|
|
16286
|
+
:exampleMetadata: fixture=_generated
|
|
16287
|
+
|
|
16288
|
+
Example::
|
|
16289
|
+
|
|
16290
|
+
# The code below shows an example of how to instantiate this type.
|
|
16291
|
+
# The values are placeholders you should change.
|
|
16292
|
+
from aws_cdk import aws_medialive as medialive
|
|
16293
|
+
|
|
16294
|
+
media_package_v2_destination_settings_property = medialive.CfnChannel.MediaPackageV2DestinationSettingsProperty(
|
|
16295
|
+
audio_group_id="audioGroupId",
|
|
16296
|
+
audio_rendition_sets="audioRenditionSets",
|
|
16297
|
+
hls_auto_select="hlsAutoSelect",
|
|
16298
|
+
hls_default="hlsDefault"
|
|
16299
|
+
)
|
|
16300
|
+
'''
|
|
16301
|
+
if __debug__:
|
|
16302
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f3d603bf777a51fcd4a655ef17dcc1a5fa66a4fa5fe69e9918522175dc22316e)
|
|
16303
|
+
check_type(argname="argument audio_group_id", value=audio_group_id, expected_type=type_hints["audio_group_id"])
|
|
16304
|
+
check_type(argname="argument audio_rendition_sets", value=audio_rendition_sets, expected_type=type_hints["audio_rendition_sets"])
|
|
16305
|
+
check_type(argname="argument hls_auto_select", value=hls_auto_select, expected_type=type_hints["hls_auto_select"])
|
|
16306
|
+
check_type(argname="argument hls_default", value=hls_default, expected_type=type_hints["hls_default"])
|
|
16307
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
16308
|
+
if audio_group_id is not None:
|
|
16309
|
+
self._values["audio_group_id"] = audio_group_id
|
|
16310
|
+
if audio_rendition_sets is not None:
|
|
16311
|
+
self._values["audio_rendition_sets"] = audio_rendition_sets
|
|
16312
|
+
if hls_auto_select is not None:
|
|
16313
|
+
self._values["hls_auto_select"] = hls_auto_select
|
|
16314
|
+
if hls_default is not None:
|
|
16315
|
+
self._values["hls_default"] = hls_default
|
|
16316
|
+
|
|
16317
|
+
@builtins.property
|
|
16318
|
+
def audio_group_id(self) -> typing.Optional[builtins.str]:
|
|
16319
|
+
'''
|
|
16320
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackagev2destinationsettings.html#cfn-medialive-channel-mediapackagev2destinationsettings-audiogroupid
|
|
16321
|
+
'''
|
|
16322
|
+
result = self._values.get("audio_group_id")
|
|
16323
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
16324
|
+
|
|
16325
|
+
@builtins.property
|
|
16326
|
+
def audio_rendition_sets(self) -> typing.Optional[builtins.str]:
|
|
16327
|
+
'''
|
|
16328
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackagev2destinationsettings.html#cfn-medialive-channel-mediapackagev2destinationsettings-audiorenditionsets
|
|
16329
|
+
'''
|
|
16330
|
+
result = self._values.get("audio_rendition_sets")
|
|
16331
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
16332
|
+
|
|
16333
|
+
@builtins.property
|
|
16334
|
+
def hls_auto_select(self) -> typing.Optional[builtins.str]:
|
|
16335
|
+
'''
|
|
16336
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackagev2destinationsettings.html#cfn-medialive-channel-mediapackagev2destinationsettings-hlsautoselect
|
|
16337
|
+
'''
|
|
16338
|
+
result = self._values.get("hls_auto_select")
|
|
16339
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
16340
|
+
|
|
16341
|
+
@builtins.property
|
|
16342
|
+
def hls_default(self) -> typing.Optional[builtins.str]:
|
|
16343
|
+
'''
|
|
16344
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackagev2destinationsettings.html#cfn-medialive-channel-mediapackagev2destinationsettings-hlsdefault
|
|
16345
|
+
'''
|
|
16346
|
+
result = self._values.get("hls_default")
|
|
16347
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
16348
|
+
|
|
16349
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
16350
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
16351
|
+
|
|
16352
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
16353
|
+
return not (rhs == self)
|
|
16354
|
+
|
|
16355
|
+
def __repr__(self) -> str:
|
|
16356
|
+
return "MediaPackageV2DestinationSettingsProperty(%s)" % ", ".join(
|
|
16357
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
16358
|
+
)
|
|
16359
|
+
|
|
16360
|
+
@jsii.data_type(
|
|
16361
|
+
jsii_type="aws-cdk-lib.aws_medialive.CfnChannel.MediaPackageV2GroupSettingsProperty",
|
|
16362
|
+
jsii_struct_bases=[],
|
|
16363
|
+
name_mapping={"caption_language_mappings": "captionLanguageMappings"},
|
|
16364
|
+
)
|
|
16365
|
+
class MediaPackageV2GroupSettingsProperty:
|
|
16366
|
+
def __init__(
|
|
16367
|
+
self,
|
|
16368
|
+
*,
|
|
16369
|
+
caption_language_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.CaptionLanguageMappingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
16370
|
+
) -> None:
|
|
16371
|
+
'''
|
|
16372
|
+
:param caption_language_mappings:
|
|
16373
|
+
|
|
16374
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackagev2groupsettings.html
|
|
16375
|
+
:exampleMetadata: fixture=_generated
|
|
16376
|
+
|
|
16377
|
+
Example::
|
|
16378
|
+
|
|
16379
|
+
# The code below shows an example of how to instantiate this type.
|
|
16380
|
+
# The values are placeholders you should change.
|
|
16381
|
+
from aws_cdk import aws_medialive as medialive
|
|
16382
|
+
|
|
16383
|
+
media_package_v2_group_settings_property = medialive.CfnChannel.MediaPackageV2GroupSettingsProperty(
|
|
16384
|
+
caption_language_mappings=[medialive.CfnChannel.CaptionLanguageMappingProperty(
|
|
16385
|
+
caption_channel=123,
|
|
16386
|
+
language_code="languageCode",
|
|
16387
|
+
language_description="languageDescription"
|
|
16388
|
+
)]
|
|
16389
|
+
)
|
|
16390
|
+
'''
|
|
16391
|
+
if __debug__:
|
|
16392
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8189ecb41c1c07836a410e8f437062328cb6483c38d02ea4abcb3be57ed148e4)
|
|
16393
|
+
check_type(argname="argument caption_language_mappings", value=caption_language_mappings, expected_type=type_hints["caption_language_mappings"])
|
|
16394
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
16395
|
+
if caption_language_mappings is not None:
|
|
16396
|
+
self._values["caption_language_mappings"] = caption_language_mappings
|
|
16397
|
+
|
|
16398
|
+
@builtins.property
|
|
16399
|
+
def caption_language_mappings(
|
|
16400
|
+
self,
|
|
16401
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnChannel.CaptionLanguageMappingProperty"]]]]:
|
|
16402
|
+
'''
|
|
16403
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackagev2groupsettings.html#cfn-medialive-channel-mediapackagev2groupsettings-captionlanguagemappings
|
|
16404
|
+
'''
|
|
16405
|
+
result = self._values.get("caption_language_mappings")
|
|
16406
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnChannel.CaptionLanguageMappingProperty"]]]], result)
|
|
16407
|
+
|
|
16408
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
16409
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
16410
|
+
|
|
16411
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
16412
|
+
return not (rhs == self)
|
|
16413
|
+
|
|
16414
|
+
def __repr__(self) -> str:
|
|
16415
|
+
return "MediaPackageV2GroupSettingsProperty(%s)" % ", ".join(
|
|
16416
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
16417
|
+
)
|
|
16418
|
+
|
|
16202
16419
|
@jsii.data_type(
|
|
16203
16420
|
jsii_type="aws-cdk-lib.aws_medialive.CfnChannel.MotionGraphicsConfigurationProperty",
|
|
16204
16421
|
jsii_struct_bases=[],
|
|
@@ -18909,6 +19126,13 @@ class CfnChannel(
|
|
|
18909
19126
|
media_package_group_settings=medialive.CfnChannel.MediaPackageGroupSettingsProperty(
|
|
18910
19127
|
destination=medialive.CfnChannel.OutputLocationRefProperty(
|
|
18911
19128
|
destination_ref_id="destinationRefId"
|
|
19129
|
+
),
|
|
19130
|
+
mediapackage_v2_group_settings=medialive.CfnChannel.MediaPackageV2GroupSettingsProperty(
|
|
19131
|
+
caption_language_mappings=[medialive.CfnChannel.CaptionLanguageMappingProperty(
|
|
19132
|
+
caption_channel=123,
|
|
19133
|
+
language_code="languageCode",
|
|
19134
|
+
language_description="languageDescription"
|
|
19135
|
+
)]
|
|
18912
19136
|
)
|
|
18913
19137
|
),
|
|
18914
19138
|
ms_smooth_group_settings=medialive.CfnChannel.MsSmoothGroupSettingsProperty(
|
|
@@ -19410,7 +19634,14 @@ class CfnChannel(
|
|
|
19410
19634
|
name_modifier="nameModifier",
|
|
19411
19635
|
segment_modifier="segmentModifier"
|
|
19412
19636
|
),
|
|
19413
|
-
media_package_output_settings=medialive.CfnChannel.MediaPackageOutputSettingsProperty(
|
|
19637
|
+
media_package_output_settings=medialive.CfnChannel.MediaPackageOutputSettingsProperty(
|
|
19638
|
+
media_package_v2_destination_settings=medialive.CfnChannel.MediaPackageV2DestinationSettingsProperty(
|
|
19639
|
+
audio_group_id="audioGroupId",
|
|
19640
|
+
audio_rendition_sets="audioRenditionSets",
|
|
19641
|
+
hls_auto_select="hlsAutoSelect",
|
|
19642
|
+
hls_default="hlsDefault"
|
|
19643
|
+
)
|
|
19644
|
+
),
|
|
19414
19645
|
ms_smooth_output_settings=medialive.CfnChannel.MsSmoothOutputSettingsProperty(
|
|
19415
19646
|
h265_packaging_type="h265PackagingType",
|
|
19416
19647
|
name_modifier="nameModifier"
|
|
@@ -19851,7 +20082,14 @@ class CfnChannel(
|
|
|
19851
20082
|
name_modifier="nameModifier",
|
|
19852
20083
|
segment_modifier="segmentModifier"
|
|
19853
20084
|
),
|
|
19854
|
-
media_package_output_settings=medialive.CfnChannel.MediaPackageOutputSettingsProperty(
|
|
20085
|
+
media_package_output_settings=medialive.CfnChannel.MediaPackageOutputSettingsProperty(
|
|
20086
|
+
media_package_v2_destination_settings=medialive.CfnChannel.MediaPackageV2DestinationSettingsProperty(
|
|
20087
|
+
audio_group_id="audioGroupId",
|
|
20088
|
+
audio_rendition_sets="audioRenditionSets",
|
|
20089
|
+
hls_auto_select="hlsAutoSelect",
|
|
20090
|
+
hls_default="hlsDefault"
|
|
20091
|
+
)
|
|
20092
|
+
),
|
|
19855
20093
|
ms_smooth_output_settings=medialive.CfnChannel.MsSmoothOutputSettingsProperty(
|
|
19856
20094
|
h265_packaging_type="h265PackagingType",
|
|
19857
20095
|
name_modifier="nameModifier"
|
|
@@ -33632,6 +33870,7 @@ def _typecheckingstub__c9392d58176c012cd3edcfd8cba809739bf0435a5bf1d6a207b2696cd
|
|
|
33632
33870
|
def _typecheckingstub__85fb14a458ec20936e4659288aff4ca667c9931c1d403d6a189b9b390fa82420(
|
|
33633
33871
|
*,
|
|
33634
33872
|
destination: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.OutputLocationRefProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
33873
|
+
mediapackage_v2_group_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.MediaPackageV2GroupSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
33635
33874
|
) -> None:
|
|
33636
33875
|
"""Type checking stubs"""
|
|
33637
33876
|
pass
|
|
@@ -33645,6 +33884,30 @@ def _typecheckingstub__874df17e03aca6480b8e3f6dcef1562be61cb009cf5db8263599bb5c4
|
|
|
33645
33884
|
"""Type checking stubs"""
|
|
33646
33885
|
pass
|
|
33647
33886
|
|
|
33887
|
+
def _typecheckingstub__9761b0531c7dd9bf5b687d6f1f84caf60dcc2278f66da2452ed86fe3678b06f1(
|
|
33888
|
+
*,
|
|
33889
|
+
media_package_v2_destination_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.MediaPackageV2DestinationSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
33890
|
+
) -> None:
|
|
33891
|
+
"""Type checking stubs"""
|
|
33892
|
+
pass
|
|
33893
|
+
|
|
33894
|
+
def _typecheckingstub__f3d603bf777a51fcd4a655ef17dcc1a5fa66a4fa5fe69e9918522175dc22316e(
|
|
33895
|
+
*,
|
|
33896
|
+
audio_group_id: typing.Optional[builtins.str] = None,
|
|
33897
|
+
audio_rendition_sets: typing.Optional[builtins.str] = None,
|
|
33898
|
+
hls_auto_select: typing.Optional[builtins.str] = None,
|
|
33899
|
+
hls_default: typing.Optional[builtins.str] = None,
|
|
33900
|
+
) -> None:
|
|
33901
|
+
"""Type checking stubs"""
|
|
33902
|
+
pass
|
|
33903
|
+
|
|
33904
|
+
def _typecheckingstub__8189ecb41c1c07836a410e8f437062328cb6483c38d02ea4abcb3be57ed148e4(
|
|
33905
|
+
*,
|
|
33906
|
+
caption_language_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.CaptionLanguageMappingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
33907
|
+
) -> None:
|
|
33908
|
+
"""Type checking stubs"""
|
|
33909
|
+
pass
|
|
33910
|
+
|
|
33648
33911
|
def _typecheckingstub__8e1d001ddfa1ba51a4a115d7684918fa784fab37b9602415021f1afaeb5ea19f(
|
|
33649
33912
|
*,
|
|
33650
33913
|
motion_graphics_insertion: typing.Optional[builtins.str] = None,
|