aws-cdk-lib 2.193.0__py3-none-any.whl → 2.195.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (54) hide show
  1. aws_cdk/__init__.py +2 -0
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.193.0.jsii.tgz → aws-cdk-lib@2.195.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +63 -2
  5. aws_cdk/aws_aps/__init__.py +34 -22
  6. aws_cdk/aws_autoscaling/__init__.py +8 -0
  7. aws_cdk/aws_batch/__init__.py +2 -2
  8. aws_cdk/aws_bedrock/__init__.py +587 -8
  9. aws_cdk/aws_ce/__init__.py +34 -22
  10. aws_cdk/aws_cloudfront/__init__.py +6090 -3972
  11. aws_cdk/aws_codebuild/__init__.py +19 -10
  12. aws_cdk/aws_codepipeline/__init__.py +108 -0
  13. aws_cdk/aws_cognito/__init__.py +132 -6
  14. aws_cdk/aws_datazone/__init__.py +370 -0
  15. aws_cdk/aws_dlm/__init__.py +2 -2
  16. aws_cdk/aws_dsql/__init__.py +9 -0
  17. aws_cdk/aws_dynamodb/__init__.py +5 -3
  18. aws_cdk/aws_ec2/__init__.py +138 -11
  19. aws_cdk/aws_ecr/__init__.py +419 -0
  20. aws_cdk/aws_ecs/__init__.py +22 -25
  21. aws_cdk/aws_entityresolution/__init__.py +7 -2
  22. aws_cdk/aws_events/__init__.py +41 -8
  23. aws_cdk/aws_fsx/__init__.py +2 -3
  24. aws_cdk/aws_imagebuilder/__init__.py +160 -10
  25. aws_cdk/aws_kinesisanalytics/__init__.py +4 -2
  26. aws_cdk/aws_kinesisanalyticsv2/__init__.py +4 -2
  27. aws_cdk/aws_lambda/__init__.py +1 -1
  28. aws_cdk/aws_medialive/__init__.py +4 -6
  29. aws_cdk/aws_mediapackagev2/__init__.py +50 -6
  30. aws_cdk/aws_mediatailor/__init__.py +115 -0
  31. aws_cdk/aws_memorydb/__init__.py +21 -11
  32. aws_cdk/aws_oam/__init__.py +43 -10
  33. aws_cdk/aws_omics/__init__.py +5 -5
  34. aws_cdk/aws_opensearchservice/__init__.py +6 -0
  35. aws_cdk/aws_quicksight/__init__.py +1 -1
  36. aws_cdk/aws_rds/__init__.py +87 -8
  37. aws_cdk/aws_redshiftserverless/__init__.py +20 -0
  38. aws_cdk/aws_route53/__init__.py +18 -14
  39. aws_cdk/aws_route53_targets/__init__.py +62 -1
  40. aws_cdk/aws_route53profiles/__init__.py +1 -1
  41. aws_cdk/aws_route53resolver/__init__.py +41 -0
  42. aws_cdk/aws_s3/__init__.py +2 -4
  43. aws_cdk/aws_s3_notifications/__init__.py +5 -5
  44. aws_cdk/aws_sagemaker/__init__.py +255 -8
  45. aws_cdk/aws_ssmguiconnect/__init__.py +544 -0
  46. aws_cdk/aws_vpclattice/__init__.py +6 -2
  47. aws_cdk/aws_wisdom/__init__.py +25 -6
  48. aws_cdk/cloud_assembly_schema/__init__.py +7 -1
  49. {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/METADATA +2 -2
  50. {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/RECORD +54 -53
  51. {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/LICENSE +0 -0
  52. {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/NOTICE +0 -0
  53. {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/WHEEL +0 -0
  54. {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/top_level.txt +0 -0
@@ -1685,6 +1685,9 @@ class CfnPlaybackConfiguration(
1685
1685
  video_content_source_url="videoContentSourceUrl",
1686
1686
 
1687
1687
  # the properties below are optional
1688
+ ad_conditioning_configuration=mediatailor.CfnPlaybackConfiguration.AdConditioningConfigurationProperty(
1689
+ streaming_media_file_conditioning="streamingMediaFileConditioning"
1690
+ ),
1688
1691
  avail_suppression=mediatailor.CfnPlaybackConfiguration.AvailSuppressionProperty(
1689
1692
  fill_policy="fillPolicy",
1690
1693
  mode="mode",
@@ -1736,6 +1739,7 @@ class CfnPlaybackConfiguration(
1736
1739
  ad_decision_server_url: builtins.str,
1737
1740
  name: builtins.str,
1738
1741
  video_content_source_url: builtins.str,
1742
+ ad_conditioning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.AdConditioningConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1739
1743
  avail_suppression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.AvailSuppressionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1740
1744
  bumper: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.BumperProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1741
1745
  cdn_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.CdnConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
@@ -1755,6 +1759,7 @@ class CfnPlaybackConfiguration(
1755
1759
  :param ad_decision_server_url: The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.
1756
1760
  :param name: The identifier for the playback configuration.
1757
1761
  :param video_content_source_url: The URL prefix for the parent manifest for the stream, minus the asset ID. The maximum length is 512 characters.
1762
+ :param ad_conditioning_configuration: The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns, and what priority MediaTailor uses when inserting ads.
1758
1763
  :param avail_suppression: The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see `Ad Suppression <https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html>`_ .
1759
1764
  :param bumper: The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see `Bumpers <https://docs.aws.amazon.com/mediatailor/latest/ug/bumpers.html>`_ .
1760
1765
  :param cdn_configuration: The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.
@@ -1776,6 +1781,7 @@ class CfnPlaybackConfiguration(
1776
1781
  ad_decision_server_url=ad_decision_server_url,
1777
1782
  name=name,
1778
1783
  video_content_source_url=video_content_source_url,
1784
+ ad_conditioning_configuration=ad_conditioning_configuration,
1779
1785
  avail_suppression=avail_suppression,
1780
1786
  bumper=bumper,
1781
1787
  cdn_configuration=cdn_configuration,
@@ -1923,6 +1929,24 @@ class CfnPlaybackConfiguration(
1923
1929
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1924
1930
  jsii.set(self, "videoContentSourceUrl", value) # pyright: ignore[reportArgumentType]
1925
1931
 
1932
+ @builtins.property
1933
+ @jsii.member(jsii_name="adConditioningConfiguration")
1934
+ def ad_conditioning_configuration(
1935
+ self,
1936
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPlaybackConfiguration.AdConditioningConfigurationProperty"]]:
1937
+ '''The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns, and what priority MediaTailor uses when inserting ads.'''
1938
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPlaybackConfiguration.AdConditioningConfigurationProperty"]], jsii.get(self, "adConditioningConfiguration"))
1939
+
1940
+ @ad_conditioning_configuration.setter
1941
+ def ad_conditioning_configuration(
1942
+ self,
1943
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPlaybackConfiguration.AdConditioningConfigurationProperty"]],
1944
+ ) -> None:
1945
+ if __debug__:
1946
+ type_hints = typing.get_type_hints(_typecheckingstub__bb81abb7826e9e9444261d39e06ed23acbaea73a559203da5ca788273a1bbc94)
1947
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1948
+ jsii.set(self, "adConditioningConfiguration", value) # pyright: ignore[reportArgumentType]
1949
+
1926
1950
  @builtins.property
1927
1951
  @jsii.member(jsii_name="availSuppression")
1928
1952
  def avail_suppression(
@@ -2122,6 +2146,62 @@ class CfnPlaybackConfiguration(
2122
2146
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2123
2147
  jsii.set(self, "transcodeProfileName", value) # pyright: ignore[reportArgumentType]
2124
2148
 
2149
+ @jsii.data_type(
2150
+ jsii_type="aws-cdk-lib.aws_mediatailor.CfnPlaybackConfiguration.AdConditioningConfigurationProperty",
2151
+ jsii_struct_bases=[],
2152
+ name_mapping={
2153
+ "streaming_media_file_conditioning": "streamingMediaFileConditioning",
2154
+ },
2155
+ )
2156
+ class AdConditioningConfigurationProperty:
2157
+ def __init__(self, *, streaming_media_file_conditioning: builtins.str) -> None:
2158
+ '''The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns.
2159
+
2160
+ :param streaming_media_file_conditioning: For ads that have media files with streaming delivery and supported file extensions, indicates what transcoding action MediaTailor takes when it first receives these ads from the ADS. ``TRANSCODE`` indicates that MediaTailor must transcode the ads. ``NONE`` indicates that you have already transcoded the ads outside of MediaTailor and don't need them transcoded as part of the ad insertion workflow. For more information about ad conditioning see `Using preconditioned ads <https://docs.aws.amazon.com/mediatailor/latest/ug/precondition-ads.html>`_ in the AWS Elemental MediaTailor user guide.
2161
+
2162
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-adconditioningconfiguration.html
2163
+ :exampleMetadata: fixture=_generated
2164
+
2165
+ Example::
2166
+
2167
+ # The code below shows an example of how to instantiate this type.
2168
+ # The values are placeholders you should change.
2169
+ from aws_cdk import aws_mediatailor as mediatailor
2170
+
2171
+ ad_conditioning_configuration_property = mediatailor.CfnPlaybackConfiguration.AdConditioningConfigurationProperty(
2172
+ streaming_media_file_conditioning="streamingMediaFileConditioning"
2173
+ )
2174
+ '''
2175
+ if __debug__:
2176
+ type_hints = typing.get_type_hints(_typecheckingstub__86f7802737ba8294b0aa8d203c7f9bc7ff38b98bf17f1f9066c772b203c711ea)
2177
+ check_type(argname="argument streaming_media_file_conditioning", value=streaming_media_file_conditioning, expected_type=type_hints["streaming_media_file_conditioning"])
2178
+ self._values: typing.Dict[builtins.str, typing.Any] = {
2179
+ "streaming_media_file_conditioning": streaming_media_file_conditioning,
2180
+ }
2181
+
2182
+ @builtins.property
2183
+ def streaming_media_file_conditioning(self) -> builtins.str:
2184
+ '''For ads that have media files with streaming delivery and supported file extensions, indicates what transcoding action MediaTailor takes when it first receives these ads from the ADS.
2185
+
2186
+ ``TRANSCODE`` indicates that MediaTailor must transcode the ads. ``NONE`` indicates that you have already transcoded the ads outside of MediaTailor and don't need them transcoded as part of the ad insertion workflow. For more information about ad conditioning see `Using preconditioned ads <https://docs.aws.amazon.com/mediatailor/latest/ug/precondition-ads.html>`_ in the AWS Elemental MediaTailor user guide.
2187
+
2188
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-adconditioningconfiguration.html#cfn-mediatailor-playbackconfiguration-adconditioningconfiguration-streamingmediafileconditioning
2189
+ '''
2190
+ result = self._values.get("streaming_media_file_conditioning")
2191
+ assert result is not None, "Required property 'streaming_media_file_conditioning' is missing"
2192
+ return typing.cast(builtins.str, result)
2193
+
2194
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2195
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2196
+
2197
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2198
+ return not (rhs == self)
2199
+
2200
+ def __repr__(self) -> str:
2201
+ return "AdConditioningConfigurationProperty(%s)" % ", ".join(
2202
+ k + "=" + repr(v) for k, v in self._values.items()
2203
+ )
2204
+
2125
2205
  @jsii.data_type(
2126
2206
  jsii_type="aws-cdk-lib.aws_mediatailor.CfnPlaybackConfiguration.AdMarkerPassthroughProperty",
2127
2207
  jsii_struct_bases=[],
@@ -2723,6 +2803,7 @@ class CfnPlaybackConfiguration(
2723
2803
  "ad_decision_server_url": "adDecisionServerUrl",
2724
2804
  "name": "name",
2725
2805
  "video_content_source_url": "videoContentSourceUrl",
2806
+ "ad_conditioning_configuration": "adConditioningConfiguration",
2726
2807
  "avail_suppression": "availSuppression",
2727
2808
  "bumper": "bumper",
2728
2809
  "cdn_configuration": "cdnConfiguration",
@@ -2744,6 +2825,7 @@ class CfnPlaybackConfigurationProps:
2744
2825
  ad_decision_server_url: builtins.str,
2745
2826
  name: builtins.str,
2746
2827
  video_content_source_url: builtins.str,
2828
+ ad_conditioning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AdConditioningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
2747
2829
  avail_suppression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AvailSuppressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
2748
2830
  bumper: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.BumperProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
2749
2831
  cdn_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.CdnConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
@@ -2762,6 +2844,7 @@ class CfnPlaybackConfigurationProps:
2762
2844
  :param ad_decision_server_url: The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.
2763
2845
  :param name: The identifier for the playback configuration.
2764
2846
  :param video_content_source_url: The URL prefix for the parent manifest for the stream, minus the asset ID. The maximum length is 512 characters.
2847
+ :param ad_conditioning_configuration: The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns, and what priority MediaTailor uses when inserting ads.
2765
2848
  :param avail_suppression: The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see `Ad Suppression <https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html>`_ .
2766
2849
  :param bumper: The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see `Bumpers <https://docs.aws.amazon.com/mediatailor/latest/ug/bumpers.html>`_ .
2767
2850
  :param cdn_configuration: The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.
@@ -2792,6 +2875,9 @@ class CfnPlaybackConfigurationProps:
2792
2875
  video_content_source_url="videoContentSourceUrl",
2793
2876
 
2794
2877
  # the properties below are optional
2878
+ ad_conditioning_configuration=mediatailor.CfnPlaybackConfiguration.AdConditioningConfigurationProperty(
2879
+ streaming_media_file_conditioning="streamingMediaFileConditioning"
2880
+ ),
2795
2881
  avail_suppression=mediatailor.CfnPlaybackConfiguration.AvailSuppressionProperty(
2796
2882
  fill_policy="fillPolicy",
2797
2883
  mode="mode",
@@ -2839,6 +2925,7 @@ class CfnPlaybackConfigurationProps:
2839
2925
  check_type(argname="argument ad_decision_server_url", value=ad_decision_server_url, expected_type=type_hints["ad_decision_server_url"])
2840
2926
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
2841
2927
  check_type(argname="argument video_content_source_url", value=video_content_source_url, expected_type=type_hints["video_content_source_url"])
2928
+ check_type(argname="argument ad_conditioning_configuration", value=ad_conditioning_configuration, expected_type=type_hints["ad_conditioning_configuration"])
2842
2929
  check_type(argname="argument avail_suppression", value=avail_suppression, expected_type=type_hints["avail_suppression"])
2843
2930
  check_type(argname="argument bumper", value=bumper, expected_type=type_hints["bumper"])
2844
2931
  check_type(argname="argument cdn_configuration", value=cdn_configuration, expected_type=type_hints["cdn_configuration"])
@@ -2856,6 +2943,8 @@ class CfnPlaybackConfigurationProps:
2856
2943
  "name": name,
2857
2944
  "video_content_source_url": video_content_source_url,
2858
2945
  }
2946
+ if ad_conditioning_configuration is not None:
2947
+ self._values["ad_conditioning_configuration"] = ad_conditioning_configuration
2859
2948
  if avail_suppression is not None:
2860
2949
  self._values["avail_suppression"] = avail_suppression
2861
2950
  if bumper is not None:
@@ -2915,6 +3004,17 @@ class CfnPlaybackConfigurationProps:
2915
3004
  assert result is not None, "Required property 'video_content_source_url' is missing"
2916
3005
  return typing.cast(builtins.str, result)
2917
3006
 
3007
+ @builtins.property
3008
+ def ad_conditioning_configuration(
3009
+ self,
3010
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.AdConditioningConfigurationProperty]]:
3011
+ '''The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns, and what priority MediaTailor uses when inserting ads.
3012
+
3013
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-playbackconfiguration.html#cfn-mediatailor-playbackconfiguration-adconditioningconfiguration
3014
+ '''
3015
+ result = self._values.get("ad_conditioning_configuration")
3016
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.AdConditioningConfigurationProperty]], result)
3017
+
2918
3018
  @builtins.property
2919
3019
  def avail_suppression(
2920
3020
  self,
@@ -4496,6 +4596,7 @@ def _typecheckingstub__3dcfb97a898a80ee6a7b069e26028183e8a797f0c48fdbd4fe6ecb8ad
4496
4596
  ad_decision_server_url: builtins.str,
4497
4597
  name: builtins.str,
4498
4598
  video_content_source_url: builtins.str,
4599
+ ad_conditioning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AdConditioningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4499
4600
  avail_suppression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AvailSuppressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4500
4601
  bumper: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.BumperProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4501
4602
  cdn_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.CdnConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
@@ -4542,6 +4643,12 @@ def _typecheckingstub__75b50d6fe13101dc70996fb19d5c8a163f6176ddcd37a0ebe0b08f5f7
4542
4643
  """Type checking stubs"""
4543
4644
  pass
4544
4645
 
4646
+ def _typecheckingstub__bb81abb7826e9e9444261d39e06ed23acbaea73a559203da5ca788273a1bbc94(
4647
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.AdConditioningConfigurationProperty]],
4648
+ ) -> None:
4649
+ """Type checking stubs"""
4650
+ pass
4651
+
4545
4652
  def _typecheckingstub__ace1eb1809c3c05a0b25523b0f61020aa7d5a69057cdffb522c74d7881b0c1c8(
4546
4653
  value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.AvailSuppressionProperty]],
4547
4654
  ) -> None:
@@ -4614,6 +4721,13 @@ def _typecheckingstub__ab6a880d781d782bb5f703943747735b9af031af290dd1ad2e9ebe273
4614
4721
  """Type checking stubs"""
4615
4722
  pass
4616
4723
 
4724
+ def _typecheckingstub__86f7802737ba8294b0aa8d203c7f9bc7ff38b98bf17f1f9066c772b203c711ea(
4725
+ *,
4726
+ streaming_media_file_conditioning: builtins.str,
4727
+ ) -> None:
4728
+ """Type checking stubs"""
4729
+ pass
4730
+
4617
4731
  def _typecheckingstub__c84cc8c470c35ea1870d24a6e58a722cc2d0952d699c858000349755866ccea6(
4618
4732
  *,
4619
4733
  enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
@@ -4682,6 +4796,7 @@ def _typecheckingstub__935886ab495203cc213786b925e7fd8fe4acd3f9db5864d4f1f5c0115
4682
4796
  ad_decision_server_url: builtins.str,
4683
4797
  name: builtins.str,
4684
4798
  video_content_source_url: builtins.str,
4799
+ ad_conditioning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AdConditioningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4685
4800
  avail_suppression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AvailSuppressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4686
4801
  bumper: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.BumperProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4687
4802
  cdn_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.CdnConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
@@ -430,11 +430,11 @@ class CfnCluster(
430
430
  :param engine: The name of the engine used by the cluster.
431
431
  :param engine_version: The Redis engine version used by the cluster .
432
432
  :param final_snapshot_name: The user-supplied name of a final cluster snapshot. This is the unique name that identifies the snapshot. MemoryDB creates the snapshot, and then deletes the cluster immediately afterward.
433
- :param ip_discovery:
433
+ :param ip_discovery: The mechanism that the cluster uses to discover IP addresses. Returns 'ipv4' when DNS endpoints resolve to IPv4 addresses, or 'ipv6' when DNS endpoints resolve to IPv6 addresses.
434
434
  :param kms_key_id: The ID of the KMS key used to encrypt the cluster .
435
435
  :param maintenance_window: Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ``ddd:hh24:mi-ddd:hh24:mi`` (24H Clock UTC). The minimum maintenance window is a 60 minute period. *Pattern* : ``ddd:hh24:mi-ddd:hh24:mi``
436
436
  :param multi_region_cluster_name: The name of the multi-Region cluster that this cluster belongs to.
437
- :param network_type:
437
+ :param network_type: The IP address type for the cluster. Returns 'ipv4' for IPv4 only, 'ipv6' for IPv6 only, or 'dual-stack' if the cluster supports both IPv4 and IPv6 addressing.
438
438
  :param num_replicas_per_shard: The number of replicas to apply to each shard. *Default value* : ``1`` *Maximum value* : ``5``
439
439
  :param num_shards: The number of shards in the cluster .
440
440
  :param parameter_group_name: The name of the parameter group used by the cluster .
@@ -719,6 +719,7 @@ class CfnCluster(
719
719
  @builtins.property
720
720
  @jsii.member(jsii_name="ipDiscovery")
721
721
  def ip_discovery(self) -> typing.Optional[builtins.str]:
722
+ '''The mechanism that the cluster uses to discover IP addresses.'''
722
723
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "ipDiscovery"))
723
724
 
724
725
  @ip_discovery.setter
@@ -770,6 +771,7 @@ class CfnCluster(
770
771
  @builtins.property
771
772
  @jsii.member(jsii_name="networkType")
772
773
  def network_type(self) -> typing.Optional[builtins.str]:
774
+ '''The IP address type for the cluster.'''
773
775
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "networkType"))
774
776
 
775
777
  @network_type.setter
@@ -1121,11 +1123,11 @@ class CfnClusterProps:
1121
1123
  :param engine: The name of the engine used by the cluster.
1122
1124
  :param engine_version: The Redis engine version used by the cluster .
1123
1125
  :param final_snapshot_name: The user-supplied name of a final cluster snapshot. This is the unique name that identifies the snapshot. MemoryDB creates the snapshot, and then deletes the cluster immediately afterward.
1124
- :param ip_discovery:
1126
+ :param ip_discovery: The mechanism that the cluster uses to discover IP addresses. Returns 'ipv4' when DNS endpoints resolve to IPv4 addresses, or 'ipv6' when DNS endpoints resolve to IPv6 addresses.
1125
1127
  :param kms_key_id: The ID of the KMS key used to encrypt the cluster .
1126
1128
  :param maintenance_window: Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ``ddd:hh24:mi-ddd:hh24:mi`` (24H Clock UTC). The minimum maintenance window is a 60 minute period. *Pattern* : ``ddd:hh24:mi-ddd:hh24:mi``
1127
1129
  :param multi_region_cluster_name: The name of the multi-Region cluster that this cluster belongs to.
1128
- :param network_type:
1130
+ :param network_type: The IP address type for the cluster. Returns 'ipv4' for IPv4 only, 'ipv6' for IPv6 only, or 'dual-stack' if the cluster supports both IPv4 and IPv6 addressing.
1129
1131
  :param num_replicas_per_shard: The number of replicas to apply to each shard. *Default value* : ``1`` *Maximum value* : ``5``
1130
1132
  :param num_shards: The number of shards in the cluster .
1131
1133
  :param parameter_group_name: The name of the parameter group used by the cluster .
@@ -1382,7 +1384,10 @@ class CfnClusterProps:
1382
1384
 
1383
1385
  @builtins.property
1384
1386
  def ip_discovery(self) -> typing.Optional[builtins.str]:
1385
- '''
1387
+ '''The mechanism that the cluster uses to discover IP addresses.
1388
+
1389
+ Returns 'ipv4' when DNS endpoints resolve to IPv4 addresses, or 'ipv6' when DNS endpoints resolve to IPv6 addresses.
1390
+
1386
1391
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-cluster.html#cfn-memorydb-cluster-ipdiscovery
1387
1392
  '''
1388
1393
  result = self._values.get("ip_discovery")
@@ -1421,7 +1426,10 @@ class CfnClusterProps:
1421
1426
 
1422
1427
  @builtins.property
1423
1428
  def network_type(self) -> typing.Optional[builtins.str]:
1424
- '''
1429
+ '''The IP address type for the cluster.
1430
+
1431
+ Returns 'ipv4' for IPv4 only, 'ipv6' for IPv6 only, or 'dual-stack' if the cluster supports both IPv4 and IPv6 addressing.
1432
+
1425
1433
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-cluster.html#cfn-memorydb-cluster-networktype
1426
1434
  '''
1427
1435
  result = self._values.get("network_type")
@@ -1643,7 +1651,7 @@ class CfnMultiRegionCluster(
1643
1651
  :param engine_version: The version of the engine used by the multi-Region cluster.
1644
1652
  :param multi_region_cluster_name_suffix: A suffix to be added to the Multi-Region cluster name. Amazon MemoryDB automatically applies a prefix to the Multi-Region cluster Name when it is created. Each Amazon Region has its own prefix. For instance, a Multi-Region cluster Name created in the US-West-1 region will begin with "virxk", along with the suffix name you provide. The suffix guarantees uniqueness of the Multi-Region cluster name across multiple regions.
1645
1653
  :param multi_region_parameter_group_name: The name of the multi-Region parameter group associated with the cluster.
1646
- :param num_shards: TBD.
1654
+ :param num_shards: The number of shards in the multi-Region cluster.
1647
1655
  :param tags: A list of tags to be applied to the multi-Region cluster.
1648
1656
  :param tls_enabled: Indiciates if the multi-Region cluster is TLS enabled.
1649
1657
  :param update_strategy: The strategy to use for the update operation. Supported values are "coordinated" or "uncoordinated".
@@ -1822,7 +1830,7 @@ class CfnMultiRegionCluster(
1822
1830
  @builtins.property
1823
1831
  @jsii.member(jsii_name="numShards")
1824
1832
  def num_shards(self) -> typing.Optional[jsii.Number]:
1825
- '''TBD.'''
1833
+ '''The number of shards in the multi-Region cluster.'''
1826
1834
  return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "numShards"))
1827
1835
 
1828
1836
  @num_shards.setter
@@ -1916,7 +1924,7 @@ class CfnMultiRegionClusterProps:
1916
1924
  :param engine_version: The version of the engine used by the multi-Region cluster.
1917
1925
  :param multi_region_cluster_name_suffix: A suffix to be added to the Multi-Region cluster name. Amazon MemoryDB automatically applies a prefix to the Multi-Region cluster Name when it is created. Each Amazon Region has its own prefix. For instance, a Multi-Region cluster Name created in the US-West-1 region will begin with "virxk", along with the suffix name you provide. The suffix guarantees uniqueness of the Multi-Region cluster name across multiple regions.
1918
1926
  :param multi_region_parameter_group_name: The name of the multi-Region parameter group associated with the cluster.
1919
- :param num_shards: TBD.
1927
+ :param num_shards: The number of shards in the multi-Region cluster.
1920
1928
  :param tags: A list of tags to be applied to the multi-Region cluster.
1921
1929
  :param tls_enabled: Indiciates if the multi-Region cluster is TLS enabled.
1922
1930
  :param update_strategy: The strategy to use for the update operation. Supported values are "coordinated" or "uncoordinated".
@@ -2041,7 +2049,7 @@ class CfnMultiRegionClusterProps:
2041
2049
 
2042
2050
  @builtins.property
2043
2051
  def num_shards(self) -> typing.Optional[jsii.Number]:
2044
- '''TBD.
2052
+ '''The number of shards in the multi-Region cluster.
2045
2053
 
2046
2054
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-multiregioncluster.html#cfn-memorydb-multiregioncluster-numshards
2047
2055
  '''
@@ -2515,7 +2523,9 @@ class CfnSubnetGroup(
2515
2523
  @builtins.property
2516
2524
  @jsii.member(jsii_name="attrSupportedNetworkTypes")
2517
2525
  def attr_supported_network_types(self) -> typing.List[builtins.str]:
2518
- '''Supported network types would be a list of network types supported by subnet group and can be either [ipv4] or [ipv4, dual_stack] or [ipv6].
2526
+ '''The network types supported by this subnet.
2527
+
2528
+ Returns an array of strings that can include 'ipv4', 'ipv6', or both, indicating whether the subnet supports IPv4 only, IPv6 only, or dual-stack deployments.
2519
2529
 
2520
2530
  :cloudformationAttribute: SupportedNetworkTypes
2521
2531
  '''
@@ -128,9 +128,9 @@ class CfnLink(
128
128
  '''
129
129
  :param scope: Scope in which this resource is defined.
130
130
  :param id: Construct identifier for this resource (unique in its scope).
131
- :param resource_types: An array of strings that define which types of data that the source account shares with the monitoring account. Valid values are ``AWS::CloudWatch::Metric | AWS::Logs::LogGroup | AWS::XRay::Trace | AWS::ApplicationInsights::Application | AWS::InternetMonitor::Monitor | AWS::ApplicationSignals::Service | AWS::ApplicationSignals::ServiceLevelObjective`` .
131
+ :param resource_types: An array of strings that define which types of data that the source account shares with the monitoring account. Valid values are ``AWS::CloudWatch::Metric | AWS::Logs::LogGroup | AWS::XRay::Trace | AWS::ApplicationInsights::Application | AWS::InternetMonitor::Monitor`` .
132
132
  :param sink_identifier: The ARN of the sink in the monitoring account that you want to link to. You can use `ListSinks <https://docs.aws.amazon.com/OAM/latest/APIReference/API_ListSinks.html>`_ to find the ARNs of sinks.
133
- :param label_template: Specify a friendly human-readable name to use to identify this source account when you are viewing data from it in the monitoring account. You can include the following variables in your template: - ``$AccountName`` is the name of the account - ``$AccountEmail`` is a globally-unique email address, which includes the email domain, such as ``mariagarcia@example.com`` - ``$AccountEmailNoDomain`` is an email address without the domain name, such as ``mariagarcia``
133
+ :param label_template: Specify a friendly human-readable name to use to identify this source account when you are viewing data from it in the monitoring account. You can include the following variables in your template: - ``$AccountName`` is the name of the account - ``$AccountEmail`` is a globally-unique email address, which includes the email domain, such as ``mariagarcia@example.com`` - ``$AccountEmailNoDomain`` is an email address without the domain name, such as ``mariagarcia`` .. epigraph:: In the and Regions, the only supported option is to use custom labels, and the ``$AccountName`` , ``$AccountEmail`` , and ``$AccountEmailNoDomain`` variables all resolve as *account-id* instead of the specified variable.
134
134
  :param link_configuration: Use this structure to optionally create filters that specify that only some metric namespaces or log groups are to be shared from the source account to the monitoring account.
135
135
  :param tags: An array of key-value pairs to apply to the link. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
136
136
  '''
@@ -301,7 +301,7 @@ class CfnLink(
301
301
  ) -> None:
302
302
  '''Use this structure to optionally create filters that specify that only some metric namespaces or log groups are to be shared from the source account to the monitoring account.
303
303
 
304
- :param log_group_configuration: Use this structure to filter which log groups are to send log events from the source account to the monitoring account.
304
+ :param log_group_configuration: Use this structure to filter which log groups are to share log events from this source account to the monitoring account.
305
305
  :param metric_configuration: Use this structure to filter which metric namespaces are to be shared from the source account to the monitoring account.
306
306
 
307
307
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-linkconfiguration.html
@@ -336,7 +336,7 @@ class CfnLink(
336
336
  def log_group_configuration(
337
337
  self,
338
338
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLink.LinkFilterProperty"]]:
339
- '''Use this structure to filter which log groups are to send log events from the source account to the monitoring account.
339
+ '''Use this structure to filter which log groups are to share log events from this source account to the monitoring account.
340
340
 
341
341
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-linkconfiguration.html#cfn-oam-link-linkconfiguration-loggroupconfiguration
342
342
  '''
@@ -372,8 +372,11 @@ class CfnLink(
372
372
  )
373
373
  class LinkFilterProperty:
374
374
  def __init__(self, *, filter: builtins.str) -> None:
375
- '''
376
- :param filter:
375
+ '''When used in ``MetricConfiguration`` this field specifies which metric namespaces are to be shared with the monitoring account.
376
+
377
+ When used in ``LogGroupConfiguration`` this field specifies which log groups are to share their log events with the monitoring account. Use the term ``LogGroupName`` and one or more of the following operands.
378
+
379
+ :param filter: When used in ``MetricConfiguration`` this field specifies which metric namespaces are to be shared with the monitoring account. When used in ``LogGroupConfiguration`` this field specifies which log groups are to share their log events with the monitoring account. Use the term ``LogGroupName`` and one or more of the following operands. Use single quotation marks (') around log group names and metric namespaces. The matching of log group names and metric namespaces is case sensitive. Each filter has a limit of five conditional operands. Conditional operands are ``AND`` and ``OR`` . - ``=`` and ``!=`` - ``AND`` - ``OR`` - ``LIKE`` and ``NOT LIKE`` . These can be used only as prefix searches. Include a ``%`` at the end of the string that you want to search for and include. - ``IN`` and ``NOT IN`` , using parentheses ``( )`` Examples: - ``Namespace NOT LIKE 'AWS/%'`` includes only namespaces that don't start with ``AWS/`` , such as custom namespaces. - ``Namespace IN ('AWS/EC2', 'AWS/ELB', 'AWS/S3')`` includes only the metrics in the EC2, Elastic Load Balancing , and Amazon S3 namespaces. - ``Namespace = 'AWS/EC2' OR Namespace NOT LIKE 'AWS/%'`` includes only the EC2 namespace and your custom namespaces. - ``LogGroupName IN ('This-Log-Group', 'Other-Log-Group')`` includes only the log groups with names ``This-Log-Group`` and ``Other-Log-Group`` . - ``LogGroupName NOT IN ('Private-Log-Group', 'Private-Log-Group-2')`` includes all log groups except the log groups with names ``Private-Log-Group`` and ``Private-Log-Group-2`` . - ``LogGroupName LIKE 'aws/lambda/%' OR LogGroupName LIKE 'AWSLogs%'`` includes all log groups that have names that start with ``aws/lambda/`` or ``AWSLogs`` . .. epigraph:: If you are updating a link that uses filters, you can specify ``*`` as the only value for the ``filter`` parameter to delete the filter and share all log groups with the monitoring account.
377
380
 
378
381
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-linkfilter.html
379
382
  :exampleMetadata: fixture=_generated
@@ -397,7 +400,33 @@ class CfnLink(
397
400
 
398
401
  @builtins.property
399
402
  def filter(self) -> builtins.str:
400
- '''
403
+ '''When used in ``MetricConfiguration`` this field specifies which metric namespaces are to be shared with the monitoring account.
404
+
405
+ When used in ``LogGroupConfiguration`` this field specifies which log groups are to share their log events with the monitoring account. Use the term ``LogGroupName`` and one or more of the following operands.
406
+
407
+ Use single quotation marks (') around log group names and metric namespaces.
408
+
409
+ The matching of log group names and metric namespaces is case sensitive. Each filter has a limit of five conditional operands. Conditional operands are ``AND`` and ``OR`` .
410
+
411
+ - ``=`` and ``!=``
412
+ - ``AND``
413
+ - ``OR``
414
+ - ``LIKE`` and ``NOT LIKE`` . These can be used only as prefix searches. Include a ``%`` at the end of the string that you want to search for and include.
415
+ - ``IN`` and ``NOT IN`` , using parentheses ``( )``
416
+
417
+ Examples:
418
+
419
+ - ``Namespace NOT LIKE 'AWS/%'`` includes only namespaces that don't start with ``AWS/`` , such as custom namespaces.
420
+ - ``Namespace IN ('AWS/EC2', 'AWS/ELB', 'AWS/S3')`` includes only the metrics in the EC2, Elastic Load Balancing , and Amazon S3 namespaces.
421
+ - ``Namespace = 'AWS/EC2' OR Namespace NOT LIKE 'AWS/%'`` includes only the EC2 namespace and your custom namespaces.
422
+ - ``LogGroupName IN ('This-Log-Group', 'Other-Log-Group')`` includes only the log groups with names ``This-Log-Group`` and ``Other-Log-Group`` .
423
+ - ``LogGroupName NOT IN ('Private-Log-Group', 'Private-Log-Group-2')`` includes all log groups except the log groups with names ``Private-Log-Group`` and ``Private-Log-Group-2`` .
424
+ - ``LogGroupName LIKE 'aws/lambda/%' OR LogGroupName LIKE 'AWSLogs%'`` includes all log groups that have names that start with ``aws/lambda/`` or ``AWSLogs`` .
425
+
426
+ .. epigraph::
427
+
428
+ If you are updating a link that uses filters, you can specify ``*`` as the only value for the ``filter`` parameter to delete the filter and share all log groups with the monitoring account.
429
+
401
430
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-linkfilter.html#cfn-oam-link-linkfilter-filter
402
431
  '''
403
432
  result = self._values.get("filter")
@@ -439,9 +468,9 @@ class CfnLinkProps:
439
468
  ) -> None:
440
469
  '''Properties for defining a ``CfnLink``.
441
470
 
442
- :param resource_types: An array of strings that define which types of data that the source account shares with the monitoring account. Valid values are ``AWS::CloudWatch::Metric | AWS::Logs::LogGroup | AWS::XRay::Trace | AWS::ApplicationInsights::Application | AWS::InternetMonitor::Monitor | AWS::ApplicationSignals::Service | AWS::ApplicationSignals::ServiceLevelObjective`` .
471
+ :param resource_types: An array of strings that define which types of data that the source account shares with the monitoring account. Valid values are ``AWS::CloudWatch::Metric | AWS::Logs::LogGroup | AWS::XRay::Trace | AWS::ApplicationInsights::Application | AWS::InternetMonitor::Monitor`` .
443
472
  :param sink_identifier: The ARN of the sink in the monitoring account that you want to link to. You can use `ListSinks <https://docs.aws.amazon.com/OAM/latest/APIReference/API_ListSinks.html>`_ to find the ARNs of sinks.
444
- :param label_template: Specify a friendly human-readable name to use to identify this source account when you are viewing data from it in the monitoring account. You can include the following variables in your template: - ``$AccountName`` is the name of the account - ``$AccountEmail`` is a globally-unique email address, which includes the email domain, such as ``mariagarcia@example.com`` - ``$AccountEmailNoDomain`` is an email address without the domain name, such as ``mariagarcia``
473
+ :param label_template: Specify a friendly human-readable name to use to identify this source account when you are viewing data from it in the monitoring account. You can include the following variables in your template: - ``$AccountName`` is the name of the account - ``$AccountEmail`` is a globally-unique email address, which includes the email domain, such as ``mariagarcia@example.com`` - ``$AccountEmailNoDomain`` is an email address without the domain name, such as ``mariagarcia`` .. epigraph:: In the and Regions, the only supported option is to use custom labels, and the ``$AccountName`` , ``$AccountEmail`` , and ``$AccountEmailNoDomain`` variables all resolve as *account-id* instead of the specified variable.
445
474
  :param link_configuration: Use this structure to optionally create filters that specify that only some metric namespaces or log groups are to be shared from the source account to the monitoring account.
446
475
  :param tags: An array of key-value pairs to apply to the link. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
447
476
 
@@ -495,7 +524,7 @@ class CfnLinkProps:
495
524
  def resource_types(self) -> typing.List[builtins.str]:
496
525
  '''An array of strings that define which types of data that the source account shares with the monitoring account.
497
526
 
498
- Valid values are ``AWS::CloudWatch::Metric | AWS::Logs::LogGroup | AWS::XRay::Trace | AWS::ApplicationInsights::Application | AWS::InternetMonitor::Monitor | AWS::ApplicationSignals::Service | AWS::ApplicationSignals::ServiceLevelObjective`` .
527
+ Valid values are ``AWS::CloudWatch::Metric | AWS::Logs::LogGroup | AWS::XRay::Trace | AWS::ApplicationInsights::Application | AWS::InternetMonitor::Monitor`` .
499
528
 
500
529
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-oam-link.html#cfn-oam-link-resourcetypes
501
530
  '''
@@ -525,6 +554,10 @@ class CfnLinkProps:
525
554
  - ``$AccountEmail`` is a globally-unique email address, which includes the email domain, such as ``mariagarcia@example.com``
526
555
  - ``$AccountEmailNoDomain`` is an email address without the domain name, such as ``mariagarcia``
527
556
 
557
+ .. epigraph::
558
+
559
+ In the and Regions, the only supported option is to use custom labels, and the ``$AccountName`` , ``$AccountEmail`` , and ``$AccountEmailNoDomain`` variables all resolve as *account-id* instead of the specified variable.
560
+
528
561
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-oam-link.html#cfn-oam-link-labeltemplate
529
562
  '''
530
563
  result = self._values.get("label_template")
@@ -2715,7 +2715,7 @@ class CfnWorkflow(
2715
2715
  - *ECR container images* : Create one or more container images for the workflow. Store the images in a private ECR repository.
2716
2716
  - (Optional) *Sentieon licenses* : Request a Sentieon license if you plan to use Sentieon software in a private workflow.
2717
2717
 
2718
- For more information, see `Creating private workflows in AWS HealthOmics <https://docs.aws.amazon.com/omics/latest/dev/workflows-setup.html>`_ in the AWS HealthOmics User Guide.
2718
+ For more information, see `Creating or updating a private workflow in AWS HealthOmics <https://docs.aws.amazon.com/omics/latest/dev/creating-private-workflows.html>`_ in the AWS HealthOmics User Guide.
2719
2719
 
2720
2720
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html
2721
2721
  :cloudformationResource: AWS::Omics::Workflow
@@ -2772,7 +2772,7 @@ class CfnWorkflow(
2772
2772
  :param main: The path of the main definition file for the workflow.
2773
2773
  :param name: The workflow's name.
2774
2774
  :param parameter_template: The workflow's parameter template.
2775
- :param storage_capacity: The default storage capacity for the workflow runs, in gibibytes.
2775
+ :param storage_capacity: The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
2776
2776
  :param tags: Tags for the workflow.
2777
2777
  '''
2778
2778
  if __debug__:
@@ -2977,7 +2977,7 @@ class CfnWorkflow(
2977
2977
  @builtins.property
2978
2978
  @jsii.member(jsii_name="storageCapacity")
2979
2979
  def storage_capacity(self) -> typing.Optional[jsii.Number]:
2980
- '''The default storage capacity for the workflow runs, in gibibytes.'''
2980
+ '''The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.'''
2981
2981
  return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "storageCapacity"))
2982
2982
 
2983
2983
  @storage_capacity.setter
@@ -3114,7 +3114,7 @@ class CfnWorkflowProps:
3114
3114
  :param main: The path of the main definition file for the workflow.
3115
3115
  :param name: The workflow's name.
3116
3116
  :param parameter_template: The workflow's parameter template.
3117
- :param storage_capacity: The default storage capacity for the workflow runs, in gibibytes.
3117
+ :param storage_capacity: The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
3118
3118
  :param tags: Tags for the workflow.
3119
3119
 
3120
3120
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html
@@ -3242,7 +3242,7 @@ class CfnWorkflowProps:
3242
3242
 
3243
3243
  @builtins.property
3244
3244
  def storage_capacity(self) -> typing.Optional[jsii.Number]:
3245
- '''The default storage capacity for the workflow runs, in gibibytes.
3245
+ '''The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
3246
3246
 
3247
3247
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-storagecapacity
3248
3248
  '''
@@ -6688,6 +6688,12 @@ class EngineVersion(
6688
6688
  '''AWS OpenSearch 2.17.'''
6689
6689
  return typing.cast("EngineVersion", jsii.sget(cls, "OPENSEARCH_2_17"))
6690
6690
 
6691
+ @jsii.python.classproperty
6692
+ @jsii.member(jsii_name="OPENSEARCH_2_19")
6693
+ def OPENSEARCH_2_19(cls) -> "EngineVersion":
6694
+ '''AWS OpenSearch 2.19.'''
6695
+ return typing.cast("EngineVersion", jsii.sget(cls, "OPENSEARCH_2_19"))
6696
+
6691
6697
  @jsii.python.classproperty
6692
6698
  @jsii.member(jsii_name="OPENSEARCH_2_3")
6693
6699
  def OPENSEARCH_2_3(cls) -> "EngineVersion":
@@ -89687,7 +89687,7 @@ class CfnDashboard(
89687
89687
  *,
89688
89688
  availability_status: typing.Optional[builtins.str] = None,
89689
89689
  ) -> None:
89690
- '''Export to .csv option.
89690
+ '''Enable/disable visual-level downloads option.
89691
89691
 
89692
89692
  :param availability_status: Availability status.
89693
89693