aws-cdk-lib 2.199.0__py3-none-any.whl → 2.200.1__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.

Files changed (49) hide show
  1. aws_cdk/__init__.py +22 -24
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.199.0.jsii.tgz → aws-cdk-lib@2.200.1.jsii.tgz} +0 -0
  4. aws_cdk/aws_acmpca/__init__.py +1 -1
  5. aws_cdk/aws_apigateway/__init__.py +1 -1
  6. aws_cdk/aws_applicationautoscaling/__init__.py +4 -4
  7. aws_cdk/aws_aps/__init__.py +38 -30
  8. aws_cdk/aws_autoscaling/__init__.py +4 -4
  9. aws_cdk/aws_bedrock/__init__.py +73 -48
  10. aws_cdk/aws_cloudformation/__init__.py +17 -23
  11. aws_cdk/aws_cloudfront_origins/__init__.py +1 -1
  12. aws_cdk/aws_cloudtrail/__init__.py +4 -4
  13. aws_cdk/aws_cloudwatch/__init__.py +50 -1
  14. aws_cdk/aws_codebuild/__init__.py +116 -0
  15. aws_cdk/aws_datazone/__init__.py +699 -9
  16. aws_cdk/aws_deadline/__init__.py +38 -10
  17. aws_cdk/aws_ec2/__init__.py +78 -20
  18. aws_cdk/aws_elasticloadbalancingv2/__init__.py +7 -7
  19. aws_cdk/aws_emr/__init__.py +36 -2
  20. aws_cdk/aws_fsx/__init__.py +122 -0
  21. aws_cdk/aws_glue/__init__.py +55 -26
  22. aws_cdk/aws_iam/__init__.py +376 -2
  23. aws_cdk/aws_iot/__init__.py +57 -5
  24. aws_cdk/aws_kinesisfirehose/__init__.py +5 -1
  25. aws_cdk/aws_lambda/__init__.py +65 -45
  26. aws_cdk/aws_lex/__init__.py +27 -13
  27. aws_cdk/aws_lightsail/__init__.py +452 -0
  28. aws_cdk/aws_medialive/__init__.py +699 -497
  29. aws_cdk/aws_msk/__init__.py +4 -4
  30. aws_cdk/aws_networkfirewall/__init__.py +9 -5
  31. aws_cdk/aws_nimblestudio/__init__.py +208 -400
  32. aws_cdk/aws_panorama/__init__.py +30 -3
  33. aws_cdk/aws_pcs/__init__.py +12 -5
  34. aws_cdk/aws_rds/__init__.py +22 -10
  35. aws_cdk/aws_s3/__init__.py +367 -6
  36. aws_cdk/aws_s3express/__init__.py +789 -0
  37. aws_cdk/aws_ses/__init__.py +300 -32
  38. aws_cdk/aws_sns_subscriptions/__init__.py +256 -1
  39. aws_cdk/aws_stepfunctions/__init__.py +55 -17
  40. aws_cdk/aws_synthetics/__init__.py +26 -16
  41. aws_cdk/aws_voiceid/__init__.py +13 -3
  42. aws_cdk/cloud_assembly_schema/__init__.py +137 -42
  43. aws_cdk/cx_api/__init__.py +7 -7
  44. {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.1.dist-info}/METADATA +2 -2
  45. {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.1.dist-info}/RECORD +49 -49
  46. {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.1.dist-info}/LICENSE +0 -0
  47. {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.1.dist-info}/NOTICE +0 -0
  48. {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.1.dist-info}/WHEEL +0 -0
  49. {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.1.dist-info}/top_level.txt +0 -0
@@ -3435,6 +3435,7 @@ class CfnChannel(
3435
3435
  jsii_struct_bases=[],
3436
3436
  name_mapping={
3437
3437
  "afd_signaling": "afdSignaling",
3438
+ "bitrate": "bitrate",
3438
3439
  "buf_size": "bufSize",
3439
3440
  "color_space_settings": "colorSpaceSettings",
3440
3441
  "fixed_afd": "fixedAfd",
@@ -3449,6 +3450,7 @@ class CfnChannel(
3449
3450
  "par_denominator": "parDenominator",
3450
3451
  "par_numerator": "parNumerator",
3451
3452
  "qvbr_quality_level": "qvbrQualityLevel",
3453
+ "rate_control_mode": "rateControlMode",
3452
3454
  "scene_change_detect": "sceneChangeDetect",
3453
3455
  "timecode_burnin_settings": "timecodeBurninSettings",
3454
3456
  },
@@ -3458,6 +3460,7 @@ class CfnChannel(
3458
3460
  self,
3459
3461
  *,
3460
3462
  afd_signaling: typing.Optional[builtins.str] = None,
3463
+ bitrate: typing.Optional[jsii.Number] = None,
3461
3464
  buf_size: typing.Optional[jsii.Number] = None,
3462
3465
  color_space_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.Av1ColorSpaceSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
3463
3466
  fixed_afd: typing.Optional[builtins.str] = None,
@@ -3472,11 +3475,13 @@ class CfnChannel(
3472
3475
  par_denominator: typing.Optional[jsii.Number] = None,
3473
3476
  par_numerator: typing.Optional[jsii.Number] = None,
3474
3477
  qvbr_quality_level: typing.Optional[jsii.Number] = None,
3478
+ rate_control_mode: typing.Optional[builtins.str] = None,
3475
3479
  scene_change_detect: typing.Optional[builtins.str] = None,
3476
3480
  timecode_burnin_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.TimecodeBurninSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
3477
3481
  ) -> None:
3478
3482
  '''
3479
3483
  :param afd_signaling:
3484
+ :param bitrate:
3480
3485
  :param buf_size:
3481
3486
  :param color_space_settings:
3482
3487
  :param fixed_afd:
@@ -3491,6 +3496,7 @@ class CfnChannel(
3491
3496
  :param par_denominator:
3492
3497
  :param par_numerator:
3493
3498
  :param qvbr_quality_level:
3499
+ :param rate_control_mode:
3494
3500
  :param scene_change_detect:
3495
3501
  :param timecode_burnin_settings:
3496
3502
 
@@ -3509,6 +3515,7 @@ class CfnChannel(
3509
3515
 
3510
3516
  av1_settings_property = medialive.CfnChannel.Av1SettingsProperty(
3511
3517
  afd_signaling="afdSignaling",
3518
+ bitrate=123,
3512
3519
  buf_size=123,
3513
3520
  color_space_settings=medialive.CfnChannel.Av1ColorSpaceSettingsProperty(
3514
3521
  color_space_passthrough_settings=color_space_passthrough_settings,
@@ -3531,6 +3538,7 @@ class CfnChannel(
3531
3538
  par_denominator=123,
3532
3539
  par_numerator=123,
3533
3540
  qvbr_quality_level=123,
3541
+ rate_control_mode="rateControlMode",
3534
3542
  scene_change_detect="sceneChangeDetect",
3535
3543
  timecode_burnin_settings=medialive.CfnChannel.TimecodeBurninSettingsProperty(
3536
3544
  font_size="fontSize",
@@ -3542,6 +3550,7 @@ class CfnChannel(
3542
3550
  if __debug__:
3543
3551
  type_hints = typing.get_type_hints(_typecheckingstub__1911156090a37730cd16cc0d13076f448f8b192dca9427883cf77e884bbd03df)
3544
3552
  check_type(argname="argument afd_signaling", value=afd_signaling, expected_type=type_hints["afd_signaling"])
3553
+ check_type(argname="argument bitrate", value=bitrate, expected_type=type_hints["bitrate"])
3545
3554
  check_type(argname="argument buf_size", value=buf_size, expected_type=type_hints["buf_size"])
3546
3555
  check_type(argname="argument color_space_settings", value=color_space_settings, expected_type=type_hints["color_space_settings"])
3547
3556
  check_type(argname="argument fixed_afd", value=fixed_afd, expected_type=type_hints["fixed_afd"])
@@ -3556,11 +3565,14 @@ class CfnChannel(
3556
3565
  check_type(argname="argument par_denominator", value=par_denominator, expected_type=type_hints["par_denominator"])
3557
3566
  check_type(argname="argument par_numerator", value=par_numerator, expected_type=type_hints["par_numerator"])
3558
3567
  check_type(argname="argument qvbr_quality_level", value=qvbr_quality_level, expected_type=type_hints["qvbr_quality_level"])
3568
+ check_type(argname="argument rate_control_mode", value=rate_control_mode, expected_type=type_hints["rate_control_mode"])
3559
3569
  check_type(argname="argument scene_change_detect", value=scene_change_detect, expected_type=type_hints["scene_change_detect"])
3560
3570
  check_type(argname="argument timecode_burnin_settings", value=timecode_burnin_settings, expected_type=type_hints["timecode_burnin_settings"])
3561
3571
  self._values: typing.Dict[builtins.str, typing.Any] = {}
3562
3572
  if afd_signaling is not None:
3563
3573
  self._values["afd_signaling"] = afd_signaling
3574
+ if bitrate is not None:
3575
+ self._values["bitrate"] = bitrate
3564
3576
  if buf_size is not None:
3565
3577
  self._values["buf_size"] = buf_size
3566
3578
  if color_space_settings is not None:
@@ -3589,6 +3601,8 @@ class CfnChannel(
3589
3601
  self._values["par_numerator"] = par_numerator
3590
3602
  if qvbr_quality_level is not None:
3591
3603
  self._values["qvbr_quality_level"] = qvbr_quality_level
3604
+ if rate_control_mode is not None:
3605
+ self._values["rate_control_mode"] = rate_control_mode
3592
3606
  if scene_change_detect is not None:
3593
3607
  self._values["scene_change_detect"] = scene_change_detect
3594
3608
  if timecode_burnin_settings is not None:
@@ -3602,6 +3616,14 @@ class CfnChannel(
3602
3616
  result = self._values.get("afd_signaling")
3603
3617
  return typing.cast(typing.Optional[builtins.str], result)
3604
3618
 
3619
+ @builtins.property
3620
+ def bitrate(self) -> typing.Optional[jsii.Number]:
3621
+ '''
3622
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-av1settings.html#cfn-medialive-channel-av1settings-bitrate
3623
+ '''
3624
+ result = self._values.get("bitrate")
3625
+ return typing.cast(typing.Optional[jsii.Number], result)
3626
+
3605
3627
  @builtins.property
3606
3628
  def buf_size(self) -> typing.Optional[jsii.Number]:
3607
3629
  '''
@@ -3716,6 +3738,14 @@ class CfnChannel(
3716
3738
  result = self._values.get("qvbr_quality_level")
3717
3739
  return typing.cast(typing.Optional[jsii.Number], result)
3718
3740
 
3741
+ @builtins.property
3742
+ def rate_control_mode(self) -> typing.Optional[builtins.str]:
3743
+ '''
3744
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-av1settings.html#cfn-medialive-channel-av1settings-ratecontrolmode
3745
+ '''
3746
+ result = self._values.get("rate_control_mode")
3747
+ return typing.cast(typing.Optional[builtins.str], result)
3748
+
3719
3749
  @builtins.property
3720
3750
  def scene_change_detect(self) -> typing.Optional[builtins.str]:
3721
3751
  '''
@@ -4700,6 +4730,8 @@ class CfnChannel(
4700
4730
  ),
4701
4731
  ebu_tt_dDestination_settings=medialive.CfnChannel.EbuTtDDestinationSettingsProperty(
4702
4732
  copyright_holder="copyrightHolder",
4733
+ default_font_size=123,
4734
+ default_line_height=123,
4703
4735
  fill_line_gap="fillLineGap",
4704
4736
  font_family="fontFamily",
4705
4737
  style_control="styleControl"
@@ -4954,6 +4986,8 @@ class CfnChannel(
4954
4986
  ),
4955
4987
  ebu_tt_dDestination_settings=medialive.CfnChannel.EbuTtDDestinationSettingsProperty(
4956
4988
  copyright_holder="copyrightHolder",
4989
+ default_font_size=123,
4990
+ default_line_height=123,
4957
4991
  fill_line_gap="fillLineGap",
4958
4992
  font_family="fontFamily",
4959
4993
  style_control="styleControl"
@@ -5804,10 +5838,81 @@ class CfnChannel(
5804
5838
  k + "=" + repr(v) for k, v in self._values.items()
5805
5839
  )
5806
5840
 
5841
+ @jsii.data_type(
5842
+ jsii_type="aws-cdk-lib.aws_medialive.CfnChannel.CmafIngestCaptionLanguageMappingProperty",
5843
+ jsii_struct_bases=[],
5844
+ name_mapping={
5845
+ "caption_channel": "captionChannel",
5846
+ "language_code": "languageCode",
5847
+ },
5848
+ )
5849
+ class CmafIngestCaptionLanguageMappingProperty:
5850
+ def __init__(
5851
+ self,
5852
+ *,
5853
+ caption_channel: typing.Optional[jsii.Number] = None,
5854
+ language_code: typing.Optional[builtins.str] = None,
5855
+ ) -> None:
5856
+ '''
5857
+ :param caption_channel:
5858
+ :param language_code:
5859
+
5860
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestcaptionlanguagemapping.html
5861
+ :exampleMetadata: fixture=_generated
5862
+
5863
+ Example::
5864
+
5865
+ # The code below shows an example of how to instantiate this type.
5866
+ # The values are placeholders you should change.
5867
+ from aws_cdk import aws_medialive as medialive
5868
+
5869
+ cmaf_ingest_caption_language_mapping_property = medialive.CfnChannel.CmafIngestCaptionLanguageMappingProperty(
5870
+ caption_channel=123,
5871
+ language_code="languageCode"
5872
+ )
5873
+ '''
5874
+ if __debug__:
5875
+ type_hints = typing.get_type_hints(_typecheckingstub__a833a02632a589afb5026143cbf8803b2228e0f422ab4c5a2dbf59314b9e157b)
5876
+ check_type(argname="argument caption_channel", value=caption_channel, expected_type=type_hints["caption_channel"])
5877
+ check_type(argname="argument language_code", value=language_code, expected_type=type_hints["language_code"])
5878
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
5879
+ if caption_channel is not None:
5880
+ self._values["caption_channel"] = caption_channel
5881
+ if language_code is not None:
5882
+ self._values["language_code"] = language_code
5883
+
5884
+ @builtins.property
5885
+ def caption_channel(self) -> typing.Optional[jsii.Number]:
5886
+ '''
5887
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestcaptionlanguagemapping.html#cfn-medialive-channel-cmafingestcaptionlanguagemapping-captionchannel
5888
+ '''
5889
+ result = self._values.get("caption_channel")
5890
+ return typing.cast(typing.Optional[jsii.Number], result)
5891
+
5892
+ @builtins.property
5893
+ def language_code(self) -> typing.Optional[builtins.str]:
5894
+ '''
5895
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestcaptionlanguagemapping.html#cfn-medialive-channel-cmafingestcaptionlanguagemapping-languagecode
5896
+ '''
5897
+ result = self._values.get("language_code")
5898
+ return typing.cast(typing.Optional[builtins.str], result)
5899
+
5900
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
5901
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
5902
+
5903
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
5904
+ return not (rhs == self)
5905
+
5906
+ def __repr__(self) -> str:
5907
+ return "CmafIngestCaptionLanguageMappingProperty(%s)" % ", ".join(
5908
+ k + "=" + repr(v) for k, v in self._values.items()
5909
+ )
5910
+
5807
5911
  @jsii.data_type(
5808
5912
  jsii_type="aws-cdk-lib.aws_medialive.CfnChannel.CmafIngestGroupSettingsProperty",
5809
5913
  jsii_struct_bases=[],
5810
5914
  name_mapping={
5915
+ "caption_language_mappings": "captionLanguageMappings",
5811
5916
  "destination": "destination",
5812
5917
  "id3_behavior": "id3Behavior",
5813
5918
  "id3_name_modifier": "id3NameModifier",
@@ -5820,12 +5925,16 @@ class CfnChannel(
5820
5925
  "segment_length": "segmentLength",
5821
5926
  "segment_length_units": "segmentLengthUnits",
5822
5927
  "send_delay_ms": "sendDelayMs",
5928
+ "timed_metadata_id3_frame": "timedMetadataId3Frame",
5929
+ "timed_metadata_id3_period": "timedMetadataId3Period",
5930
+ "timed_metadata_passthrough": "timedMetadataPassthrough",
5823
5931
  },
5824
5932
  )
5825
5933
  class CmafIngestGroupSettingsProperty:
5826
5934
  def __init__(
5827
5935
  self,
5828
5936
  *,
5937
+ caption_language_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.CmafIngestCaptionLanguageMappingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
5829
5938
  destination: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.OutputLocationRefProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5830
5939
  id3_behavior: typing.Optional[builtins.str] = None,
5831
5940
  id3_name_modifier: typing.Optional[builtins.str] = None,
@@ -5838,8 +5947,12 @@ class CfnChannel(
5838
5947
  segment_length: typing.Optional[jsii.Number] = None,
5839
5948
  segment_length_units: typing.Optional[builtins.str] = None,
5840
5949
  send_delay_ms: typing.Optional[jsii.Number] = None,
5950
+ timed_metadata_id3_frame: typing.Optional[builtins.str] = None,
5951
+ timed_metadata_id3_period: typing.Optional[jsii.Number] = None,
5952
+ timed_metadata_passthrough: typing.Optional[builtins.str] = None,
5841
5953
  ) -> None:
5842
5954
  '''
5955
+ :param caption_language_mappings:
5843
5956
  :param destination:
5844
5957
  :param id3_behavior:
5845
5958
  :param id3_name_modifier:
@@ -5852,6 +5965,9 @@ class CfnChannel(
5852
5965
  :param segment_length:
5853
5966
  :param segment_length_units:
5854
5967
  :param send_delay_ms:
5968
+ :param timed_metadata_id3_frame:
5969
+ :param timed_metadata_id3_period:
5970
+ :param timed_metadata_passthrough:
5855
5971
 
5856
5972
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestgroupsettings.html
5857
5973
  :exampleMetadata: fixture=_generated
@@ -5863,6 +5979,10 @@ class CfnChannel(
5863
5979
  from aws_cdk import aws_medialive as medialive
5864
5980
 
5865
5981
  cmaf_ingest_group_settings_property = medialive.CfnChannel.CmafIngestGroupSettingsProperty(
5982
+ caption_language_mappings=[medialive.CfnChannel.CmafIngestCaptionLanguageMappingProperty(
5983
+ caption_channel=123,
5984
+ language_code="languageCode"
5985
+ )],
5866
5986
  destination=medialive.CfnChannel.OutputLocationRefProperty(
5867
5987
  destination_ref_id="destinationRefId"
5868
5988
  ),
@@ -5876,11 +5996,15 @@ class CfnChannel(
5876
5996
  scte35_type="scte35Type",
5877
5997
  segment_length=123,
5878
5998
  segment_length_units="segmentLengthUnits",
5879
- send_delay_ms=123
5999
+ send_delay_ms=123,
6000
+ timed_metadata_id3_frame="timedMetadataId3Frame",
6001
+ timed_metadata_id3_period=123,
6002
+ timed_metadata_passthrough="timedMetadataPassthrough"
5880
6003
  )
5881
6004
  '''
5882
6005
  if __debug__:
5883
6006
  type_hints = typing.get_type_hints(_typecheckingstub__6fe9142b6885e8776c3e51af0733250a73fcd8e45bb4ec5f866206680352c7eb)
6007
+ check_type(argname="argument caption_language_mappings", value=caption_language_mappings, expected_type=type_hints["caption_language_mappings"])
5884
6008
  check_type(argname="argument destination", value=destination, expected_type=type_hints["destination"])
5885
6009
  check_type(argname="argument id3_behavior", value=id3_behavior, expected_type=type_hints["id3_behavior"])
5886
6010
  check_type(argname="argument id3_name_modifier", value=id3_name_modifier, expected_type=type_hints["id3_name_modifier"])
@@ -5893,7 +6017,12 @@ class CfnChannel(
5893
6017
  check_type(argname="argument segment_length", value=segment_length, expected_type=type_hints["segment_length"])
5894
6018
  check_type(argname="argument segment_length_units", value=segment_length_units, expected_type=type_hints["segment_length_units"])
5895
6019
  check_type(argname="argument send_delay_ms", value=send_delay_ms, expected_type=type_hints["send_delay_ms"])
6020
+ check_type(argname="argument timed_metadata_id3_frame", value=timed_metadata_id3_frame, expected_type=type_hints["timed_metadata_id3_frame"])
6021
+ check_type(argname="argument timed_metadata_id3_period", value=timed_metadata_id3_period, expected_type=type_hints["timed_metadata_id3_period"])
6022
+ check_type(argname="argument timed_metadata_passthrough", value=timed_metadata_passthrough, expected_type=type_hints["timed_metadata_passthrough"])
5896
6023
  self._values: typing.Dict[builtins.str, typing.Any] = {}
6024
+ if caption_language_mappings is not None:
6025
+ self._values["caption_language_mappings"] = caption_language_mappings
5897
6026
  if destination is not None:
5898
6027
  self._values["destination"] = destination
5899
6028
  if id3_behavior is not None:
@@ -5918,6 +6047,22 @@ class CfnChannel(
5918
6047
  self._values["segment_length_units"] = segment_length_units
5919
6048
  if send_delay_ms is not None:
5920
6049
  self._values["send_delay_ms"] = send_delay_ms
6050
+ if timed_metadata_id3_frame is not None:
6051
+ self._values["timed_metadata_id3_frame"] = timed_metadata_id3_frame
6052
+ if timed_metadata_id3_period is not None:
6053
+ self._values["timed_metadata_id3_period"] = timed_metadata_id3_period
6054
+ if timed_metadata_passthrough is not None:
6055
+ self._values["timed_metadata_passthrough"] = timed_metadata_passthrough
6056
+
6057
+ @builtins.property
6058
+ def caption_language_mappings(
6059
+ self,
6060
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnChannel.CmafIngestCaptionLanguageMappingProperty"]]]]:
6061
+ '''
6062
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestgroupsettings.html#cfn-medialive-channel-cmafingestgroupsettings-captionlanguagemappings
6063
+ '''
6064
+ result = self._values.get("caption_language_mappings")
6065
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnChannel.CmafIngestCaptionLanguageMappingProperty"]]]], result)
5921
6066
 
5922
6067
  @builtins.property
5923
6068
  def destination(
@@ -6017,6 +6162,30 @@ class CfnChannel(
6017
6162
  result = self._values.get("send_delay_ms")
6018
6163
  return typing.cast(typing.Optional[jsii.Number], result)
6019
6164
 
6165
+ @builtins.property
6166
+ def timed_metadata_id3_frame(self) -> typing.Optional[builtins.str]:
6167
+ '''
6168
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestgroupsettings.html#cfn-medialive-channel-cmafingestgroupsettings-timedmetadataid3frame
6169
+ '''
6170
+ result = self._values.get("timed_metadata_id3_frame")
6171
+ return typing.cast(typing.Optional[builtins.str], result)
6172
+
6173
+ @builtins.property
6174
+ def timed_metadata_id3_period(self) -> typing.Optional[jsii.Number]:
6175
+ '''
6176
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestgroupsettings.html#cfn-medialive-channel-cmafingestgroupsettings-timedmetadataid3period
6177
+ '''
6178
+ result = self._values.get("timed_metadata_id3_period")
6179
+ return typing.cast(typing.Optional[jsii.Number], result)
6180
+
6181
+ @builtins.property
6182
+ def timed_metadata_passthrough(self) -> typing.Optional[builtins.str]:
6183
+ '''
6184
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestgroupsettings.html#cfn-medialive-channel-cmafingestgroupsettings-timedmetadatapassthrough
6185
+ '''
6186
+ result = self._values.get("timed_metadata_passthrough")
6187
+ return typing.cast(typing.Optional[builtins.str], result)
6188
+
6020
6189
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
6021
6190
  return isinstance(rhs, self.__class__) and rhs._values == self._values
6022
6191
 
@@ -7522,6 +7691,8 @@ class CfnChannel(
7522
7691
  jsii_struct_bases=[],
7523
7692
  name_mapping={
7524
7693
  "copyright_holder": "copyrightHolder",
7694
+ "default_font_size": "defaultFontSize",
7695
+ "default_line_height": "defaultLineHeight",
7525
7696
  "fill_line_gap": "fillLineGap",
7526
7697
  "font_family": "fontFamily",
7527
7698
  "style_control": "styleControl",
@@ -7532,6 +7703,8 @@ class CfnChannel(
7532
7703
  self,
7533
7704
  *,
7534
7705
  copyright_holder: typing.Optional[builtins.str] = None,
7706
+ default_font_size: typing.Optional[jsii.Number] = None,
7707
+ default_line_height: typing.Optional[jsii.Number] = None,
7535
7708
  fill_line_gap: typing.Optional[builtins.str] = None,
7536
7709
  font_family: typing.Optional[builtins.str] = None,
7537
7710
  style_control: typing.Optional[builtins.str] = None,
@@ -7541,6 +7714,8 @@ class CfnChannel(
7541
7714
  The parent of this entity is CaptionDestinationSettings.
7542
7715
 
7543
7716
  :param copyright_holder: Applies only if you plan to convert these source captions to EBU-TT-D or TTML in an output. Complete this field if you want to include the name of the copyright holder in the copyright metadata tag in the TTML
7717
+ :param default_font_size:
7718
+ :param default_line_height:
7544
7719
  :param fill_line_gap: Specifies how to handle the gap between the lines (in multi-line captions). - enabled: Fill with the captions background color (as specified in the input captions). - disabled: Leave the gap unfilled.
7545
7720
  :param font_family: Specifies the font family to include in the font data attached to the EBU-TT captions. Valid only if styleControl is set to include. If you leave this field empty, the font family is set to "monospaced". (If styleControl is set to exclude, the font family is always set to "monospaced".) You specify only the font family. All other style information (color, bold, position and so on) is copied from the input captions. The size is always set to 100% to allow the downstream player to choose the size. - Enter a list of font families, as a comma-separated list of font names, in order of preference. The name can be a font family (such as “Arial”), or a generic font family (such as “serif”), or “default” (to let the downstream player choose the font). - Leave blank to set the family to “monospace”.
7546
7721
  :param style_control: Specifies the style information (font color, font position, and so on) to include in the font data that is attached to the EBU-TT captions. - include: Take the style information (font color, font position, and so on) from the source captions and include that information in the font data attached to the EBU-TT captions. This option is valid only if the source captions are Embedded or Teletext. - exclude: In the font data attached to the EBU-TT captions, set the font family to "monospaced". Do not include any other style information.
@@ -7556,6 +7731,8 @@ class CfnChannel(
7556
7731
 
7557
7732
  ebu_tt_dDestination_settings_property = medialive.CfnChannel.EbuTtDDestinationSettingsProperty(
7558
7733
  copyright_holder="copyrightHolder",
7734
+ default_font_size=123,
7735
+ default_line_height=123,
7559
7736
  fill_line_gap="fillLineGap",
7560
7737
  font_family="fontFamily",
7561
7738
  style_control="styleControl"
@@ -7564,12 +7741,18 @@ class CfnChannel(
7564
7741
  if __debug__:
7565
7742
  type_hints = typing.get_type_hints(_typecheckingstub__23559d0249cfbe262bfbd93ab48605fd9c25886b289f89b7e6b86a893ae4c78b)
7566
7743
  check_type(argname="argument copyright_holder", value=copyright_holder, expected_type=type_hints["copyright_holder"])
7744
+ check_type(argname="argument default_font_size", value=default_font_size, expected_type=type_hints["default_font_size"])
7745
+ check_type(argname="argument default_line_height", value=default_line_height, expected_type=type_hints["default_line_height"])
7567
7746
  check_type(argname="argument fill_line_gap", value=fill_line_gap, expected_type=type_hints["fill_line_gap"])
7568
7747
  check_type(argname="argument font_family", value=font_family, expected_type=type_hints["font_family"])
7569
7748
  check_type(argname="argument style_control", value=style_control, expected_type=type_hints["style_control"])
7570
7749
  self._values: typing.Dict[builtins.str, typing.Any] = {}
7571
7750
  if copyright_holder is not None:
7572
7751
  self._values["copyright_holder"] = copyright_holder
7752
+ if default_font_size is not None:
7753
+ self._values["default_font_size"] = default_font_size
7754
+ if default_line_height is not None:
7755
+ self._values["default_line_height"] = default_line_height
7573
7756
  if fill_line_gap is not None:
7574
7757
  self._values["fill_line_gap"] = fill_line_gap
7575
7758
  if font_family is not None:
@@ -7588,6 +7771,22 @@ class CfnChannel(
7588
7771
  result = self._values.get("copyright_holder")
7589
7772
  return typing.cast(typing.Optional[builtins.str], result)
7590
7773
 
7774
+ @builtins.property
7775
+ def default_font_size(self) -> typing.Optional[jsii.Number]:
7776
+ '''
7777
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-ebuttddestinationsettings.html#cfn-medialive-channel-ebuttddestinationsettings-defaultfontsize
7778
+ '''
7779
+ result = self._values.get("default_font_size")
7780
+ return typing.cast(typing.Optional[jsii.Number], result)
7781
+
7782
+ @builtins.property
7783
+ def default_line_height(self) -> typing.Optional[jsii.Number]:
7784
+ '''
7785
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-ebuttddestinationsettings.html#cfn-medialive-channel-ebuttddestinationsettings-defaultlineheight
7786
+ '''
7787
+ result = self._values.get("default_line_height")
7788
+ return typing.cast(typing.Optional[jsii.Number], result)
7789
+
7591
7790
  @builtins.property
7592
7791
  def fill_line_gap(self) -> typing.Optional[builtins.str]:
7593
7792
  '''Specifies how to handle the gap between the lines (in multi-line captions).
@@ -18154,6 +18353,7 @@ class CfnChannel(
18154
18353
  jsii_struct_bases=[],
18155
18354
  name_mapping={
18156
18355
  "id": "id",
18356
+ "logical_interface_names": "logicalInterfaceNames",
18157
18357
  "media_package_settings": "mediaPackageSettings",
18158
18358
  "multiplex_settings": "multiplexSettings",
18159
18359
  "settings": "settings",
@@ -18165,6 +18365,7 @@ class CfnChannel(
18165
18365
  self,
18166
18366
  *,
18167
18367
  id: typing.Optional[builtins.str] = None,
18368
+ logical_interface_names: typing.Optional[typing.Sequence[builtins.str]] = None,
18168
18369
  media_package_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.MediaPackageOutputDestinationSettingsProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
18169
18370
  multiplex_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.MultiplexProgramChannelDestinationSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
18170
18371
  settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.OutputDestinationSettingsProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
@@ -18175,6 +18376,7 @@ class CfnChannel(
18175
18376
  This entity is at the top level in the channel.
18176
18377
 
18177
18378
  :param id: The ID for this destination.
18379
+ :param logical_interface_names:
18178
18380
  :param media_package_settings: The destination settings for a MediaPackage output.
18179
18381
  :param multiplex_settings: Destination settings for a Multiplex output; one destination for both encoders.
18180
18382
  :param settings: The destination settings for an output.
@@ -18191,6 +18393,7 @@ class CfnChannel(
18191
18393
 
18192
18394
  output_destination_property = medialive.CfnChannel.OutputDestinationProperty(
18193
18395
  id="id",
18396
+ logical_interface_names=["logicalInterfaceNames"],
18194
18397
  media_package_settings=[medialive.CfnChannel.MediaPackageOutputDestinationSettingsProperty(
18195
18398
  channel_group="channelGroup",
18196
18399
  channel_id="channelId",
@@ -18216,6 +18419,7 @@ class CfnChannel(
18216
18419
  if __debug__:
18217
18420
  type_hints = typing.get_type_hints(_typecheckingstub__d1c3f4cbc44fec2f5cf6dcc1097499d83d328f8fd1f15b8dd6ce6bc45153265a)
18218
18421
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
18422
+ check_type(argname="argument logical_interface_names", value=logical_interface_names, expected_type=type_hints["logical_interface_names"])
18219
18423
  check_type(argname="argument media_package_settings", value=media_package_settings, expected_type=type_hints["media_package_settings"])
18220
18424
  check_type(argname="argument multiplex_settings", value=multiplex_settings, expected_type=type_hints["multiplex_settings"])
18221
18425
  check_type(argname="argument settings", value=settings, expected_type=type_hints["settings"])
@@ -18223,6 +18427,8 @@ class CfnChannel(
18223
18427
  self._values: typing.Dict[builtins.str, typing.Any] = {}
18224
18428
  if id is not None:
18225
18429
  self._values["id"] = id
18430
+ if logical_interface_names is not None:
18431
+ self._values["logical_interface_names"] = logical_interface_names
18226
18432
  if media_package_settings is not None:
18227
18433
  self._values["media_package_settings"] = media_package_settings
18228
18434
  if multiplex_settings is not None:
@@ -18241,6 +18447,14 @@ class CfnChannel(
18241
18447
  result = self._values.get("id")
18242
18448
  return typing.cast(typing.Optional[builtins.str], result)
18243
18449
 
18450
+ @builtins.property
18451
+ def logical_interface_names(self) -> typing.Optional[typing.List[builtins.str]]:
18452
+ '''
18453
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-outputdestination.html#cfn-medialive-channel-outputdestination-logicalinterfacenames
18454
+ '''
18455
+ result = self._values.get("logical_interface_names")
18456
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
18457
+
18244
18458
  @builtins.property
18245
18459
  def media_package_settings(
18246
18460
  self,
@@ -18440,502 +18654,7 @@ class CfnChannel(
18440
18654
 
18441
18655
  Example::
18442
18656
 
18443
- # The code below shows an example of how to instantiate this type.
18444
- # The values are placeholders you should change.
18445
- from aws_cdk import aws_medialive as medialive
18446
18657
 
18447
- output_group_property = medialive.CfnChannel.OutputGroupProperty(
18448
- name="name",
18449
- output_group_settings=medialive.CfnChannel.OutputGroupSettingsProperty(
18450
- archive_group_settings=medialive.CfnChannel.ArchiveGroupSettingsProperty(
18451
- archive_cdn_settings=medialive.CfnChannel.ArchiveCdnSettingsProperty(
18452
- archive_s3_settings=medialive.CfnChannel.ArchiveS3SettingsProperty(
18453
- canned_acl="cannedAcl"
18454
- )
18455
- ),
18456
- destination=medialive.CfnChannel.OutputLocationRefProperty(
18457
- destination_ref_id="destinationRefId"
18458
- ),
18459
- rollover_interval=123
18460
- ),
18461
- cmaf_ingest_group_settings=medialive.CfnChannel.CmafIngestGroupSettingsProperty(
18462
- destination=medialive.CfnChannel.OutputLocationRefProperty(
18463
- destination_ref_id="destinationRefId"
18464
- ),
18465
- id3_behavior="id3Behavior",
18466
- id3_name_modifier="id3NameModifier",
18467
- klv_behavior="klvBehavior",
18468
- klv_name_modifier="klvNameModifier",
18469
- nielsen_id3_behavior="nielsenId3Behavior",
18470
- nielsen_id3_name_modifier="nielsenId3NameModifier",
18471
- scte35_name_modifier="scte35NameModifier",
18472
- scte35_type="scte35Type",
18473
- segment_length=123,
18474
- segment_length_units="segmentLengthUnits",
18475
- send_delay_ms=123
18476
- ),
18477
- frame_capture_group_settings=medialive.CfnChannel.FrameCaptureGroupSettingsProperty(
18478
- destination=medialive.CfnChannel.OutputLocationRefProperty(
18479
- destination_ref_id="destinationRefId"
18480
- ),
18481
- frame_capture_cdn_settings=medialive.CfnChannel.FrameCaptureCdnSettingsProperty(
18482
- frame_capture_s3_settings=medialive.CfnChannel.FrameCaptureS3SettingsProperty(
18483
- canned_acl="cannedAcl"
18484
- )
18485
- )
18486
- ),
18487
- hls_group_settings=medialive.CfnChannel.HlsGroupSettingsProperty(
18488
- ad_markers=["adMarkers"],
18489
- base_url_content="baseUrlContent",
18490
- base_url_content1="baseUrlContent1",
18491
- base_url_manifest="baseUrlManifest",
18492
- base_url_manifest1="baseUrlManifest1",
18493
- caption_language_mappings=[medialive.CfnChannel.CaptionLanguageMappingProperty(
18494
- caption_channel=123,
18495
- language_code="languageCode",
18496
- language_description="languageDescription"
18497
- )],
18498
- caption_language_setting="captionLanguageSetting",
18499
- client_cache="clientCache",
18500
- codec_specification="codecSpecification",
18501
- constant_iv="constantIv",
18502
- destination=medialive.CfnChannel.OutputLocationRefProperty(
18503
- destination_ref_id="destinationRefId"
18504
- ),
18505
- directory_structure="directoryStructure",
18506
- discontinuity_tags="discontinuityTags",
18507
- encryption_type="encryptionType",
18508
- hls_cdn_settings=medialive.CfnChannel.HlsCdnSettingsProperty(
18509
- hls_akamai_settings=medialive.CfnChannel.HlsAkamaiSettingsProperty(
18510
- connection_retry_interval=123,
18511
- filecache_duration=123,
18512
- http_transfer_mode="httpTransferMode",
18513
- num_retries=123,
18514
- restart_delay=123,
18515
- salt="salt",
18516
- token="token"
18517
- ),
18518
- hls_basic_put_settings=medialive.CfnChannel.HlsBasicPutSettingsProperty(
18519
- connection_retry_interval=123,
18520
- filecache_duration=123,
18521
- num_retries=123,
18522
- restart_delay=123
18523
- ),
18524
- hls_media_store_settings=medialive.CfnChannel.HlsMediaStoreSettingsProperty(
18525
- connection_retry_interval=123,
18526
- filecache_duration=123,
18527
- media_store_storage_class="mediaStoreStorageClass",
18528
- num_retries=123,
18529
- restart_delay=123
18530
- ),
18531
- hls_s3_settings=medialive.CfnChannel.HlsS3SettingsProperty(
18532
- canned_acl="cannedAcl"
18533
- ),
18534
- hls_webdav_settings=medialive.CfnChannel.HlsWebdavSettingsProperty(
18535
- connection_retry_interval=123,
18536
- filecache_duration=123,
18537
- http_transfer_mode="httpTransferMode",
18538
- num_retries=123,
18539
- restart_delay=123
18540
- )
18541
- ),
18542
- hls_id3_segment_tagging="hlsId3SegmentTagging",
18543
- i_frame_only_playlists="iFrameOnlyPlaylists",
18544
- incomplete_segment_behavior="incompleteSegmentBehavior",
18545
- index_nSegments=123,
18546
- input_loss_action="inputLossAction",
18547
- iv_in_manifest="ivInManifest",
18548
- iv_source="ivSource",
18549
- keep_segments=123,
18550
- key_format="keyFormat",
18551
- key_format_versions="keyFormatVersions",
18552
- key_provider_settings=medialive.CfnChannel.KeyProviderSettingsProperty(
18553
- static_key_settings=medialive.CfnChannel.StaticKeySettingsProperty(
18554
- key_provider_server=medialive.CfnChannel.InputLocationProperty(
18555
- password_param="passwordParam",
18556
- uri="uri",
18557
- username="username"
18558
- ),
18559
- static_key_value="staticKeyValue"
18560
- )
18561
- ),
18562
- manifest_compression="manifestCompression",
18563
- manifest_duration_format="manifestDurationFormat",
18564
- min_segment_length=123,
18565
- mode="mode",
18566
- output_selection="outputSelection",
18567
- program_date_time="programDateTime",
18568
- program_date_time_clock="programDateTimeClock",
18569
- program_date_time_period=123,
18570
- redundant_manifest="redundantManifest",
18571
- segmentation_mode="segmentationMode",
18572
- segment_length=123,
18573
- segments_per_subdirectory=123,
18574
- stream_inf_resolution="streamInfResolution",
18575
- timed_metadata_id3_frame="timedMetadataId3Frame",
18576
- timed_metadata_id3_period=123,
18577
- timestamp_delta_milliseconds=123,
18578
- ts_file_mode="tsFileMode"
18579
- ),
18580
- media_package_group_settings=medialive.CfnChannel.MediaPackageGroupSettingsProperty(
18581
- destination=medialive.CfnChannel.OutputLocationRefProperty(
18582
- destination_ref_id="destinationRefId"
18583
- )
18584
- ),
18585
- ms_smooth_group_settings=medialive.CfnChannel.MsSmoothGroupSettingsProperty(
18586
- acquisition_point_id="acquisitionPointId",
18587
- audio_only_timecode_control="audioOnlyTimecodeControl",
18588
- certificate_mode="certificateMode",
18589
- connection_retry_interval=123,
18590
- destination=medialive.CfnChannel.OutputLocationRefProperty(
18591
- destination_ref_id="destinationRefId"
18592
- ),
18593
- event_id="eventId",
18594
- event_id_mode="eventIdMode",
18595
- event_stop_behavior="eventStopBehavior",
18596
- filecache_duration=123,
18597
- fragment_length=123,
18598
- input_loss_action="inputLossAction",
18599
- num_retries=123,
18600
- restart_delay=123,
18601
- segmentation_mode="segmentationMode",
18602
- send_delay_ms=123,
18603
- sparse_track_type="sparseTrackType",
18604
- stream_manifest_behavior="streamManifestBehavior",
18605
- timestamp_offset="timestampOffset",
18606
- timestamp_offset_mode="timestampOffsetMode"
18607
- ),
18608
- multiplex_group_settings=medialive.CfnChannel.MultiplexGroupSettingsProperty(),
18609
- rtmp_group_settings=medialive.CfnChannel.RtmpGroupSettingsProperty(
18610
- ad_markers=["adMarkers"],
18611
- authentication_scheme="authenticationScheme",
18612
- cache_full_behavior="cacheFullBehavior",
18613
- cache_length=123,
18614
- caption_data="captionData",
18615
- include_filler_nal_units="includeFillerNalUnits",
18616
- input_loss_action="inputLossAction",
18617
- restart_delay=123
18618
- ),
18619
- srt_group_settings=medialive.CfnChannel.SrtGroupSettingsProperty(
18620
- input_loss_action="inputLossAction"
18621
- ),
18622
- udp_group_settings=medialive.CfnChannel.UdpGroupSettingsProperty(
18623
- input_loss_action="inputLossAction",
18624
- timed_metadata_id3_frame="timedMetadataId3Frame",
18625
- timed_metadata_id3_period=123
18626
- )
18627
- ),
18628
- outputs=[medialive.CfnChannel.OutputProperty(
18629
- audio_description_names=["audioDescriptionNames"],
18630
- caption_description_names=["captionDescriptionNames"],
18631
- output_name="outputName",
18632
- output_settings=medialive.CfnChannel.OutputSettingsProperty(
18633
- archive_output_settings=medialive.CfnChannel.ArchiveOutputSettingsProperty(
18634
- container_settings=medialive.CfnChannel.ArchiveContainerSettingsProperty(
18635
- m2_ts_settings=medialive.CfnChannel.M2tsSettingsProperty(
18636
- absent_input_audio_behavior="absentInputAudioBehavior",
18637
- arib="arib",
18638
- arib_captions_pid="aribCaptionsPid",
18639
- arib_captions_pid_control="aribCaptionsPidControl",
18640
- audio_buffer_model="audioBufferModel",
18641
- audio_frames_per_pes=123,
18642
- audio_pids="audioPids",
18643
- audio_stream_type="audioStreamType",
18644
- bitrate=123,
18645
- buffer_model="bufferModel",
18646
- cc_descriptor="ccDescriptor",
18647
- dvb_nit_settings=medialive.CfnChannel.DvbNitSettingsProperty(
18648
- network_id=123,
18649
- network_name="networkName",
18650
- rep_interval=123
18651
- ),
18652
- dvb_sdt_settings=medialive.CfnChannel.DvbSdtSettingsProperty(
18653
- output_sdt="outputSdt",
18654
- rep_interval=123,
18655
- service_name="serviceName",
18656
- service_provider_name="serviceProviderName"
18657
- ),
18658
- dvb_sub_pids="dvbSubPids",
18659
- dvb_tdt_settings=medialive.CfnChannel.DvbTdtSettingsProperty(
18660
- rep_interval=123
18661
- ),
18662
- dvb_teletext_pid="dvbTeletextPid",
18663
- ebif="ebif",
18664
- ebp_audio_interval="ebpAudioInterval",
18665
- ebp_lookahead_ms=123,
18666
- ebp_placement="ebpPlacement",
18667
- ecm_pid="ecmPid",
18668
- es_rate_in_pes="esRateInPes",
18669
- etv_platform_pid="etvPlatformPid",
18670
- etv_signal_pid="etvSignalPid",
18671
- fragment_time=123,
18672
- klv="klv",
18673
- klv_data_pids="klvDataPids",
18674
- nielsen_id3_behavior="nielsenId3Behavior",
18675
- null_packet_bitrate=123,
18676
- pat_interval=123,
18677
- pcr_control="pcrControl",
18678
- pcr_period=123,
18679
- pcr_pid="pcrPid",
18680
- pmt_interval=123,
18681
- pmt_pid="pmtPid",
18682
- program_num=123,
18683
- rate_mode="rateMode",
18684
- scte27_pids="scte27Pids",
18685
- scte35_control="scte35Control",
18686
- scte35_pid="scte35Pid",
18687
- scte35_preroll_pullup_milliseconds=123,
18688
- segmentation_markers="segmentationMarkers",
18689
- segmentation_style="segmentationStyle",
18690
- segmentation_time=123,
18691
- timed_metadata_behavior="timedMetadataBehavior",
18692
- timed_metadata_pid="timedMetadataPid",
18693
- transport_stream_id=123,
18694
- video_pid="videoPid"
18695
- ),
18696
- raw_settings=medialive.CfnChannel.RawSettingsProperty()
18697
- ),
18698
- extension="extension",
18699
- name_modifier="nameModifier"
18700
- ),
18701
- cmaf_ingest_output_settings=medialive.CfnChannel.CmafIngestOutputSettingsProperty(
18702
- name_modifier="nameModifier"
18703
- ),
18704
- frame_capture_output_settings=medialive.CfnChannel.FrameCaptureOutputSettingsProperty(
18705
- name_modifier="nameModifier"
18706
- ),
18707
- hls_output_settings=medialive.CfnChannel.HlsOutputSettingsProperty(
18708
- h265_packaging_type="h265PackagingType",
18709
- hls_settings=medialive.CfnChannel.HlsSettingsProperty(
18710
- audio_only_hls_settings=medialive.CfnChannel.AudioOnlyHlsSettingsProperty(
18711
- audio_group_id="audioGroupId",
18712
- audio_only_image=medialive.CfnChannel.InputLocationProperty(
18713
- password_param="passwordParam",
18714
- uri="uri",
18715
- username="username"
18716
- ),
18717
- audio_track_type="audioTrackType",
18718
- segment_type="segmentType"
18719
- ),
18720
- fmp4_hls_settings=medialive.CfnChannel.Fmp4HlsSettingsProperty(
18721
- audio_rendition_sets="audioRenditionSets",
18722
- nielsen_id3_behavior="nielsenId3Behavior",
18723
- timed_metadata_behavior="timedMetadataBehavior"
18724
- ),
18725
- frame_capture_hls_settings=medialive.CfnChannel.FrameCaptureHlsSettingsProperty(),
18726
- standard_hls_settings=medialive.CfnChannel.StandardHlsSettingsProperty(
18727
- audio_rendition_sets="audioRenditionSets",
18728
- m3_u8_settings=medialive.CfnChannel.M3u8SettingsProperty(
18729
- audio_frames_per_pes=123,
18730
- audio_pids="audioPids",
18731
- ecm_pid="ecmPid",
18732
- klv_behavior="klvBehavior",
18733
- klv_data_pids="klvDataPids",
18734
- nielsen_id3_behavior="nielsenId3Behavior",
18735
- pat_interval=123,
18736
- pcr_control="pcrControl",
18737
- pcr_period=123,
18738
- pcr_pid="pcrPid",
18739
- pmt_interval=123,
18740
- pmt_pid="pmtPid",
18741
- program_num=123,
18742
- scte35_behavior="scte35Behavior",
18743
- scte35_pid="scte35Pid",
18744
- timed_metadata_behavior="timedMetadataBehavior",
18745
- timed_metadata_pid="timedMetadataPid",
18746
- transport_stream_id=123,
18747
- video_pid="videoPid"
18748
- )
18749
- )
18750
- ),
18751
- name_modifier="nameModifier",
18752
- segment_modifier="segmentModifier"
18753
- ),
18754
- media_package_output_settings=medialive.CfnChannel.MediaPackageOutputSettingsProperty(),
18755
- ms_smooth_output_settings=medialive.CfnChannel.MsSmoothOutputSettingsProperty(
18756
- h265_packaging_type="h265PackagingType",
18757
- name_modifier="nameModifier"
18758
- ),
18759
- multiplex_output_settings=medialive.CfnChannel.MultiplexOutputSettingsProperty(
18760
- container_settings=medialive.CfnChannel.MultiplexContainerSettingsProperty(
18761
- multiplex_m2_ts_settings=medialive.CfnChannel.MultiplexM2tsSettingsProperty(
18762
- absent_input_audio_behavior="absentInputAudioBehavior",
18763
- arib="arib",
18764
- audio_buffer_model="audioBufferModel",
18765
- audio_frames_per_pes=123,
18766
- audio_stream_type="audioStreamType",
18767
- cc_descriptor="ccDescriptor",
18768
- ebif="ebif",
18769
- es_rate_in_pes="esRateInPes",
18770
- klv="klv",
18771
- nielsen_id3_behavior="nielsenId3Behavior",
18772
- pcr_control="pcrControl",
18773
- pcr_period=123,
18774
- scte35_control="scte35Control",
18775
- scte35_preroll_pullup_milliseconds=123
18776
- )
18777
- ),
18778
- destination=medialive.CfnChannel.OutputLocationRefProperty(
18779
- destination_ref_id="destinationRefId"
18780
- )
18781
- ),
18782
- rtmp_output_settings=medialive.CfnChannel.RtmpOutputSettingsProperty(
18783
- certificate_mode="certificateMode",
18784
- connection_retry_interval=123,
18785
- destination=medialive.CfnChannel.OutputLocationRefProperty(
18786
- destination_ref_id="destinationRefId"
18787
- ),
18788
- num_retries=123
18789
- ),
18790
- srt_output_settings=medialive.CfnChannel.SrtOutputSettingsProperty(
18791
- buffer_msec=123,
18792
- container_settings=medialive.CfnChannel.UdpContainerSettingsProperty(
18793
- m2_ts_settings=medialive.CfnChannel.M2tsSettingsProperty(
18794
- absent_input_audio_behavior="absentInputAudioBehavior",
18795
- arib="arib",
18796
- arib_captions_pid="aribCaptionsPid",
18797
- arib_captions_pid_control="aribCaptionsPidControl",
18798
- audio_buffer_model="audioBufferModel",
18799
- audio_frames_per_pes=123,
18800
- audio_pids="audioPids",
18801
- audio_stream_type="audioStreamType",
18802
- bitrate=123,
18803
- buffer_model="bufferModel",
18804
- cc_descriptor="ccDescriptor",
18805
- dvb_nit_settings=medialive.CfnChannel.DvbNitSettingsProperty(
18806
- network_id=123,
18807
- network_name="networkName",
18808
- rep_interval=123
18809
- ),
18810
- dvb_sdt_settings=medialive.CfnChannel.DvbSdtSettingsProperty(
18811
- output_sdt="outputSdt",
18812
- rep_interval=123,
18813
- service_name="serviceName",
18814
- service_provider_name="serviceProviderName"
18815
- ),
18816
- dvb_sub_pids="dvbSubPids",
18817
- dvb_tdt_settings=medialive.CfnChannel.DvbTdtSettingsProperty(
18818
- rep_interval=123
18819
- ),
18820
- dvb_teletext_pid="dvbTeletextPid",
18821
- ebif="ebif",
18822
- ebp_audio_interval="ebpAudioInterval",
18823
- ebp_lookahead_ms=123,
18824
- ebp_placement="ebpPlacement",
18825
- ecm_pid="ecmPid",
18826
- es_rate_in_pes="esRateInPes",
18827
- etv_platform_pid="etvPlatformPid",
18828
- etv_signal_pid="etvSignalPid",
18829
- fragment_time=123,
18830
- klv="klv",
18831
- klv_data_pids="klvDataPids",
18832
- nielsen_id3_behavior="nielsenId3Behavior",
18833
- null_packet_bitrate=123,
18834
- pat_interval=123,
18835
- pcr_control="pcrControl",
18836
- pcr_period=123,
18837
- pcr_pid="pcrPid",
18838
- pmt_interval=123,
18839
- pmt_pid="pmtPid",
18840
- program_num=123,
18841
- rate_mode="rateMode",
18842
- scte27_pids="scte27Pids",
18843
- scte35_control="scte35Control",
18844
- scte35_pid="scte35Pid",
18845
- scte35_preroll_pullup_milliseconds=123,
18846
- segmentation_markers="segmentationMarkers",
18847
- segmentation_style="segmentationStyle",
18848
- segmentation_time=123,
18849
- timed_metadata_behavior="timedMetadataBehavior",
18850
- timed_metadata_pid="timedMetadataPid",
18851
- transport_stream_id=123,
18852
- video_pid="videoPid"
18853
- )
18854
- ),
18855
- destination=medialive.CfnChannel.OutputLocationRefProperty(
18856
- destination_ref_id="destinationRefId"
18857
- ),
18858
- encryption_type="encryptionType",
18859
- latency=123
18860
- ),
18861
- udp_output_settings=medialive.CfnChannel.UdpOutputSettingsProperty(
18862
- buffer_msec=123,
18863
- container_settings=medialive.CfnChannel.UdpContainerSettingsProperty(
18864
- m2_ts_settings=medialive.CfnChannel.M2tsSettingsProperty(
18865
- absent_input_audio_behavior="absentInputAudioBehavior",
18866
- arib="arib",
18867
- arib_captions_pid="aribCaptionsPid",
18868
- arib_captions_pid_control="aribCaptionsPidControl",
18869
- audio_buffer_model="audioBufferModel",
18870
- audio_frames_per_pes=123,
18871
- audio_pids="audioPids",
18872
- audio_stream_type="audioStreamType",
18873
- bitrate=123,
18874
- buffer_model="bufferModel",
18875
- cc_descriptor="ccDescriptor",
18876
- dvb_nit_settings=medialive.CfnChannel.DvbNitSettingsProperty(
18877
- network_id=123,
18878
- network_name="networkName",
18879
- rep_interval=123
18880
- ),
18881
- dvb_sdt_settings=medialive.CfnChannel.DvbSdtSettingsProperty(
18882
- output_sdt="outputSdt",
18883
- rep_interval=123,
18884
- service_name="serviceName",
18885
- service_provider_name="serviceProviderName"
18886
- ),
18887
- dvb_sub_pids="dvbSubPids",
18888
- dvb_tdt_settings=medialive.CfnChannel.DvbTdtSettingsProperty(
18889
- rep_interval=123
18890
- ),
18891
- dvb_teletext_pid="dvbTeletextPid",
18892
- ebif="ebif",
18893
- ebp_audio_interval="ebpAudioInterval",
18894
- ebp_lookahead_ms=123,
18895
- ebp_placement="ebpPlacement",
18896
- ecm_pid="ecmPid",
18897
- es_rate_in_pes="esRateInPes",
18898
- etv_platform_pid="etvPlatformPid",
18899
- etv_signal_pid="etvSignalPid",
18900
- fragment_time=123,
18901
- klv="klv",
18902
- klv_data_pids="klvDataPids",
18903
- nielsen_id3_behavior="nielsenId3Behavior",
18904
- null_packet_bitrate=123,
18905
- pat_interval=123,
18906
- pcr_control="pcrControl",
18907
- pcr_period=123,
18908
- pcr_pid="pcrPid",
18909
- pmt_interval=123,
18910
- pmt_pid="pmtPid",
18911
- program_num=123,
18912
- rate_mode="rateMode",
18913
- scte27_pids="scte27Pids",
18914
- scte35_control="scte35Control",
18915
- scte35_pid="scte35Pid",
18916
- scte35_preroll_pullup_milliseconds=123,
18917
- segmentation_markers="segmentationMarkers",
18918
- segmentation_style="segmentationStyle",
18919
- segmentation_time=123,
18920
- timed_metadata_behavior="timedMetadataBehavior",
18921
- timed_metadata_pid="timedMetadataPid",
18922
- transport_stream_id=123,
18923
- video_pid="videoPid"
18924
- )
18925
- ),
18926
- destination=medialive.CfnChannel.OutputLocationRefProperty(
18927
- destination_ref_id="destinationRefId"
18928
- ),
18929
- fec_output_settings=medialive.CfnChannel.FecOutputSettingsProperty(
18930
- column_depth=123,
18931
- include_fec="includeFec",
18932
- row_length=123
18933
- )
18934
- )
18935
- ),
18936
- video_description_name="videoDescriptionName"
18937
- )]
18938
- )
18939
18658
  '''
18940
18659
  if __debug__:
18941
18660
  type_hints = typing.get_type_hints(_typecheckingstub__5886afe17c469b30f6234f5b35aa1cb7d8baae50c424479126239a3238af2d52)
@@ -19062,6 +18781,10 @@ class CfnChannel(
19062
18781
  rollover_interval=123
19063
18782
  ),
19064
18783
  cmaf_ingest_group_settings=medialive.CfnChannel.CmafIngestGroupSettingsProperty(
18784
+ caption_language_mappings=[medialive.CfnChannel.CmafIngestCaptionLanguageMappingProperty(
18785
+ caption_channel=123,
18786
+ language_code="languageCode"
18787
+ )],
19065
18788
  destination=medialive.CfnChannel.OutputLocationRefProperty(
19066
18789
  destination_ref_id="destinationRefId"
19067
18790
  ),
@@ -19075,7 +18798,10 @@ class CfnChannel(
19075
18798
  scte35_type="scte35Type",
19076
18799
  segment_length=123,
19077
18800
  segment_length_units="segmentLengthUnits",
19078
- send_delay_ms=123
18801
+ send_delay_ms=123,
18802
+ timed_metadata_id3_frame="timedMetadataId3Frame",
18803
+ timed_metadata_id3_period=123,
18804
+ timed_metadata_passthrough="timedMetadataPassthrough"
19079
18805
  ),
19080
18806
  frame_capture_group_settings=medialive.CfnChannel.FrameCaptureGroupSettingsProperty(
19081
18807
  destination=medialive.CfnChannel.OutputLocationRefProperty(
@@ -22942,6 +22668,7 @@ class CfnChannel(
22942
22668
  video_codec_settings_property = medialive.CfnChannel.VideoCodecSettingsProperty(
22943
22669
  av1_settings=medialive.CfnChannel.Av1SettingsProperty(
22944
22670
  afd_signaling="afdSignaling",
22671
+ bitrate=123,
22945
22672
  buf_size=123,
22946
22673
  color_space_settings=medialive.CfnChannel.Av1ColorSpaceSettingsProperty(
22947
22674
  color_space_passthrough_settings=color_space_passthrough_settings,
@@ -22964,6 +22691,7 @@ class CfnChannel(
22964
22691
  par_denominator=123,
22965
22692
  par_numerator=123,
22966
22693
  qvbr_quality_level=123,
22694
+ rate_control_mode="rateControlMode",
22967
22695
  scene_change_detect="sceneChangeDetect",
22968
22696
  timecode_burnin_settings=medialive.CfnChannel.TimecodeBurninSettingsProperty(
22969
22697
  font_size="fontSize",
@@ -23272,6 +23000,7 @@ class CfnChannel(
23272
23000
  codec_settings=medialive.CfnChannel.VideoCodecSettingsProperty(
23273
23001
  av1_settings=medialive.CfnChannel.Av1SettingsProperty(
23274
23002
  afd_signaling="afdSignaling",
23003
+ bitrate=123,
23275
23004
  buf_size=123,
23276
23005
  color_space_settings=medialive.CfnChannel.Av1ColorSpaceSettingsProperty(
23277
23006
  color_space_passthrough_settings=color_space_passthrough_settings,
@@ -23294,6 +23023,7 @@ class CfnChannel(
23294
23023
  par_denominator=123,
23295
23024
  par_numerator=123,
23296
23025
  qvbr_quality_level=123,
23026
+ rate_control_mode="rateControlMode",
23297
23027
  scene_change_detect="sceneChangeDetect",
23298
23028
  timecode_burnin_settings=medialive.CfnChannel.TimecodeBurninSettingsProperty(
23299
23029
  font_size="fontSize",
@@ -27004,6 +26734,25 @@ class CfnInput(
27004
26734
  ),
27005
26735
  name="name",
27006
26736
  role_arn="roleArn",
26737
+ sdi_sources=["sdiSources"],
26738
+ smpte2110_receiver_group_settings=medialive.CfnInput.Smpte2110ReceiverGroupSettingsProperty(
26739
+ smpte2110_receiver_groups=[medialive.CfnInput.Smpte2110ReceiverGroupProperty(
26740
+ sdp_settings=medialive.CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty(
26741
+ ancillary_sdps=[medialive.CfnInput.InputSdpLocationProperty(
26742
+ media_index=123,
26743
+ sdp_url="sdpUrl"
26744
+ )],
26745
+ audio_sdps=[medialive.CfnInput.InputSdpLocationProperty(
26746
+ media_index=123,
26747
+ sdp_url="sdpUrl"
26748
+ )],
26749
+ video_sdp=medialive.CfnInput.InputSdpLocationProperty(
26750
+ media_index=123,
26751
+ sdp_url="sdpUrl"
26752
+ )
26753
+ )
26754
+ )]
26755
+ ),
27007
26756
  sources=[medialive.CfnInput.InputSourceRequestProperty(
27008
26757
  password_param="passwordParam",
27009
26758
  url="url",
@@ -27043,6 +26792,8 @@ class CfnInput(
27043
26792
  multicast_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnInput.MulticastSettingsCreateRequestProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
27044
26793
  name: typing.Optional[builtins.str] = None,
27045
26794
  role_arn: typing.Optional[builtins.str] = None,
26795
+ sdi_sources: typing.Optional[typing.Sequence[builtins.str]] = None,
26796
+ smpte2110_receiver_group_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnInput.Smpte2110ReceiverGroupSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
27046
26797
  sources: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnInput.InputSourceRequestProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
27047
26798
  srt_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnInput.SrtSettingsRequestProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
27048
26799
  tags: typing.Any = None,
@@ -27060,6 +26811,8 @@ class CfnInput(
27060
26811
  :param multicast_settings:
27061
26812
  :param name: A name for the input.
27062
26813
  :param role_arn: The IAM role for MediaLive to assume when creating a MediaConnect input or Amazon VPC input. This doesn't apply to other types of inputs. The role is identified by its ARN.
26814
+ :param sdi_sources:
26815
+ :param smpte2110_receiver_group_settings:
27063
26816
  :param sources: Settings that apply only if the input is a pull type of input.
27064
26817
  :param srt_settings:
27065
26818
  :param tags: A collection of tags for this input. Each tag is a key-value pair.
@@ -27079,6 +26832,8 @@ class CfnInput(
27079
26832
  multicast_settings=multicast_settings,
27080
26833
  name=name,
27081
26834
  role_arn=role_arn,
26835
+ sdi_sources=sdi_sources,
26836
+ smpte2110_receiver_group_settings=smpte2110_receiver_group_settings,
27082
26837
  sources=sources,
27083
26838
  srt_settings=srt_settings,
27084
26839
  tags=tags,
@@ -27296,6 +27051,35 @@ class CfnInput(
27296
27051
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
27297
27052
  jsii.set(self, "roleArn", value) # pyright: ignore[reportArgumentType]
27298
27053
 
27054
+ @builtins.property
27055
+ @jsii.member(jsii_name="sdiSources")
27056
+ def sdi_sources(self) -> typing.Optional[typing.List[builtins.str]]:
27057
+ return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "sdiSources"))
27058
+
27059
+ @sdi_sources.setter
27060
+ def sdi_sources(self, value: typing.Optional[typing.List[builtins.str]]) -> None:
27061
+ if __debug__:
27062
+ type_hints = typing.get_type_hints(_typecheckingstub__1fb1e9fa5957ae8cb739e464e86543b360ea8a6ba413563d753a60a5c585cb48)
27063
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
27064
+ jsii.set(self, "sdiSources", value) # pyright: ignore[reportArgumentType]
27065
+
27066
+ @builtins.property
27067
+ @jsii.member(jsii_name="smpte2110ReceiverGroupSettings")
27068
+ def smpte2110_receiver_group_settings(
27069
+ self,
27070
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnInput.Smpte2110ReceiverGroupSettingsProperty"]]:
27071
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnInput.Smpte2110ReceiverGroupSettingsProperty"]], jsii.get(self, "smpte2110ReceiverGroupSettings"))
27072
+
27073
+ @smpte2110_receiver_group_settings.setter
27074
+ def smpte2110_receiver_group_settings(
27075
+ self,
27076
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnInput.Smpte2110ReceiverGroupSettingsProperty"]],
27077
+ ) -> None:
27078
+ if __debug__:
27079
+ type_hints = typing.get_type_hints(_typecheckingstub__a9eb61e4c554ab79faf5508611b7e077c83491a6dad8b923d92479d86d72c6b2)
27080
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
27081
+ jsii.set(self, "smpte2110ReceiverGroupSettings", value) # pyright: ignore[reportArgumentType]
27082
+
27299
27083
  @builtins.property
27300
27084
  @jsii.member(jsii_name="sources")
27301
27085
  def sources(
@@ -27653,6 +27437,73 @@ class CfnInput(
27653
27437
  k + "=" + repr(v) for k, v in self._values.items()
27654
27438
  )
27655
27439
 
27440
+ @jsii.data_type(
27441
+ jsii_type="aws-cdk-lib.aws_medialive.CfnInput.InputSdpLocationProperty",
27442
+ jsii_struct_bases=[],
27443
+ name_mapping={"media_index": "mediaIndex", "sdp_url": "sdpUrl"},
27444
+ )
27445
+ class InputSdpLocationProperty:
27446
+ def __init__(
27447
+ self,
27448
+ *,
27449
+ media_index: typing.Optional[jsii.Number] = None,
27450
+ sdp_url: typing.Optional[builtins.str] = None,
27451
+ ) -> None:
27452
+ '''
27453
+ :param media_index:
27454
+ :param sdp_url:
27455
+
27456
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-inputsdplocation.html
27457
+ :exampleMetadata: fixture=_generated
27458
+
27459
+ Example::
27460
+
27461
+ # The code below shows an example of how to instantiate this type.
27462
+ # The values are placeholders you should change.
27463
+ from aws_cdk import aws_medialive as medialive
27464
+
27465
+ input_sdp_location_property = medialive.CfnInput.InputSdpLocationProperty(
27466
+ media_index=123,
27467
+ sdp_url="sdpUrl"
27468
+ )
27469
+ '''
27470
+ if __debug__:
27471
+ type_hints = typing.get_type_hints(_typecheckingstub__7c288b0e0d47532d1ba5eff4fe58e0aa4efcb647e6a7f872842ff84acd1c363d)
27472
+ check_type(argname="argument media_index", value=media_index, expected_type=type_hints["media_index"])
27473
+ check_type(argname="argument sdp_url", value=sdp_url, expected_type=type_hints["sdp_url"])
27474
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
27475
+ if media_index is not None:
27476
+ self._values["media_index"] = media_index
27477
+ if sdp_url is not None:
27478
+ self._values["sdp_url"] = sdp_url
27479
+
27480
+ @builtins.property
27481
+ def media_index(self) -> typing.Optional[jsii.Number]:
27482
+ '''
27483
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-inputsdplocation.html#cfn-medialive-input-inputsdplocation-mediaindex
27484
+ '''
27485
+ result = self._values.get("media_index")
27486
+ return typing.cast(typing.Optional[jsii.Number], result)
27487
+
27488
+ @builtins.property
27489
+ def sdp_url(self) -> typing.Optional[builtins.str]:
27490
+ '''
27491
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-inputsdplocation.html#cfn-medialive-input-inputsdplocation-sdpurl
27492
+ '''
27493
+ result = self._values.get("sdp_url")
27494
+ return typing.cast(typing.Optional[builtins.str], result)
27495
+
27496
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
27497
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
27498
+
27499
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
27500
+ return not (rhs == self)
27501
+
27502
+ def __repr__(self) -> str:
27503
+ return "InputSdpLocationProperty(%s)" % ", ".join(
27504
+ k + "=" + repr(v) for k, v in self._values.items()
27505
+ )
27506
+
27656
27507
  @jsii.data_type(
27657
27508
  jsii_type="aws-cdk-lib.aws_medialive.CfnInput.InputSourceRequestProperty",
27658
27509
  jsii_struct_bases=[],
@@ -28005,6 +27856,244 @@ class CfnInput(
28005
27856
  k + "=" + repr(v) for k, v in self._values.items()
28006
27857
  )
28007
27858
 
27859
+ @jsii.data_type(
27860
+ jsii_type="aws-cdk-lib.aws_medialive.CfnInput.Smpte2110ReceiverGroupProperty",
27861
+ jsii_struct_bases=[],
27862
+ name_mapping={"sdp_settings": "sdpSettings"},
27863
+ )
27864
+ class Smpte2110ReceiverGroupProperty:
27865
+ def __init__(
27866
+ self,
27867
+ *,
27868
+ sdp_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
27869
+ ) -> None:
27870
+ '''
27871
+ :param sdp_settings:
27872
+
27873
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroup.html
27874
+ :exampleMetadata: fixture=_generated
27875
+
27876
+ Example::
27877
+
27878
+ # The code below shows an example of how to instantiate this type.
27879
+ # The values are placeholders you should change.
27880
+ from aws_cdk import aws_medialive as medialive
27881
+
27882
+ smpte2110_receiver_group_property = medialive.CfnInput.Smpte2110ReceiverGroupProperty(
27883
+ sdp_settings=medialive.CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty(
27884
+ ancillary_sdps=[medialive.CfnInput.InputSdpLocationProperty(
27885
+ media_index=123,
27886
+ sdp_url="sdpUrl"
27887
+ )],
27888
+ audio_sdps=[medialive.CfnInput.InputSdpLocationProperty(
27889
+ media_index=123,
27890
+ sdp_url="sdpUrl"
27891
+ )],
27892
+ video_sdp=medialive.CfnInput.InputSdpLocationProperty(
27893
+ media_index=123,
27894
+ sdp_url="sdpUrl"
27895
+ )
27896
+ )
27897
+ )
27898
+ '''
27899
+ if __debug__:
27900
+ type_hints = typing.get_type_hints(_typecheckingstub__e439b3fe47808a945aa11d675bf7807e78bb6123c2ccf728b7f31a2f77ad12e3)
27901
+ check_type(argname="argument sdp_settings", value=sdp_settings, expected_type=type_hints["sdp_settings"])
27902
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
27903
+ if sdp_settings is not None:
27904
+ self._values["sdp_settings"] = sdp_settings
27905
+
27906
+ @builtins.property
27907
+ def sdp_settings(
27908
+ self,
27909
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty"]]:
27910
+ '''
27911
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroup.html#cfn-medialive-input-smpte2110receivergroup-sdpsettings
27912
+ '''
27913
+ result = self._values.get("sdp_settings")
27914
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty"]], result)
27915
+
27916
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
27917
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
27918
+
27919
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
27920
+ return not (rhs == self)
27921
+
27922
+ def __repr__(self) -> str:
27923
+ return "Smpte2110ReceiverGroupProperty(%s)" % ", ".join(
27924
+ k + "=" + repr(v) for k, v in self._values.items()
27925
+ )
27926
+
27927
+ @jsii.data_type(
27928
+ jsii_type="aws-cdk-lib.aws_medialive.CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty",
27929
+ jsii_struct_bases=[],
27930
+ name_mapping={
27931
+ "ancillary_sdps": "ancillarySdps",
27932
+ "audio_sdps": "audioSdps",
27933
+ "video_sdp": "videoSdp",
27934
+ },
27935
+ )
27936
+ class Smpte2110ReceiverGroupSdpSettingsProperty:
27937
+ def __init__(
27938
+ self,
27939
+ *,
27940
+ ancillary_sdps: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnInput.InputSdpLocationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
27941
+ audio_sdps: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnInput.InputSdpLocationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
27942
+ video_sdp: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnInput.InputSdpLocationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
27943
+ ) -> None:
27944
+ '''
27945
+ :param ancillary_sdps:
27946
+ :param audio_sdps:
27947
+ :param video_sdp:
27948
+
27949
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroupsdpsettings.html
27950
+ :exampleMetadata: fixture=_generated
27951
+
27952
+ Example::
27953
+
27954
+ # The code below shows an example of how to instantiate this type.
27955
+ # The values are placeholders you should change.
27956
+ from aws_cdk import aws_medialive as medialive
27957
+
27958
+ smpte2110_receiver_group_sdp_settings_property = medialive.CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty(
27959
+ ancillary_sdps=[medialive.CfnInput.InputSdpLocationProperty(
27960
+ media_index=123,
27961
+ sdp_url="sdpUrl"
27962
+ )],
27963
+ audio_sdps=[medialive.CfnInput.InputSdpLocationProperty(
27964
+ media_index=123,
27965
+ sdp_url="sdpUrl"
27966
+ )],
27967
+ video_sdp=medialive.CfnInput.InputSdpLocationProperty(
27968
+ media_index=123,
27969
+ sdp_url="sdpUrl"
27970
+ )
27971
+ )
27972
+ '''
27973
+ if __debug__:
27974
+ type_hints = typing.get_type_hints(_typecheckingstub__4388a095fa988861141a0787dadb3b1b80340f66e2bededcdbfa16340b26f7b6)
27975
+ check_type(argname="argument ancillary_sdps", value=ancillary_sdps, expected_type=type_hints["ancillary_sdps"])
27976
+ check_type(argname="argument audio_sdps", value=audio_sdps, expected_type=type_hints["audio_sdps"])
27977
+ check_type(argname="argument video_sdp", value=video_sdp, expected_type=type_hints["video_sdp"])
27978
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
27979
+ if ancillary_sdps is not None:
27980
+ self._values["ancillary_sdps"] = ancillary_sdps
27981
+ if audio_sdps is not None:
27982
+ self._values["audio_sdps"] = audio_sdps
27983
+ if video_sdp is not None:
27984
+ self._values["video_sdp"] = video_sdp
27985
+
27986
+ @builtins.property
27987
+ def ancillary_sdps(
27988
+ self,
27989
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnInput.InputSdpLocationProperty"]]]]:
27990
+ '''
27991
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroupsdpsettings.html#cfn-medialive-input-smpte2110receivergroupsdpsettings-ancillarysdps
27992
+ '''
27993
+ result = self._values.get("ancillary_sdps")
27994
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnInput.InputSdpLocationProperty"]]]], result)
27995
+
27996
+ @builtins.property
27997
+ def audio_sdps(
27998
+ self,
27999
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnInput.InputSdpLocationProperty"]]]]:
28000
+ '''
28001
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroupsdpsettings.html#cfn-medialive-input-smpte2110receivergroupsdpsettings-audiosdps
28002
+ '''
28003
+ result = self._values.get("audio_sdps")
28004
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnInput.InputSdpLocationProperty"]]]], result)
28005
+
28006
+ @builtins.property
28007
+ def video_sdp(
28008
+ self,
28009
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnInput.InputSdpLocationProperty"]]:
28010
+ '''
28011
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroupsdpsettings.html#cfn-medialive-input-smpte2110receivergroupsdpsettings-videosdp
28012
+ '''
28013
+ result = self._values.get("video_sdp")
28014
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnInput.InputSdpLocationProperty"]], result)
28015
+
28016
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
28017
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
28018
+
28019
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
28020
+ return not (rhs == self)
28021
+
28022
+ def __repr__(self) -> str:
28023
+ return "Smpte2110ReceiverGroupSdpSettingsProperty(%s)" % ", ".join(
28024
+ k + "=" + repr(v) for k, v in self._values.items()
28025
+ )
28026
+
28027
+ @jsii.data_type(
28028
+ jsii_type="aws-cdk-lib.aws_medialive.CfnInput.Smpte2110ReceiverGroupSettingsProperty",
28029
+ jsii_struct_bases=[],
28030
+ name_mapping={"smpte2110_receiver_groups": "smpte2110ReceiverGroups"},
28031
+ )
28032
+ class Smpte2110ReceiverGroupSettingsProperty:
28033
+ def __init__(
28034
+ self,
28035
+ *,
28036
+ smpte2110_receiver_groups: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnInput.Smpte2110ReceiverGroupProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
28037
+ ) -> None:
28038
+ '''
28039
+ :param smpte2110_receiver_groups:
28040
+
28041
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroupsettings.html
28042
+ :exampleMetadata: fixture=_generated
28043
+
28044
+ Example::
28045
+
28046
+ # The code below shows an example of how to instantiate this type.
28047
+ # The values are placeholders you should change.
28048
+ from aws_cdk import aws_medialive as medialive
28049
+
28050
+ smpte2110_receiver_group_settings_property = medialive.CfnInput.Smpte2110ReceiverGroupSettingsProperty(
28051
+ smpte2110_receiver_groups=[medialive.CfnInput.Smpte2110ReceiverGroupProperty(
28052
+ sdp_settings=medialive.CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty(
28053
+ ancillary_sdps=[medialive.CfnInput.InputSdpLocationProperty(
28054
+ media_index=123,
28055
+ sdp_url="sdpUrl"
28056
+ )],
28057
+ audio_sdps=[medialive.CfnInput.InputSdpLocationProperty(
28058
+ media_index=123,
28059
+ sdp_url="sdpUrl"
28060
+ )],
28061
+ video_sdp=medialive.CfnInput.InputSdpLocationProperty(
28062
+ media_index=123,
28063
+ sdp_url="sdpUrl"
28064
+ )
28065
+ )
28066
+ )]
28067
+ )
28068
+ '''
28069
+ if __debug__:
28070
+ type_hints = typing.get_type_hints(_typecheckingstub__31f03c59761e524f0860a26124a21afd2f82c451d36ef99701df2a4b11c6705e)
28071
+ check_type(argname="argument smpte2110_receiver_groups", value=smpte2110_receiver_groups, expected_type=type_hints["smpte2110_receiver_groups"])
28072
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
28073
+ if smpte2110_receiver_groups is not None:
28074
+ self._values["smpte2110_receiver_groups"] = smpte2110_receiver_groups
28075
+
28076
+ @builtins.property
28077
+ def smpte2110_receiver_groups(
28078
+ self,
28079
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnInput.Smpte2110ReceiverGroupProperty"]]]]:
28080
+ '''
28081
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroupsettings.html#cfn-medialive-input-smpte2110receivergroupsettings-smpte2110receivergroups
28082
+ '''
28083
+ result = self._values.get("smpte2110_receiver_groups")
28084
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnInput.Smpte2110ReceiverGroupProperty"]]]], result)
28085
+
28086
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
28087
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
28088
+
28089
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
28090
+ return not (rhs == self)
28091
+
28092
+ def __repr__(self) -> str:
28093
+ return "Smpte2110ReceiverGroupSettingsProperty(%s)" % ", ".join(
28094
+ k + "=" + repr(v) for k, v in self._values.items()
28095
+ )
28096
+
28008
28097
  @jsii.data_type(
28009
28098
  jsii_type="aws-cdk-lib.aws_medialive.CfnInput.SrtCallerDecryptionRequestProperty",
28010
28099
  jsii_struct_bases=[],
@@ -28272,6 +28361,8 @@ class CfnInput(
28272
28361
  "multicast_settings": "multicastSettings",
28273
28362
  "name": "name",
28274
28363
  "role_arn": "roleArn",
28364
+ "sdi_sources": "sdiSources",
28365
+ "smpte2110_receiver_group_settings": "smpte2110ReceiverGroupSettings",
28275
28366
  "sources": "sources",
28276
28367
  "srt_settings": "srtSettings",
28277
28368
  "tags": "tags",
@@ -28291,6 +28382,8 @@ class CfnInputProps:
28291
28382
  multicast_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.MulticastSettingsCreateRequestProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
28292
28383
  name: typing.Optional[builtins.str] = None,
28293
28384
  role_arn: typing.Optional[builtins.str] = None,
28385
+ sdi_sources: typing.Optional[typing.Sequence[builtins.str]] = None,
28386
+ smpte2110_receiver_group_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.Smpte2110ReceiverGroupSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
28294
28387
  sources: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.InputSourceRequestProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
28295
28388
  srt_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.SrtSettingsRequestProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
28296
28389
  tags: typing.Any = None,
@@ -28307,6 +28400,8 @@ class CfnInputProps:
28307
28400
  :param multicast_settings:
28308
28401
  :param name: A name for the input.
28309
28402
  :param role_arn: The IAM role for MediaLive to assume when creating a MediaConnect input or Amazon VPC input. This doesn't apply to other types of inputs. The role is identified by its ARN.
28403
+ :param sdi_sources:
28404
+ :param smpte2110_receiver_group_settings:
28310
28405
  :param sources: Settings that apply only if the input is a pull type of input.
28311
28406
  :param srt_settings:
28312
28407
  :param tags: A collection of tags for this input. Each tag is a key-value pair.
@@ -28350,6 +28445,25 @@ class CfnInputProps:
28350
28445
  ),
28351
28446
  name="name",
28352
28447
  role_arn="roleArn",
28448
+ sdi_sources=["sdiSources"],
28449
+ smpte2110_receiver_group_settings=medialive.CfnInput.Smpte2110ReceiverGroupSettingsProperty(
28450
+ smpte2110_receiver_groups=[medialive.CfnInput.Smpte2110ReceiverGroupProperty(
28451
+ sdp_settings=medialive.CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty(
28452
+ ancillary_sdps=[medialive.CfnInput.InputSdpLocationProperty(
28453
+ media_index=123,
28454
+ sdp_url="sdpUrl"
28455
+ )],
28456
+ audio_sdps=[medialive.CfnInput.InputSdpLocationProperty(
28457
+ media_index=123,
28458
+ sdp_url="sdpUrl"
28459
+ )],
28460
+ video_sdp=medialive.CfnInput.InputSdpLocationProperty(
28461
+ media_index=123,
28462
+ sdp_url="sdpUrl"
28463
+ )
28464
+ )
28465
+ )]
28466
+ ),
28353
28467
  sources=[medialive.CfnInput.InputSourceRequestProperty(
28354
28468
  password_param="passwordParam",
28355
28469
  url="url",
@@ -28385,6 +28499,8 @@ class CfnInputProps:
28385
28499
  check_type(argname="argument multicast_settings", value=multicast_settings, expected_type=type_hints["multicast_settings"])
28386
28500
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
28387
28501
  check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
28502
+ check_type(argname="argument sdi_sources", value=sdi_sources, expected_type=type_hints["sdi_sources"])
28503
+ check_type(argname="argument smpte2110_receiver_group_settings", value=smpte2110_receiver_group_settings, expected_type=type_hints["smpte2110_receiver_group_settings"])
28388
28504
  check_type(argname="argument sources", value=sources, expected_type=type_hints["sources"])
28389
28505
  check_type(argname="argument srt_settings", value=srt_settings, expected_type=type_hints["srt_settings"])
28390
28506
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
@@ -28407,6 +28523,10 @@ class CfnInputProps:
28407
28523
  self._values["name"] = name
28408
28524
  if role_arn is not None:
28409
28525
  self._values["role_arn"] = role_arn
28526
+ if sdi_sources is not None:
28527
+ self._values["sdi_sources"] = sdi_sources
28528
+ if smpte2110_receiver_group_settings is not None:
28529
+ self._values["smpte2110_receiver_group_settings"] = smpte2110_receiver_group_settings
28410
28530
  if sources is not None:
28411
28531
  self._values["sources"] = sources
28412
28532
  if srt_settings is not None:
@@ -28498,6 +28618,24 @@ class CfnInputProps:
28498
28618
  result = self._values.get("role_arn")
28499
28619
  return typing.cast(typing.Optional[builtins.str], result)
28500
28620
 
28621
+ @builtins.property
28622
+ def sdi_sources(self) -> typing.Optional[typing.List[builtins.str]]:
28623
+ '''
28624
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-sdisources
28625
+ '''
28626
+ result = self._values.get("sdi_sources")
28627
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
28628
+
28629
+ @builtins.property
28630
+ def smpte2110_receiver_group_settings(
28631
+ self,
28632
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnInput.Smpte2110ReceiverGroupSettingsProperty]]:
28633
+ '''
28634
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html#cfn-medialive-input-smpte2110receivergroupsettings
28635
+ '''
28636
+ result = self._values.get("smpte2110_receiver_group_settings")
28637
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnInput.Smpte2110ReceiverGroupSettingsProperty]], result)
28638
+
28501
28639
  @builtins.property
28502
28640
  def sources(
28503
28641
  self,
@@ -32555,6 +32693,7 @@ def _typecheckingstub__fc0689af3b0f6f7131d0da1e3e64aeee57f565115f0a26ac370f2cf08
32555
32693
  def _typecheckingstub__1911156090a37730cd16cc0d13076f448f8b192dca9427883cf77e884bbd03df(
32556
32694
  *,
32557
32695
  afd_signaling: typing.Optional[builtins.str] = None,
32696
+ bitrate: typing.Optional[jsii.Number] = None,
32558
32697
  buf_size: typing.Optional[jsii.Number] = None,
32559
32698
  color_space_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.Av1ColorSpaceSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
32560
32699
  fixed_afd: typing.Optional[builtins.str] = None,
@@ -32569,6 +32708,7 @@ def _typecheckingstub__1911156090a37730cd16cc0d13076f448f8b192dca9427883cf77e884
32569
32708
  par_denominator: typing.Optional[jsii.Number] = None,
32570
32709
  par_numerator: typing.Optional[jsii.Number] = None,
32571
32710
  qvbr_quality_level: typing.Optional[jsii.Number] = None,
32711
+ rate_control_mode: typing.Optional[builtins.str] = None,
32572
32712
  scene_change_detect: typing.Optional[builtins.str] = None,
32573
32713
  timecode_burnin_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.TimecodeBurninSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
32574
32714
  ) -> None:
@@ -32730,8 +32870,17 @@ def _typecheckingstub__1acb57d78941338570e4ab6b01c7608491671cdcdadde928b8f48a7eb
32730
32870
  """Type checking stubs"""
32731
32871
  pass
32732
32872
 
32873
+ def _typecheckingstub__a833a02632a589afb5026143cbf8803b2228e0f422ab4c5a2dbf59314b9e157b(
32874
+ *,
32875
+ caption_channel: typing.Optional[jsii.Number] = None,
32876
+ language_code: typing.Optional[builtins.str] = None,
32877
+ ) -> None:
32878
+ """Type checking stubs"""
32879
+ pass
32880
+
32733
32881
  def _typecheckingstub__6fe9142b6885e8776c3e51af0733250a73fcd8e45bb4ec5f866206680352c7eb(
32734
32882
  *,
32883
+ caption_language_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.CmafIngestCaptionLanguageMappingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
32735
32884
  destination: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.OutputLocationRefProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
32736
32885
  id3_behavior: typing.Optional[builtins.str] = None,
32737
32886
  id3_name_modifier: typing.Optional[builtins.str] = None,
@@ -32744,6 +32893,9 @@ def _typecheckingstub__6fe9142b6885e8776c3e51af0733250a73fcd8e45bb4ec5f866206680
32744
32893
  segment_length: typing.Optional[jsii.Number] = None,
32745
32894
  segment_length_units: typing.Optional[builtins.str] = None,
32746
32895
  send_delay_ms: typing.Optional[jsii.Number] = None,
32896
+ timed_metadata_id3_frame: typing.Optional[builtins.str] = None,
32897
+ timed_metadata_id3_period: typing.Optional[jsii.Number] = None,
32898
+ timed_metadata_passthrough: typing.Optional[builtins.str] = None,
32747
32899
  ) -> None:
32748
32900
  """Type checking stubs"""
32749
32901
  pass
@@ -32870,6 +33022,8 @@ def _typecheckingstub__30da58edd55c00e12f81eb8c75da493d94499c43fc797241342b62224
32870
33022
  def _typecheckingstub__23559d0249cfbe262bfbd93ab48605fd9c25886b289f89b7e6b86a893ae4c78b(
32871
33023
  *,
32872
33024
  copyright_holder: typing.Optional[builtins.str] = None,
33025
+ default_font_size: typing.Optional[jsii.Number] = None,
33026
+ default_line_height: typing.Optional[jsii.Number] = None,
32873
33027
  fill_line_gap: typing.Optional[builtins.str] = None,
32874
33028
  font_family: typing.Optional[builtins.str] = None,
32875
33029
  style_control: typing.Optional[builtins.str] = None,
@@ -33675,6 +33829,7 @@ def _typecheckingstub__9e5624fe566342243b7ed3e5c7b82883302c5f225edc78912ef46db75
33675
33829
  def _typecheckingstub__d1c3f4cbc44fec2f5cf6dcc1097499d83d328f8fd1f15b8dd6ce6bc45153265a(
33676
33830
  *,
33677
33831
  id: typing.Optional[builtins.str] = None,
33832
+ logical_interface_names: typing.Optional[typing.Sequence[builtins.str]] = None,
33678
33833
  media_package_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.MediaPackageOutputDestinationSettingsProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
33679
33834
  multiplex_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.MultiplexProgramChannelDestinationSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
33680
33835
  settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.OutputDestinationSettingsProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
@@ -34523,6 +34678,8 @@ def _typecheckingstub__c37c21db5712f0e670f3144efc99d8c9ed0a67af3bc5d9018df305c7e
34523
34678
  multicast_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.MulticastSettingsCreateRequestProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
34524
34679
  name: typing.Optional[builtins.str] = None,
34525
34680
  role_arn: typing.Optional[builtins.str] = None,
34681
+ sdi_sources: typing.Optional[typing.Sequence[builtins.str]] = None,
34682
+ smpte2110_receiver_group_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.Smpte2110ReceiverGroupSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
34526
34683
  sources: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.InputSourceRequestProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
34527
34684
  srt_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.SrtSettingsRequestProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
34528
34685
  tags: typing.Any = None,
@@ -34592,6 +34749,18 @@ def _typecheckingstub__f27fc34cd2daae9bc688d197b2f17a9be9a91d5deaae844af5f1dc9c7
34592
34749
  """Type checking stubs"""
34593
34750
  pass
34594
34751
 
34752
+ def _typecheckingstub__1fb1e9fa5957ae8cb739e464e86543b360ea8a6ba413563d753a60a5c585cb48(
34753
+ value: typing.Optional[typing.List[builtins.str]],
34754
+ ) -> None:
34755
+ """Type checking stubs"""
34756
+ pass
34757
+
34758
+ def _typecheckingstub__a9eb61e4c554ab79faf5508611b7e077c83491a6dad8b923d92479d86d72c6b2(
34759
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnInput.Smpte2110ReceiverGroupSettingsProperty]],
34760
+ ) -> None:
34761
+ """Type checking stubs"""
34762
+ pass
34763
+
34595
34764
  def _typecheckingstub__1e2140b67b560eb9a66e34c68eb67fd4ee61037201bd2a5b844eaf6d2bcb509a(
34596
34765
  value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnInput.InputSourceRequestProperty]]]],
34597
34766
  ) -> None:
@@ -34654,6 +34823,14 @@ def _typecheckingstub__49a42f86677548150b6c05cd2ecf15371954f68c82ca5c8b29dc88bf5
34654
34823
  """Type checking stubs"""
34655
34824
  pass
34656
34825
 
34826
+ def _typecheckingstub__7c288b0e0d47532d1ba5eff4fe58e0aa4efcb647e6a7f872842ff84acd1c363d(
34827
+ *,
34828
+ media_index: typing.Optional[jsii.Number] = None,
34829
+ sdp_url: typing.Optional[builtins.str] = None,
34830
+ ) -> None:
34831
+ """Type checking stubs"""
34832
+ pass
34833
+
34657
34834
  def _typecheckingstub__a2b96e38bc252de912c2488457298c14577ee26d5734b6d9575fbe71a0f4f654(
34658
34835
  *,
34659
34836
  password_param: typing.Optional[builtins.str] = None,
@@ -34693,6 +34870,29 @@ def _typecheckingstub__2e6df72893ce7d89a6f92d69d9db55440192c737e450948d86a7e6e63
34693
34870
  """Type checking stubs"""
34694
34871
  pass
34695
34872
 
34873
+ def _typecheckingstub__e439b3fe47808a945aa11d675bf7807e78bb6123c2ccf728b7f31a2f77ad12e3(
34874
+ *,
34875
+ sdp_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
34876
+ ) -> None:
34877
+ """Type checking stubs"""
34878
+ pass
34879
+
34880
+ def _typecheckingstub__4388a095fa988861141a0787dadb3b1b80340f66e2bededcdbfa16340b26f7b6(
34881
+ *,
34882
+ ancillary_sdps: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.InputSdpLocationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
34883
+ audio_sdps: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.InputSdpLocationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
34884
+ video_sdp: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.InputSdpLocationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
34885
+ ) -> None:
34886
+ """Type checking stubs"""
34887
+ pass
34888
+
34889
+ def _typecheckingstub__31f03c59761e524f0860a26124a21afd2f82c451d36ef99701df2a4b11c6705e(
34890
+ *,
34891
+ smpte2110_receiver_groups: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.Smpte2110ReceiverGroupProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
34892
+ ) -> None:
34893
+ """Type checking stubs"""
34894
+ pass
34895
+
34696
34896
  def _typecheckingstub__a48539048d4094feb1f4e829c3ed788b34316d1a6c3bdbe1afc101e5c521ba86(
34697
34897
  *,
34698
34898
  algorithm: typing.Optional[builtins.str] = None,
@@ -34729,6 +34929,8 @@ def _typecheckingstub__f5e4e9b50624e42353cf086c51b3b7174a3d994bf1dc422fe68231305
34729
34929
  multicast_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.MulticastSettingsCreateRequestProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
34730
34930
  name: typing.Optional[builtins.str] = None,
34731
34931
  role_arn: typing.Optional[builtins.str] = None,
34932
+ sdi_sources: typing.Optional[typing.Sequence[builtins.str]] = None,
34933
+ smpte2110_receiver_group_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.Smpte2110ReceiverGroupSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
34732
34934
  sources: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.InputSourceRequestProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
34733
34935
  srt_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnInput.SrtSettingsRequestProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
34734
34936
  tags: typing.Any = None,