aws-cdk-lib 2.194.0__py3-none-any.whl → 2.196.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 (108) hide show
  1. aws_cdk/__init__.py +435 -20
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.194.0.jsii.tgz → aws-cdk-lib@2.196.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_acmpca/__init__.py +1 -1
  5. aws_cdk/aws_amazonmq/__init__.py +2 -2
  6. aws_cdk/aws_apigateway/__init__.py +208 -70
  7. aws_cdk/aws_apigatewayv2/__init__.py +155 -24
  8. aws_cdk/aws_appconfig/__init__.py +24 -0
  9. aws_cdk/aws_applicationautoscaling/__init__.py +6 -0
  10. aws_cdk/aws_appmesh/__init__.py +42 -0
  11. aws_cdk/aws_appsync/__init__.py +92 -20
  12. aws_cdk/aws_autoscaling/__init__.py +24 -0
  13. aws_cdk/aws_backup/__init__.py +53 -14
  14. aws_cdk/aws_batch/__init__.py +72 -0
  15. aws_cdk/aws_bedrock/__init__.py +1201 -18
  16. aws_cdk/aws_budgets/__init__.py +569 -0
  17. aws_cdk/aws_certificatemanager/__init__.py +21 -0
  18. aws_cdk/aws_chatbot/__init__.py +6 -0
  19. aws_cdk/aws_cloudfront/__init__.py +277 -120
  20. aws_cdk/aws_cloudfront/experimental/__init__.py +6 -0
  21. aws_cdk/aws_cloudtrail/__init__.py +6 -0
  22. aws_cdk/aws_cloudwatch/__init__.py +18 -0
  23. aws_cdk/aws_cloudwatch_actions/__init__.py +75 -1
  24. aws_cdk/aws_codebuild/__init__.py +48 -0
  25. aws_cdk/aws_codecommit/__init__.py +6 -0
  26. aws_cdk/aws_codedeploy/__init__.py +63 -0
  27. aws_cdk/aws_codeguruprofiler/__init__.py +6 -0
  28. aws_cdk/aws_codepipeline/__init__.py +114 -0
  29. aws_cdk/aws_codepipeline_actions/__init__.py +4 -4
  30. aws_cdk/aws_codestarnotifications/__init__.py +6 -0
  31. aws_cdk/aws_cognito/__init__.py +215 -10
  32. aws_cdk/aws_cognito_identitypool/__init__.py +6 -0
  33. aws_cdk/aws_config/__init__.py +36 -0
  34. aws_cdk/aws_datazone/__init__.py +1013 -100
  35. aws_cdk/aws_docdb/__init__.py +27 -3
  36. aws_cdk/aws_dsql/__init__.py +29 -12
  37. aws_cdk/aws_dynamodb/__init__.py +25 -11
  38. aws_cdk/aws_ec2/__init__.py +408 -23
  39. aws_cdk/aws_ecr/__init__.py +22 -14
  40. aws_cdk/aws_ecr_assets/__init__.py +6 -0
  41. aws_cdk/aws_ecs/__init__.py +116 -34
  42. aws_cdk/aws_ecs_patterns/__init__.py +58 -0
  43. aws_cdk/aws_efs/__init__.py +12 -0
  44. aws_cdk/aws_eks/__init__.py +42 -0
  45. aws_cdk/aws_elasticloadbalancing/__init__.py +6 -0
  46. aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -9
  47. aws_cdk/aws_elasticsearch/__init__.py +9 -0
  48. aws_cdk/aws_events/__init__.py +36 -0
  49. aws_cdk/aws_events_targets/__init__.py +10 -10
  50. aws_cdk/aws_fsx/__init__.py +8 -3
  51. aws_cdk/aws_globalaccelerator/__init__.py +18 -0
  52. aws_cdk/aws_iam/__init__.py +66 -0
  53. aws_cdk/aws_imagebuilder/__init__.py +181 -26
  54. aws_cdk/aws_inspector/__init__.py +6 -0
  55. aws_cdk/aws_kinesis/__init__.py +19 -1
  56. aws_cdk/aws_kinesisanalytics/__init__.py +7 -7
  57. aws_cdk/aws_kinesisanalyticsv2/__init__.py +7 -7
  58. aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
  59. aws_cdk/aws_kms/__init__.py +16 -4
  60. aws_cdk/aws_lambda/__init__.py +76 -6
  61. aws_cdk/aws_lambda_nodejs/__init__.py +6 -0
  62. aws_cdk/aws_logs/__init__.py +155 -12
  63. aws_cdk/aws_medialive/__init__.py +4 -6
  64. aws_cdk/aws_mediatailor/__init__.py +115 -0
  65. aws_cdk/aws_oam/__init__.py +43 -10
  66. aws_cdk/aws_opensearchservice/__init__.py +12 -0
  67. aws_cdk/aws_qbusiness/__init__.py +2 -2
  68. aws_cdk/aws_quicksight/__init__.py +22 -22
  69. aws_cdk/aws_rds/__init__.py +347 -36
  70. aws_cdk/aws_redshiftserverless/__init__.py +7 -7
  71. aws_cdk/aws_route53/__init__.py +735 -33
  72. aws_cdk/aws_route53_targets/__init__.py +62 -1
  73. aws_cdk/aws_route53profiles/__init__.py +1 -1
  74. aws_cdk/aws_s3/__init__.py +37 -10
  75. aws_cdk/aws_s3_deployment/__init__.py +6 -0
  76. aws_cdk/aws_s3_notifications/__init__.py +5 -5
  77. aws_cdk/aws_sagemaker/__init__.py +452 -8
  78. aws_cdk/aws_scheduler/__init__.py +12 -0
  79. aws_cdk/aws_secretsmanager/__init__.py +24 -0
  80. aws_cdk/aws_servicecatalog/__init__.py +24 -0
  81. aws_cdk/aws_servicediscovery/__init__.py +48 -0
  82. aws_cdk/aws_ses/__init__.py +133 -33
  83. aws_cdk/aws_signer/__init__.py +6 -0
  84. aws_cdk/aws_sns/__init__.py +18 -0
  85. aws_cdk/aws_sns_subscriptions/__init__.py +6 -0
  86. aws_cdk/aws_sqs/__init__.py +12 -0
  87. aws_cdk/aws_ssm/__init__.py +12 -0
  88. aws_cdk/aws_ssmcontacts/__init__.py +53 -2
  89. aws_cdk/aws_ssmguiconnect/__init__.py +544 -0
  90. aws_cdk/aws_stepfunctions/__init__.py +153 -7
  91. aws_cdk/aws_stepfunctions_tasks/__init__.py +46 -10
  92. aws_cdk/aws_synthetics/__init__.py +32 -0
  93. aws_cdk/aws_verifiedpermissions/__init__.py +168 -3
  94. aws_cdk/aws_vpclattice/__init__.py +3 -1
  95. aws_cdk/aws_wisdom/__init__.py +6 -4
  96. aws_cdk/cloud_assembly_schema/__init__.py +7 -1
  97. aws_cdk/custom_resources/__init__.py +18 -0
  98. aws_cdk/cx_api/__init__.py +33 -0
  99. aws_cdk/lambda_layer_awscli/__init__.py +6 -0
  100. aws_cdk/lambda_layer_node_proxy_agent/__init__.py +6 -0
  101. aws_cdk/pipelines/__init__.py +10 -10
  102. aws_cdk/triggers/__init__.py +6 -0
  103. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/METADATA +84 -6
  104. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/RECORD +108 -107
  105. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/LICENSE +0 -0
  106. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/NOTICE +0 -0
  107. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/WHEEL +0 -0
  108. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.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,
@@ -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")
@@ -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":
@@ -10061,6 +10067,12 @@ class Domain(
10061
10067
 
10062
10068
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSearchLatency", [props]))
10063
10069
 
10070
+ @jsii.python.classproperty
10071
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
10072
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
10073
+ '''Uniquely identifies this class.'''
10074
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
10075
+
10064
10076
  @builtins.property
10065
10077
  @jsii.member(jsii_name="connections")
10066
10078
  def connections(self) -> _Connections_0f31fce8:
@@ -3510,7 +3510,7 @@ class CfnDataSource(
3510
3510
  For more information, see `Custom document enrichment <https://docs.aws.amazon.com/amazonq/latest/business-use-dg/custom-document-enrichment.html>`_ .
3511
3511
 
3512
3512
  :param invocation_condition: The condition used for when a Lambda function should be invoked. For example, you can specify a condition that if there are empty date-time values, then Amazon Q Business should invoke a function that inserts the current date-time.
3513
- :param lambda_arn: The Amazon Resource Name (ARN) of the Lambda function during ingestion. For more information, see `Using Lambda functions for Amazon Q Business document enrichment <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/cde-lambda-operations.html>`_ .
3513
+ :param lambda_arn: The Amazon Resource Name (ARN) of the Lambda function sduring ingestion. For more information, see `Using Lambda functions for Amazon Q Business document enrichment <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/cde-lambda-operations.html>`_ .
3514
3514
  :param role_arn: The Amazon Resource Name (ARN) of a role with permission to run ``PreExtractionHookConfiguration`` and ``PostExtractionHookConfiguration`` for altering document metadata and content during the document ingestion process.
3515
3515
  :param s3_bucket_name: Stores the original, raw documents or the structured, parsed documents before and after altering them. For more information, see `Data contracts for Lambda functions <https://docs.aws.amazon.com/amazonq/latest/business-use-dg/cde-lambda-operations.html#cde-lambda-operations-data-contracts>`_ .
3516
3516
 
@@ -3572,7 +3572,7 @@ class CfnDataSource(
3572
3572
 
3573
3573
  @builtins.property
3574
3574
  def lambda_arn(self) -> typing.Optional[builtins.str]:
3575
- '''The Amazon Resource Name (ARN) of the Lambda function during ingestion.
3575
+ '''The Amazon Resource Name (ARN) of the Lambda function sduring ingestion.
3576
3576
 
3577
3577
  For more information, see `Using Lambda functions for Amazon Q Business document enrichment <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/cde-lambda-operations.html>`_ .
3578
3578
 
@@ -52484,7 +52484,7 @@ class CfnAnalysis(
52484
52484
  '''Permission for the resource.
52485
52485
 
52486
52486
  :param actions: The IAM action to grant or revoke permissions on.
52487
- :param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a Amazon QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
52487
+ :param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
52488
52488
  :param resource:
52489
52489
 
52490
52490
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-resourcepermission.html
@@ -52532,7 +52532,7 @@ class CfnAnalysis(
52532
52532
 
52533
52533
  - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)
52534
52534
  - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)
52535
- - The ARN of an AWS account root: This is an IAM ARN rather than a Amazon QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
52535
+ - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
52536
52536
 
52537
52537
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-resourcepermission.html#cfn-quicksight-analysis-resourcepermission-principal
52538
52538
  '''
@@ -70748,7 +70748,7 @@ class CfnDashboard(
70748
70748
  ):
70749
70749
  '''Creates a dashboard from a template. To first create a template, see the ``CreateTemplate`` API operation.
70750
70750
 
70751
- A dashboard is an entity in Amazon QuickSight that identifies Amazon QuickSight reports, created from analyses. You can share Amazon QuickSight dashboards. With the right permissions, you can create scheduled email reports from them. If you have the correct permissions, you can create a dashboard from a template that exists in a different AWS account .
70751
+ A dashboard is an entity in QuickSight that identifies QuickSight reports, created from analyses. You can share QuickSight dashboards. With the right permissions, you can create scheduled email reports from them. If you have the correct permissions, you can create a dashboard from a template that exists in a different AWS account .
70752
70752
 
70753
70753
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-dashboard.html
70754
70754
  :cloudformationResource: AWS::QuickSight::Dashboard
@@ -124155,7 +124155,7 @@ class CfnDashboard(
124155
124155
  '''Permission for the resource.
124156
124156
 
124157
124157
  :param actions: The IAM action to grant or revoke permissions on.
124158
- :param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a Amazon QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
124158
+ :param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
124159
124159
  :param resource:
124160
124160
 
124161
124161
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-resourcepermission.html
@@ -124203,7 +124203,7 @@ class CfnDashboard(
124203
124203
 
124204
124204
  - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)
124205
124205
  - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)
124206
- - The ARN of an AWS account root: This is an IAM ARN rather than a Amazon QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
124206
+ - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
124207
124207
 
124208
124208
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-resourcepermission.html#cfn-quicksight-dashboard-resourcepermission-principal
124209
124209
  '''
@@ -143067,7 +143067,7 @@ class CfnDataSet(
143067
143067
  Each dataset can have multiple rules. To create a restricted column, you add it to one or more rules. Each rule must contain at least one column and at least one user or group. To be able to see a restricted column, a user or group needs to be added to a rule for that column.
143068
143068
 
143069
143069
  :param column_names: An array of column names.
143070
- :param principals: An array of Amazon Resource Names (ARNs) for Amazon QuickSight users or groups.
143070
+ :param principals: An array of Amazon Resource Names (ARNs) for QuickSight users or groups.
143071
143071
 
143072
143072
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-columnlevelpermissionrule.html
143073
143073
  :exampleMetadata: fixture=_generated
@@ -143104,7 +143104,7 @@ class CfnDataSet(
143104
143104
 
143105
143105
  @builtins.property
143106
143106
  def principals(self) -> typing.Optional[typing.List[builtins.str]]:
143107
- '''An array of Amazon Resource Names (ARNs) for Amazon QuickSight users or groups.
143107
+ '''An array of Amazon Resource Names (ARNs) for QuickSight users or groups.
143108
143108
 
143109
143109
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-columnlevelpermissionrule.html#cfn-quicksight-dataset-columnlevelpermissionrule-principals
143110
143110
  '''
@@ -144852,7 +144852,7 @@ class CfnDataSet(
144852
144852
  ) -> None:
144853
144853
  '''Properties associated with the columns participating in a join.
144854
144854
 
144855
- :param unique_key: A value that indicates that a row in a table is uniquely identified by the columns in a join key. This is used by Amazon QuickSight to optimize query performance.
144855
+ :param unique_key: A value that indicates that a row in a table is uniquely identified by the columns in a join key. This is used by QuickSight to optimize query performance.
144856
144856
 
144857
144857
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-joinkeyproperties.html
144858
144858
  :exampleMetadata: fixture=_generated
@@ -144880,7 +144880,7 @@ class CfnDataSet(
144880
144880
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
144881
144881
  '''A value that indicates that a row in a table is uniquely identified by the columns in a join key.
144882
144882
 
144883
- This is used by Amazon QuickSight to optimize query performance.
144883
+ This is used by QuickSight to optimize query performance.
144884
144884
 
144885
144885
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-joinkeyproperties.html#cfn-quicksight-dataset-joinkeyproperties-uniquekey
144886
144886
  '''
@@ -146236,7 +146236,7 @@ class CfnDataSet(
146236
146236
  '''Permission for the resource.
146237
146237
 
146238
146238
  :param actions: The IAM action to grant or revoke permisions on.
146239
- :param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a Amazon QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
146239
+ :param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
146240
146240
 
146241
146241
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-resourcepermission.html
146242
146242
  :exampleMetadata: fixture=_generated
@@ -146277,7 +146277,7 @@ class CfnDataSet(
146277
146277
 
146278
146278
  - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)
146279
146279
  - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)
146280
- - The ARN of an AWS account root: This is an IAM ARN rather than a Amazon QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
146280
+ - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
146281
146281
 
146282
146282
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-resourcepermission.html#cfn-quicksight-dataset-resourcepermission-principal
146283
146283
  '''
@@ -151526,7 +151526,7 @@ class CfnDataSource(
151526
151526
  '''Permission for the resource.
151527
151527
 
151528
151528
  :param actions: The IAM action to grant or revoke permissions on.
151529
- :param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a Amazon QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
151529
+ :param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
151530
151530
  :param resource:
151531
151531
 
151532
151532
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-resourcepermission.html
@@ -151574,7 +151574,7 @@ class CfnDataSource(
151574
151574
 
151575
151575
  - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)
151576
151576
  - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)
151577
- - The ARN of an AWS account root: This is an IAM ARN rather than a Amazon QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
151577
+ - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
151578
151578
 
151579
151579
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-resourcepermission.html#cfn-quicksight-datasource-resourcepermission-principal
151580
151580
  '''
@@ -153691,7 +153691,7 @@ class CfnRefreshSchedule(
153691
153691
  metaclass=jsii.JSIIMeta,
153692
153692
  jsii_type="aws-cdk-lib.aws_quicksight.CfnRefreshSchedule",
153693
153693
  ):
153694
- '''Creates a refresh schedule for a dataset in Amazon QuickSight .
153694
+ '''Creates a refresh schedule for a dataset in QuickSight .
153695
153695
 
153696
153696
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-refreshschedule.html
153697
153697
  :cloudformationResource: AWS::QuickSight::RefreshSchedule
@@ -153932,7 +153932,7 @@ class CfnRefreshSchedule(
153932
153932
  ) -> None:
153933
153933
  '''A summary of a configured refresh schedule for a dataset.
153934
153934
 
153935
- :param refresh_type: The type of refresh that a dataset undergoes. Valid values are as follows:. - ``FULL_REFRESH`` : A complete refresh of a dataset. - ``INCREMENTAL_REFRESH`` : A partial refresh of some rows of a dataset, based on the time window specified. For more information on full and incremental refreshes, see `Refreshing SPICE data <https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html>`_ in the *Amazon QuickSight User Guide* .
153935
+ :param refresh_type: The type of refresh that a dataset undergoes. Valid values are as follows:. - ``FULL_REFRESH`` : A complete refresh of a dataset. - ``INCREMENTAL_REFRESH`` : A partial refresh of some rows of a dataset, based on the time window specified. For more information on full and incremental refreshes, see `Refreshing SPICE data <https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html>`_ in the *QuickSight User Guide* .
153936
153936
  :param schedule_frequency: The frequency for the refresh schedule.
153937
153937
  :param schedule_id: An identifier for the refresh schedule.
153938
153938
  :param start_after_date_time: Time after which the refresh schedule can be started, expressed in ``YYYY-MM-DDTHH:MM:SS`` format.
@@ -153984,7 +153984,7 @@ class CfnRefreshSchedule(
153984
153984
  - ``FULL_REFRESH`` : A complete refresh of a dataset.
153985
153985
  - ``INCREMENTAL_REFRESH`` : A partial refresh of some rows of a dataset, based on the time window specified.
153986
153986
 
153987
- For more information on full and incremental refreshes, see `Refreshing SPICE data <https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html>`_ in the *Amazon QuickSight User Guide* .
153987
+ For more information on full and incremental refreshes, see `Refreshing SPICE data <https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html>`_ in the *QuickSight User Guide* .
153988
153988
 
153989
153989
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-refreshschedule-refreshschedulemap.html#cfn-quicksight-refreshschedule-refreshschedulemap-refreshtype
153990
153990
  '''
@@ -154266,11 +154266,11 @@ class CfnTemplate(
154266
154266
  metaclass=jsii.JSIIMeta,
154267
154267
  jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate",
154268
154268
  ):
154269
- '''Creates a template from an existing Amazon QuickSight analysis or template.
154269
+ '''Creates a template from an existing QuickSight analysis or template.
154270
154270
 
154271
154271
  You can use the resulting template to create a dashboard.
154272
154272
 
154273
- A *template* is an entity in Amazon QuickSight that encapsulates the metadata required to create an analysis and that you can use to create s dashboard. A template adds a layer of abstraction by using placeholders to replace the dataset associated with the analysis. You can use templates to create dashboards by replacing dataset placeholders with datasets that follow the same schema that was used to create the source analysis and template.
154273
+ A *template* is an entity in QuickSight that encapsulates the metadata required to create an analysis and that you can use to create s dashboard. A template adds a layer of abstraction by using placeholders to replace the dataset associated with the analysis. You can use templates to create dashboards by replacing dataset placeholders with datasets that follow the same schema that was used to create the source analysis and template.
154274
154274
 
154275
154275
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-template.html
154276
154276
  :cloudformationResource: AWS::QuickSight::Template
@@ -202437,7 +202437,7 @@ class CfnTemplate(
202437
202437
  '''Permission for the resource.
202438
202438
 
202439
202439
  :param actions: The IAM action to grant or revoke permissions on.
202440
- :param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a Amazon QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
202440
+ :param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
202441
202441
  :param resource:
202442
202442
 
202443
202443
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-resourcepermission.html
@@ -202485,7 +202485,7 @@ class CfnTemplate(
202485
202485
 
202486
202486
  - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)
202487
202487
  - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)
202488
- - The ARN of an AWS account root: This is an IAM ARN rather than a Amazon QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
202488
+ - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
202489
202489
 
202490
202490
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-resourcepermission.html#cfn-quicksight-template-resourcepermission-principal
202491
202491
  '''
@@ -220977,7 +220977,7 @@ class CfnTheme(
220977
220977
  '''Permission for the resource.
220978
220978
 
220979
220979
  :param actions: The IAM action to grant or revoke permissions on.
220980
- :param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a Amazon QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
220980
+ :param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
220981
220981
  :param resource:
220982
220982
 
220983
220983
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-resourcepermission.html
@@ -221025,7 +221025,7 @@ class CfnTheme(
221025
221025
 
221026
221026
  - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)
221027
221027
  - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)
221028
- - The ARN of an AWS account root: This is an IAM ARN rather than a Amazon QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
221028
+ - The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
221029
221029
 
221030
221030
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-resourcepermission.html#cfn-quicksight-theme-resourcepermission-principal
221031
221031
  '''