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
@@ -4353,7 +4353,9 @@ class CfnConnectionGroup(
4353
4353
  metaclass=jsii.JSIIMeta,
4354
4354
  jsii_type="aws-cdk-lib.aws_cloudfront.CfnConnectionGroup",
4355
4355
  ):
4356
- '''Resource Type definition for AWS::CloudFront::ConnectionGroup.
4356
+ '''The connection group for your distribution tenants.
4357
+
4358
+ When you first create a distribution tenant and you don't specify a connection group, CloudFront will automatically create a default connection group for you. When you create a new distribution tenant and don't specify a connection group, the default one will be associated with your distribution tenant.
4357
4359
 
4358
4360
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectiongroup.html
4359
4361
  :cloudformationResource: AWS::CloudFront::ConnectionGroup
@@ -4393,10 +4395,10 @@ class CfnConnectionGroup(
4393
4395
  '''
4394
4396
  :param scope: Scope in which this resource is defined.
4395
4397
  :param id: Construct identifier for this resource (unique in its scope).
4396
- :param name:
4398
+ :param name: The name of the connection group.
4397
4399
  :param anycast_ip_list_id: The ID of the Anycast static IP list.
4398
- :param enabled:
4399
- :param ipv6_enabled:
4400
+ :param enabled: Whether the connection group is enabled.
4401
+ :param ipv6_enabled: IPv6 is enabled for the connection group.
4400
4402
  :param tags: A complex type that contains zero or more ``Tag`` elements.
4401
4403
  '''
4402
4404
  if __debug__:
@@ -4446,7 +4448,8 @@ class CfnConnectionGroup(
4446
4448
  @builtins.property
4447
4449
  @jsii.member(jsii_name="attrArn")
4448
4450
  def attr_arn(self) -> builtins.str:
4449
- '''
4451
+ '''The Amazon Resource Name (ARN) of the connection group.
4452
+
4450
4453
  :cloudformationAttribute: Arn
4451
4454
  '''
4452
4455
  return typing.cast(builtins.str, jsii.get(self, "attrArn"))
@@ -4454,7 +4457,8 @@ class CfnConnectionGroup(
4454
4457
  @builtins.property
4455
4458
  @jsii.member(jsii_name="attrCreatedTime")
4456
4459
  def attr_created_time(self) -> builtins.str:
4457
- '''
4460
+ '''The date and time when the connection group was created.
4461
+
4458
4462
  :cloudformationAttribute: CreatedTime
4459
4463
  '''
4460
4464
  return typing.cast(builtins.str, jsii.get(self, "attrCreatedTime"))
@@ -4462,7 +4466,7 @@ class CfnConnectionGroup(
4462
4466
  @builtins.property
4463
4467
  @jsii.member(jsii_name="attrETag")
4464
4468
  def attr_e_tag(self) -> builtins.str:
4465
- '''A complex type that contains ``Tag`` key and ``Tag`` value.
4469
+ '''The current version of the connection group.
4466
4470
 
4467
4471
  :cloudformationAttribute: ETag
4468
4472
  '''
@@ -4471,7 +4475,8 @@ class CfnConnectionGroup(
4471
4475
  @builtins.property
4472
4476
  @jsii.member(jsii_name="attrId")
4473
4477
  def attr_id(self) -> builtins.str:
4474
- '''
4478
+ '''The ID of the connection group.
4479
+
4475
4480
  :cloudformationAttribute: Id
4476
4481
  '''
4477
4482
  return typing.cast(builtins.str, jsii.get(self, "attrId"))
@@ -4479,7 +4484,8 @@ class CfnConnectionGroup(
4479
4484
  @builtins.property
4480
4485
  @jsii.member(jsii_name="attrIsDefault")
4481
4486
  def attr_is_default(self) -> _IResolvable_da3f097b:
4482
- '''
4487
+ '''Whether the connection group is the default connection group for the distribution tenants.
4488
+
4483
4489
  :cloudformationAttribute: IsDefault
4484
4490
  '''
4485
4491
  return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrIsDefault"))
@@ -4487,7 +4493,8 @@ class CfnConnectionGroup(
4487
4493
  @builtins.property
4488
4494
  @jsii.member(jsii_name="attrLastModifiedTime")
4489
4495
  def attr_last_modified_time(self) -> builtins.str:
4490
- '''
4496
+ '''The date and time when the connection group was updated.
4497
+
4491
4498
  :cloudformationAttribute: LastModifiedTime
4492
4499
  '''
4493
4500
  return typing.cast(builtins.str, jsii.get(self, "attrLastModifiedTime"))
@@ -4495,7 +4502,7 @@ class CfnConnectionGroup(
4495
4502
  @builtins.property
4496
4503
  @jsii.member(jsii_name="attrRoutingEndpoint")
4497
4504
  def attr_routing_endpoint(self) -> builtins.str:
4498
- '''Contains information about the Amazon Kinesis data stream where you are sending real-time log data in a real-time log configuration.
4505
+ '''The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
4499
4506
 
4500
4507
  :cloudformationAttribute: RoutingEndpoint
4501
4508
  '''
@@ -4504,7 +4511,8 @@ class CfnConnectionGroup(
4504
4511
  @builtins.property
4505
4512
  @jsii.member(jsii_name="attrStatus")
4506
4513
  def attr_status(self) -> builtins.str:
4507
- '''
4514
+ '''The status of the connection group.
4515
+
4508
4516
  :cloudformationAttribute: Status
4509
4517
  '''
4510
4518
  return typing.cast(builtins.str, jsii.get(self, "attrStatus"))
@@ -4523,6 +4531,7 @@ class CfnConnectionGroup(
4523
4531
  @builtins.property
4524
4532
  @jsii.member(jsii_name="name")
4525
4533
  def name(self) -> builtins.str:
4534
+ '''The name of the connection group.'''
4526
4535
  return typing.cast(builtins.str, jsii.get(self, "name"))
4527
4536
 
4528
4537
  @name.setter
@@ -4550,6 +4559,7 @@ class CfnConnectionGroup(
4550
4559
  def enabled(
4551
4560
  self,
4552
4561
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
4562
+ '''Whether the connection group is enabled.'''
4553
4563
  return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "enabled"))
4554
4564
 
4555
4565
  @enabled.setter
@@ -4567,6 +4577,7 @@ class CfnConnectionGroup(
4567
4577
  def ipv6_enabled(
4568
4578
  self,
4569
4579
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
4580
+ '''IPv6 is enabled for the connection group.'''
4570
4581
  return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "ipv6Enabled"))
4571
4582
 
4572
4583
  @ipv6_enabled.setter
@@ -4616,10 +4627,10 @@ class CfnConnectionGroupProps:
4616
4627
  ) -> None:
4617
4628
  '''Properties for defining a ``CfnConnectionGroup``.
4618
4629
 
4619
- :param name:
4630
+ :param name: The name of the connection group.
4620
4631
  :param anycast_ip_list_id: The ID of the Anycast static IP list.
4621
- :param enabled:
4622
- :param ipv6_enabled:
4632
+ :param enabled: Whether the connection group is enabled.
4633
+ :param ipv6_enabled: IPv6 is enabled for the connection group.
4623
4634
  :param tags: A complex type that contains zero or more ``Tag`` elements.
4624
4635
 
4625
4636
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectiongroup.html
@@ -4665,7 +4676,8 @@ class CfnConnectionGroupProps:
4665
4676
 
4666
4677
  @builtins.property
4667
4678
  def name(self) -> builtins.str:
4668
- '''
4679
+ '''The name of the connection group.
4680
+
4669
4681
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectiongroup.html#cfn-cloudfront-connectiongroup-name
4670
4682
  '''
4671
4683
  result = self._values.get("name")
@@ -4685,7 +4697,8 @@ class CfnConnectionGroupProps:
4685
4697
  def enabled(
4686
4698
  self,
4687
4699
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
4688
- '''
4700
+ '''Whether the connection group is enabled.
4701
+
4689
4702
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectiongroup.html#cfn-cloudfront-connectiongroup-enabled
4690
4703
  '''
4691
4704
  result = self._values.get("enabled")
@@ -4695,7 +4708,8 @@ class CfnConnectionGroupProps:
4695
4708
  def ipv6_enabled(
4696
4709
  self,
4697
4710
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
4698
- '''
4711
+ '''IPv6 is enabled for the connection group.
4712
+
4699
4713
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectiongroup.html#cfn-cloudfront-connectiongroup-ipv6enabled
4700
4714
  '''
4701
4715
  result = self._values.get("ipv6_enabled")
@@ -7329,7 +7343,7 @@ class CfnDistribution(
7329
7343
  :param cache_behaviors: A complex type that contains zero or more ``CacheBehavior`` elements.
7330
7344
  :param cnam_es: An alias for the CloudFront distribution's domain name. .. epigraph:: This property is legacy. We recommend that you use `Aliases <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-aliases>`_ instead.
7331
7345
  :param comment: A comment to describe the distribution. The comment cannot be longer than 128 characters. Default: - ""
7332
- :param connection_mode:
7346
+ :param connection_mode: The connection mode to filter distributions by.
7333
7347
  :param continuous_deployment_policy_id: The identifier of a continuous deployment policy. For more information, see ``CreateContinuousDeploymentPolicy`` .
7334
7348
  :param custom_error_responses: A complex type that controls the following:. - Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer. - How long CloudFront caches HTTP status codes in the 4xx and 5xx range. For more information about custom error pages, see `Customizing Error Responses <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html>`_ in the *Amazon CloudFront Developer Guide* .
7335
7349
  :param custom_origin: The user-defined HTTP server that serves as the origin for content that CloudFront distributes. .. epigraph:: This property is legacy. We recommend that you use `Origin <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html>`_ instead.
@@ -7343,7 +7357,7 @@ class CfnDistribution(
7343
7357
  :param restrictions: A complex type that identifies ways in which you want to restrict distribution of your content.
7344
7358
  :param s3_origin: The origin as an Amazon S3 bucket. .. epigraph:: This property is legacy. We recommend that you use `Origin <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html>`_ instead.
7345
7359
  :param staging: A Boolean that indicates whether this is a staging distribution. When this value is ``true`` , this is a staging distribution. When this value is ``false`` , this is not a staging distribution.
7346
- :param tenant_config:
7360
+ :param tenant_config: A distribution tenant configuration.
7347
7361
  :param viewer_certificate: A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.
7348
7362
  :param web_acl_id: A unique identifier that specifies the AWS WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of AWS WAF , use the ACL ARN, for example ``arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111`` . To specify a web ACL created using AWS WAF Classic, use the ACL ID, for example ``a1b2c3d4-5678-90ab-cdef-EXAMPLE11111`` . AWS WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about AWS WAF , see the `AWS WAF Developer Guide <https://docs.aws.amazon.com/waf/latest/developerguide/what-is-aws-waf.html>`_ . Default: - ""
7349
7363
 
@@ -7739,7 +7753,8 @@ class CfnDistribution(
7739
7753
 
7740
7754
  @builtins.property
7741
7755
  def connection_mode(self) -> typing.Optional[builtins.str]:
7742
- '''
7756
+ '''The connection mode to filter distributions by.
7757
+
7743
7758
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-connectionmode
7744
7759
  '''
7745
7760
  result = self._values.get("connection_mode")
@@ -7950,7 +7965,8 @@ class CfnDistribution(
7950
7965
  def tenant_config(
7951
7966
  self,
7952
7967
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDistribution.TenantConfigProperty"]]:
7953
- '''
7968
+ '''A distribution tenant configuration.
7969
+
7954
7970
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-tenantconfig
7955
7971
  '''
7956
7972
  result = self._values.get("tenant_config")
@@ -9676,9 +9692,12 @@ class CfnDistribution(
9676
9692
  definition: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistribution.DefinitionProperty", typing.Dict[builtins.str, typing.Any]]],
9677
9693
  name: builtins.str,
9678
9694
  ) -> None:
9679
- '''
9680
- :param definition:
9681
- :param name:
9695
+ '''A list of parameter values to add to the resource.
9696
+
9697
+ A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.
9698
+
9699
+ :param definition: The value that you assigned to the parameter.
9700
+ :param name: The name of the parameter.
9682
9701
 
9683
9702
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-parameterdefinition.html
9684
9703
  :exampleMetadata: fixture=_generated
@@ -9715,7 +9734,8 @@ class CfnDistribution(
9715
9734
  def definition(
9716
9735
  self,
9717
9736
  ) -> typing.Union[_IResolvable_da3f097b, "CfnDistribution.DefinitionProperty"]:
9718
- '''
9737
+ '''The value that you assigned to the parameter.
9738
+
9719
9739
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-parameterdefinition.html#cfn-cloudfront-distribution-parameterdefinition-definition
9720
9740
  '''
9721
9741
  result = self._values.get("definition")
@@ -9724,7 +9744,8 @@ class CfnDistribution(
9724
9744
 
9725
9745
  @builtins.property
9726
9746
  def name(self) -> builtins.str:
9727
- '''
9747
+ '''The name of the parameter.
9748
+
9728
9749
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-parameterdefinition.html#cfn-cloudfront-distribution-parameterdefinition-name
9729
9750
  '''
9730
9751
  result = self._values.get("name")
@@ -10056,8 +10077,9 @@ class CfnDistribution(
10056
10077
  *,
10057
10078
  parameter_definitions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistribution.ParameterDefinitionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
10058
10079
  ) -> None:
10059
- '''
10060
- :param parameter_definitions:
10080
+ '''The configuration for a distribution tenant.
10081
+
10082
+ :param parameter_definitions: The parameters that you specify for a distribution tenant.
10061
10083
 
10062
10084
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-tenantconfig.html
10063
10085
  :exampleMetadata: fixture=_generated
@@ -10094,7 +10116,8 @@ class CfnDistribution(
10094
10116
  def parameter_definitions(
10095
10117
  self,
10096
10118
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDistribution.ParameterDefinitionProperty"]]]]:
10097
- '''
10119
+ '''The parameters that you specify for a distribution tenant.
10120
+
10098
10121
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-tenantconfig.html#cfn-cloudfront-distribution-tenantconfig-parameterdefinitions
10099
10122
  '''
10100
10123
  result = self._values.get("parameter_definitions")
@@ -10707,7 +10730,7 @@ class CfnDistributionTenant(
10707
10730
  metaclass=jsii.JSIIMeta,
10708
10731
  jsii_type="aws-cdk-lib.aws_cloudfront.CfnDistributionTenant",
10709
10732
  ):
10710
- '''Resource Type definition for AWS::CloudFront::DistributionTenant.
10733
+ '''The distribution tenant.
10711
10734
 
10712
10735
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html
10713
10736
  :cloudformationResource: AWS::CloudFront::DistributionTenant
@@ -10774,14 +10797,14 @@ class CfnDistributionTenant(
10774
10797
  '''
10775
10798
  :param scope: Scope in which this resource is defined.
10776
10799
  :param id: Construct identifier for this resource (unique in its scope).
10777
- :param distribution_id: The distribution's identifier. For example: ``E1U5RQF7T870K0`` .
10778
- :param domains:
10779
- :param name:
10780
- :param connection_group_id:
10781
- :param customizations:
10782
- :param enabled:
10783
- :param managed_certificate_request:
10784
- :param parameters:
10800
+ :param distribution_id: The ID of the multi-tenant distribution.
10801
+ :param domains: The domains associated with the distribution tenant.
10802
+ :param name: The name of the distribution tenant.
10803
+ :param connection_group_id: The ID of the connection group for the distribution tenant. If you don't specify a connection group, CloudFront uses the default connection group.
10804
+ :param customizations: Customizations for the distribution tenant. For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and AWS WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create the distribution tenant.
10805
+ :param enabled: Indicates whether the distribution tenant is in an enabled state. If disabled, the distribution tenant won't serve traffic.
10806
+ :param managed_certificate_request: An object that represents the request for the Amazon CloudFront managed ACM certificate.
10807
+ :param parameters: A list of parameter values to add to the resource. A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.
10785
10808
  :param tags: A complex type that contains zero or more ``Tag`` elements.
10786
10809
  '''
10787
10810
  if __debug__:
@@ -10835,7 +10858,8 @@ class CfnDistributionTenant(
10835
10858
  @builtins.property
10836
10859
  @jsii.member(jsii_name="attrArn")
10837
10860
  def attr_arn(self) -> builtins.str:
10838
- '''
10861
+ '''The Amazon Resource Name (ARN) of the distribution tenant.
10862
+
10839
10863
  :cloudformationAttribute: Arn
10840
10864
  '''
10841
10865
  return typing.cast(builtins.str, jsii.get(self, "attrArn"))
@@ -10843,7 +10867,8 @@ class CfnDistributionTenant(
10843
10867
  @builtins.property
10844
10868
  @jsii.member(jsii_name="attrCreatedTime")
10845
10869
  def attr_created_time(self) -> builtins.str:
10846
- '''
10870
+ '''The date and time when the distribution tenant was created.
10871
+
10847
10872
  :cloudformationAttribute: CreatedTime
10848
10873
  '''
10849
10874
  return typing.cast(builtins.str, jsii.get(self, "attrCreatedTime"))
@@ -10859,7 +10884,7 @@ class CfnDistributionTenant(
10859
10884
  @builtins.property
10860
10885
  @jsii.member(jsii_name="attrETag")
10861
10886
  def attr_e_tag(self) -> builtins.str:
10862
- '''A complex type that contains ``Tag`` key and ``Tag`` value.
10887
+ '''The current version of the distribution tenant.
10863
10888
 
10864
10889
  :cloudformationAttribute: ETag
10865
10890
  '''
@@ -10868,7 +10893,8 @@ class CfnDistributionTenant(
10868
10893
  @builtins.property
10869
10894
  @jsii.member(jsii_name="attrId")
10870
10895
  def attr_id(self) -> builtins.str:
10871
- '''
10896
+ '''The ID of the distribution tenant.
10897
+
10872
10898
  :cloudformationAttribute: Id
10873
10899
  '''
10874
10900
  return typing.cast(builtins.str, jsii.get(self, "attrId"))
@@ -10876,7 +10902,8 @@ class CfnDistributionTenant(
10876
10902
  @builtins.property
10877
10903
  @jsii.member(jsii_name="attrLastModifiedTime")
10878
10904
  def attr_last_modified_time(self) -> builtins.str:
10879
- '''
10905
+ '''The date and time when the distribution tenant was updated.
10906
+
10880
10907
  :cloudformationAttribute: LastModifiedTime
10881
10908
  '''
10882
10909
  return typing.cast(builtins.str, jsii.get(self, "attrLastModifiedTime"))
@@ -10884,7 +10911,8 @@ class CfnDistributionTenant(
10884
10911
  @builtins.property
10885
10912
  @jsii.member(jsii_name="attrStatus")
10886
10913
  def attr_status(self) -> builtins.str:
10887
- '''
10914
+ '''The status of the distribution tenant.
10915
+
10888
10916
  :cloudformationAttribute: Status
10889
10917
  '''
10890
10918
  return typing.cast(builtins.str, jsii.get(self, "attrStatus"))
@@ -10903,7 +10931,7 @@ class CfnDistributionTenant(
10903
10931
  @builtins.property
10904
10932
  @jsii.member(jsii_name="distributionId")
10905
10933
  def distribution_id(self) -> builtins.str:
10906
- '''The distribution's identifier.'''
10934
+ '''The ID of the multi-tenant distribution.'''
10907
10935
  return typing.cast(builtins.str, jsii.get(self, "distributionId"))
10908
10936
 
10909
10937
  @distribution_id.setter
@@ -10916,6 +10944,7 @@ class CfnDistributionTenant(
10916
10944
  @builtins.property
10917
10945
  @jsii.member(jsii_name="domains")
10918
10946
  def domains(self) -> typing.List[builtins.str]:
10947
+ '''The domains associated with the distribution tenant.'''
10919
10948
  return typing.cast(typing.List[builtins.str], jsii.get(self, "domains"))
10920
10949
 
10921
10950
  @domains.setter
@@ -10928,6 +10957,7 @@ class CfnDistributionTenant(
10928
10957
  @builtins.property
10929
10958
  @jsii.member(jsii_name="name")
10930
10959
  def name(self) -> builtins.str:
10960
+ '''The name of the distribution tenant.'''
10931
10961
  return typing.cast(builtins.str, jsii.get(self, "name"))
10932
10962
 
10933
10963
  @name.setter
@@ -10940,6 +10970,7 @@ class CfnDistributionTenant(
10940
10970
  @builtins.property
10941
10971
  @jsii.member(jsii_name="connectionGroupId")
10942
10972
  def connection_group_id(self) -> typing.Optional[builtins.str]:
10973
+ '''The ID of the connection group for the distribution tenant.'''
10943
10974
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "connectionGroupId"))
10944
10975
 
10945
10976
  @connection_group_id.setter
@@ -10954,6 +10985,7 @@ class CfnDistributionTenant(
10954
10985
  def customizations(
10955
10986
  self,
10956
10987
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDistributionTenant.CustomizationsProperty"]]:
10988
+ '''Customizations for the distribution tenant.'''
10957
10989
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDistributionTenant.CustomizationsProperty"]], jsii.get(self, "customizations"))
10958
10990
 
10959
10991
  @customizations.setter
@@ -10971,6 +11003,7 @@ class CfnDistributionTenant(
10971
11003
  def enabled(
10972
11004
  self,
10973
11005
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
11006
+ '''Indicates whether the distribution tenant is in an enabled state.'''
10974
11007
  return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "enabled"))
10975
11008
 
10976
11009
  @enabled.setter
@@ -10988,6 +11021,7 @@ class CfnDistributionTenant(
10988
11021
  def managed_certificate_request(
10989
11022
  self,
10990
11023
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDistributionTenant.ManagedCertificateRequestProperty"]]:
11024
+ '''An object that represents the request for the Amazon CloudFront managed ACM certificate.'''
10991
11025
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDistributionTenant.ManagedCertificateRequestProperty"]], jsii.get(self, "managedCertificateRequest"))
10992
11026
 
10993
11027
  @managed_certificate_request.setter
@@ -11005,6 +11039,7 @@ class CfnDistributionTenant(
11005
11039
  def parameters(
11006
11040
  self,
11007
11041
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDistributionTenant.ParameterProperty"]]]]:
11042
+ '''A list of parameter values to add to the resource.'''
11008
11043
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDistributionTenant.ParameterProperty"]]]], jsii.get(self, "parameters"))
11009
11044
 
11010
11045
  @parameters.setter
@@ -11037,8 +11072,9 @@ class CfnDistributionTenant(
11037
11072
  )
11038
11073
  class CertificateProperty:
11039
11074
  def __init__(self, *, arn: typing.Optional[builtins.str] = None) -> None:
11040
- '''
11041
- :param arn:
11075
+ '''The AWS Certificate Manager (ACM) certificate associated with your distribution.
11076
+
11077
+ :param arn: The Amazon Resource Name (ARN) of the ACM certificate.
11042
11078
 
11043
11079
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-certificate.html
11044
11080
  :exampleMetadata: fixture=_generated
@@ -11062,7 +11098,8 @@ class CfnDistributionTenant(
11062
11098
 
11063
11099
  @builtins.property
11064
11100
  def arn(self) -> typing.Optional[builtins.str]:
11065
- '''
11101
+ '''The Amazon Resource Name (ARN) of the ACM certificate.
11102
+
11066
11103
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-certificate.html#cfn-cloudfront-distributiontenant-certificate-arn
11067
11104
  '''
11068
11105
  result = self._values.get("arn")
@@ -11096,10 +11133,13 @@ class CfnDistributionTenant(
11096
11133
  geo_restrictions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistributionTenant.GeoRestrictionCustomizationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
11097
11134
  web_acl: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistributionTenant.WebAclCustomizationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
11098
11135
  ) -> None:
11099
- '''
11100
- :param certificate:
11101
- :param geo_restrictions:
11102
- :param web_acl:
11136
+ '''Customizations for the distribution tenant.
11137
+
11138
+ For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and AWS WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create the distribution tenant.
11139
+
11140
+ :param certificate: The AWS Certificate Manager (ACM) certificate.
11141
+ :param geo_restrictions: The geographic restrictions.
11142
+ :param web_acl: The AWS WAF web ACL.
11103
11143
 
11104
11144
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-customizations.html
11105
11145
  :exampleMetadata: fixture=_generated
@@ -11141,7 +11181,8 @@ class CfnDistributionTenant(
11141
11181
  def certificate(
11142
11182
  self,
11143
11183
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDistributionTenant.CertificateProperty"]]:
11144
- '''
11184
+ '''The AWS Certificate Manager (ACM) certificate.
11185
+
11145
11186
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-customizations.html#cfn-cloudfront-distributiontenant-customizations-certificate
11146
11187
  '''
11147
11188
  result = self._values.get("certificate")
@@ -11151,7 +11192,8 @@ class CfnDistributionTenant(
11151
11192
  def geo_restrictions(
11152
11193
  self,
11153
11194
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDistributionTenant.GeoRestrictionCustomizationProperty"]]:
11154
- '''
11195
+ '''The geographic restrictions.
11196
+
11155
11197
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-customizations.html#cfn-cloudfront-distributiontenant-customizations-georestrictions
11156
11198
  '''
11157
11199
  result = self._values.get("geo_restrictions")
@@ -11161,7 +11203,8 @@ class CfnDistributionTenant(
11161
11203
  def web_acl(
11162
11204
  self,
11163
11205
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDistributionTenant.WebAclCustomizationProperty"]]:
11164
- '''
11206
+ '''The AWS WAF web ACL.
11207
+
11165
11208
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-customizations.html#cfn-cloudfront-distributiontenant-customizations-webacl
11166
11209
  '''
11167
11210
  result = self._values.get("web_acl")
@@ -11181,20 +11224,19 @@ class CfnDistributionTenant(
11181
11224
  @jsii.data_type(
11182
11225
  jsii_type="aws-cdk-lib.aws_cloudfront.CfnDistributionTenant.DomainResultProperty",
11183
11226
  jsii_struct_bases=[],
11184
- name_mapping={"domain": "domain", "reason": "reason", "status": "status"},
11227
+ name_mapping={"domain": "domain", "status": "status"},
11185
11228
  )
11186
11229
  class DomainResultProperty:
11187
11230
  def __init__(
11188
11231
  self,
11189
11232
  *,
11190
11233
  domain: typing.Optional[builtins.str] = None,
11191
- reason: typing.Optional[builtins.str] = None,
11192
11234
  status: typing.Optional[builtins.str] = None,
11193
11235
  ) -> None:
11194
- '''
11195
- :param domain:
11196
- :param reason:
11197
- :param status:
11236
+ '''The details about the domain result.
11237
+
11238
+ :param domain: The specified domain.
11239
+ :param status: Whether the domain is active or inactive.
11198
11240
 
11199
11241
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-domainresult.html
11200
11242
  :exampleMetadata: fixture=_generated
@@ -11207,42 +11249,32 @@ class CfnDistributionTenant(
11207
11249
 
11208
11250
  domain_result_property = cloudfront.CfnDistributionTenant.DomainResultProperty(
11209
11251
  domain="domain",
11210
- reason="reason",
11211
11252
  status="status"
11212
11253
  )
11213
11254
  '''
11214
11255
  if __debug__:
11215
11256
  type_hints = typing.get_type_hints(_typecheckingstub__d24d49d6e44d4deb653a24465ec61e7862ea07d5a5cdc7f3cfa829da2181be64)
11216
11257
  check_type(argname="argument domain", value=domain, expected_type=type_hints["domain"])
11217
- check_type(argname="argument reason", value=reason, expected_type=type_hints["reason"])
11218
11258
  check_type(argname="argument status", value=status, expected_type=type_hints["status"])
11219
11259
  self._values: typing.Dict[builtins.str, typing.Any] = {}
11220
11260
  if domain is not None:
11221
11261
  self._values["domain"] = domain
11222
- if reason is not None:
11223
- self._values["reason"] = reason
11224
11262
  if status is not None:
11225
11263
  self._values["status"] = status
11226
11264
 
11227
11265
  @builtins.property
11228
11266
  def domain(self) -> typing.Optional[builtins.str]:
11229
- '''
11267
+ '''The specified domain.
11268
+
11230
11269
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-domainresult.html#cfn-cloudfront-distributiontenant-domainresult-domain
11231
11270
  '''
11232
11271
  result = self._values.get("domain")
11233
11272
  return typing.cast(typing.Optional[builtins.str], result)
11234
11273
 
11235
- @builtins.property
11236
- def reason(self) -> typing.Optional[builtins.str]:
11237
- '''
11238
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-domainresult.html#cfn-cloudfront-distributiontenant-domainresult-reason
11239
- '''
11240
- result = self._values.get("reason")
11241
- return typing.cast(typing.Optional[builtins.str], result)
11242
-
11243
11274
  @builtins.property
11244
11275
  def status(self) -> typing.Optional[builtins.str]:
11245
- '''
11276
+ '''Whether the domain is active or inactive.
11277
+
11246
11278
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-domainresult.html#cfn-cloudfront-distributiontenant-domainresult-status
11247
11279
  '''
11248
11280
  result = self._values.get("status")
@@ -11271,9 +11303,10 @@ class CfnDistributionTenant(
11271
11303
  locations: typing.Optional[typing.Sequence[builtins.str]] = None,
11272
11304
  restriction_type: typing.Optional[builtins.str] = None,
11273
11305
  ) -> None:
11274
- '''
11275
- :param locations:
11276
- :param restriction_type:
11306
+ '''The customizations that you specified for the distribution tenant for geographic restrictions.
11307
+
11308
+ :param locations: The locations for geographic restrictions.
11309
+ :param restriction_type: The method that you want to use to restrict distribution of your content by country:. - ``none`` : No geographic restriction is enabled, meaning access to content is not restricted by client geo location. - ``blacklist`` : The ``Location`` elements specify the countries in which you don't want CloudFront to distribute your content. - ``whitelist`` : The ``Location`` elements specify the countries in which you want CloudFront to distribute your content.
11277
11310
 
11278
11311
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-georestrictioncustomization.html
11279
11312
  :exampleMetadata: fixture=_generated
@@ -11301,7 +11334,8 @@ class CfnDistributionTenant(
11301
11334
 
11302
11335
  @builtins.property
11303
11336
  def locations(self) -> typing.Optional[typing.List[builtins.str]]:
11304
- '''
11337
+ '''The locations for geographic restrictions.
11338
+
11305
11339
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-georestrictioncustomization.html#cfn-cloudfront-distributiontenant-georestrictioncustomization-locations
11306
11340
  '''
11307
11341
  result = self._values.get("locations")
@@ -11309,7 +11343,12 @@ class CfnDistributionTenant(
11309
11343
 
11310
11344
  @builtins.property
11311
11345
  def restriction_type(self) -> typing.Optional[builtins.str]:
11312
- '''
11346
+ '''The method that you want to use to restrict distribution of your content by country:.
11347
+
11348
+ - ``none`` : No geographic restriction is enabled, meaning access to content is not restricted by client geo location.
11349
+ - ``blacklist`` : The ``Location`` elements specify the countries in which you don't want CloudFront to distribute your content.
11350
+ - ``whitelist`` : The ``Location`` elements specify the countries in which you want CloudFront to distribute your content.
11351
+
11313
11352
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-georestrictioncustomization.html#cfn-cloudfront-distributiontenant-georestrictioncustomization-restrictiontype
11314
11353
  '''
11315
11354
  result = self._values.get("restriction_type")
@@ -11343,10 +11382,11 @@ class CfnDistributionTenant(
11343
11382
  primary_domain_name: typing.Optional[builtins.str] = None,
11344
11383
  validation_token_host: typing.Optional[builtins.str] = None,
11345
11384
  ) -> None:
11346
- '''
11347
- :param certificate_transparency_logging_preference:
11348
- :param primary_domain_name:
11349
- :param validation_token_host:
11385
+ '''An object that represents the request for the Amazon CloudFront managed ACM certificate.
11386
+
11387
+ :param certificate_transparency_logging_preference: You can opt out of certificate transparency logging by specifying the ``disabled`` option. Opt in by specifying ``enabled`` . For more information, see `Certificate Transparency Logging <https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency>`_ in the *AWS Certificate Manager User Guide* .
11388
+ :param primary_domain_name: The primary domain name associated with the CloudFront managed ACM certificate.
11389
+ :param validation_token_host: Specify how the HTTP validation token will be served when requesting the CloudFront managed ACM certificate. - For ``cloudfront`` , CloudFront will automatically serve the validation token. Choose this mode if you can point the domain's DNS to CloudFront immediately. - For ``self-hosted`` , you serve the validation token from your existing infrastructure. Choose this mode when you need to maintain current traffic flow while your certificate is being issued. You can place the validation token at the well-known path on your existing web server, wait for ACM to validate and issue the certificate, and then update your DNS to point to CloudFront.
11350
11390
 
11351
11391
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-managedcertificaterequest.html
11352
11392
  :exampleMetadata: fixture=_generated
@@ -11380,7 +11420,10 @@ class CfnDistributionTenant(
11380
11420
  def certificate_transparency_logging_preference(
11381
11421
  self,
11382
11422
  ) -> typing.Optional[builtins.str]:
11383
- '''
11423
+ '''You can opt out of certificate transparency logging by specifying the ``disabled`` option.
11424
+
11425
+ Opt in by specifying ``enabled`` . For more information, see `Certificate Transparency Logging <https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency>`_ in the *AWS Certificate Manager User Guide* .
11426
+
11384
11427
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-managedcertificaterequest.html#cfn-cloudfront-distributiontenant-managedcertificaterequest-certificatetransparencyloggingpreference
11385
11428
  '''
11386
11429
  result = self._values.get("certificate_transparency_logging_preference")
@@ -11388,7 +11431,8 @@ class CfnDistributionTenant(
11388
11431
 
11389
11432
  @builtins.property
11390
11433
  def primary_domain_name(self) -> typing.Optional[builtins.str]:
11391
- '''
11434
+ '''The primary domain name associated with the CloudFront managed ACM certificate.
11435
+
11392
11436
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-managedcertificaterequest.html#cfn-cloudfront-distributiontenant-managedcertificaterequest-primarydomainname
11393
11437
  '''
11394
11438
  result = self._values.get("primary_domain_name")
@@ -11396,7 +11440,11 @@ class CfnDistributionTenant(
11396
11440
 
11397
11441
  @builtins.property
11398
11442
  def validation_token_host(self) -> typing.Optional[builtins.str]:
11399
- '''
11443
+ '''Specify how the HTTP validation token will be served when requesting the CloudFront managed ACM certificate.
11444
+
11445
+ - For ``cloudfront`` , CloudFront will automatically serve the validation token. Choose this mode if you can point the domain's DNS to CloudFront immediately.
11446
+ - For ``self-hosted`` , you serve the validation token from your existing infrastructure. Choose this mode when you need to maintain current traffic flow while your certificate is being issued. You can place the validation token at the well-known path on your existing web server, wait for ACM to validate and issue the certificate, and then update your DNS to point to CloudFront.
11447
+
11400
11448
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-managedcertificaterequest.html#cfn-cloudfront-distributiontenant-managedcertificaterequest-validationtokenhost
11401
11449
  '''
11402
11450
  result = self._values.get("validation_token_host")
@@ -11425,9 +11473,12 @@ class CfnDistributionTenant(
11425
11473
  name: typing.Optional[builtins.str] = None,
11426
11474
  value: typing.Optional[builtins.str] = None,
11427
11475
  ) -> None:
11428
- '''
11429
- :param name:
11430
- :param value:
11476
+ '''A list of parameter values to add to the resource.
11477
+
11478
+ A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.
11479
+
11480
+ :param name: The parameter name.
11481
+ :param value: The parameter value.
11431
11482
 
11432
11483
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-parameter.html
11433
11484
  :exampleMetadata: fixture=_generated
@@ -11455,7 +11506,8 @@ class CfnDistributionTenant(
11455
11506
 
11456
11507
  @builtins.property
11457
11508
  def name(self) -> typing.Optional[builtins.str]:
11458
- '''
11509
+ '''The parameter name.
11510
+
11459
11511
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-parameter.html#cfn-cloudfront-distributiontenant-parameter-name
11460
11512
  '''
11461
11513
  result = self._values.get("name")
@@ -11463,7 +11515,8 @@ class CfnDistributionTenant(
11463
11515
 
11464
11516
  @builtins.property
11465
11517
  def value(self) -> typing.Optional[builtins.str]:
11466
- '''
11518
+ '''The parameter value.
11519
+
11467
11520
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-parameter.html#cfn-cloudfront-distributiontenant-parameter-value
11468
11521
  '''
11469
11522
  result = self._values.get("value")
@@ -11492,9 +11545,10 @@ class CfnDistributionTenant(
11492
11545
  action: typing.Optional[builtins.str] = None,
11493
11546
  arn: typing.Optional[builtins.str] = None,
11494
11547
  ) -> None:
11495
- '''
11496
- :param action:
11497
- :param arn:
11548
+ '''The AWS WAF web ACL customization specified for the distribution tenant.
11549
+
11550
+ :param action: The action for the AWS WAF web ACL customization. You can specify ``override`` to specify a separate AWS WAF web ACL for the distribution tenant. If you specify ``disable`` , the distribution tenant won't have AWS WAF web ACL protections and won't inherit from the multi-tenant distribution.
11551
+ :param arn: The Amazon Resource Name (ARN) of the AWS WAF web ACL.
11498
11552
 
11499
11553
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-webaclcustomization.html
11500
11554
  :exampleMetadata: fixture=_generated
@@ -11522,7 +11576,10 @@ class CfnDistributionTenant(
11522
11576
 
11523
11577
  @builtins.property
11524
11578
  def action(self) -> typing.Optional[builtins.str]:
11525
- '''
11579
+ '''The action for the AWS WAF web ACL customization.
11580
+
11581
+ You can specify ``override`` to specify a separate AWS WAF web ACL for the distribution tenant. If you specify ``disable`` , the distribution tenant won't have AWS WAF web ACL protections and won't inherit from the multi-tenant distribution.
11582
+
11526
11583
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-webaclcustomization.html#cfn-cloudfront-distributiontenant-webaclcustomization-action
11527
11584
  '''
11528
11585
  result = self._values.get("action")
@@ -11530,7 +11587,8 @@ class CfnDistributionTenant(
11530
11587
 
11531
11588
  @builtins.property
11532
11589
  def arn(self) -> typing.Optional[builtins.str]:
11533
- '''
11590
+ '''The Amazon Resource Name (ARN) of the AWS WAF web ACL.
11591
+
11534
11592
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-webaclcustomization.html#cfn-cloudfront-distributiontenant-webaclcustomization-arn
11535
11593
  '''
11536
11594
  result = self._values.get("arn")
@@ -11579,14 +11637,14 @@ class CfnDistributionTenantProps:
11579
11637
  ) -> None:
11580
11638
  '''Properties for defining a ``CfnDistributionTenant``.
11581
11639
 
11582
- :param distribution_id: The distribution's identifier. For example: ``E1U5RQF7T870K0`` .
11583
- :param domains:
11584
- :param name:
11585
- :param connection_group_id:
11586
- :param customizations:
11587
- :param enabled:
11588
- :param managed_certificate_request:
11589
- :param parameters:
11640
+ :param distribution_id: The ID of the multi-tenant distribution.
11641
+ :param domains: The domains associated with the distribution tenant.
11642
+ :param name: The name of the distribution tenant.
11643
+ :param connection_group_id: The ID of the connection group for the distribution tenant. If you don't specify a connection group, CloudFront uses the default connection group.
11644
+ :param customizations: Customizations for the distribution tenant. For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and AWS WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create the distribution tenant.
11645
+ :param enabled: Indicates whether the distribution tenant is in an enabled state. If disabled, the distribution tenant won't serve traffic.
11646
+ :param managed_certificate_request: An object that represents the request for the Amazon CloudFront managed ACM certificate.
11647
+ :param parameters: A list of parameter values to add to the resource. A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.
11590
11648
  :param tags: A complex type that contains zero or more ``Tag`` elements.
11591
11649
 
11592
11650
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html
@@ -11665,9 +11723,7 @@ class CfnDistributionTenantProps:
11665
11723
 
11666
11724
  @builtins.property
11667
11725
  def distribution_id(self) -> builtins.str:
11668
- '''The distribution's identifier.
11669
-
11670
- For example: ``E1U5RQF7T870K0`` .
11726
+ '''The ID of the multi-tenant distribution.
11671
11727
 
11672
11728
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html#cfn-cloudfront-distributiontenant-distributionid
11673
11729
  '''
@@ -11677,7 +11733,8 @@ class CfnDistributionTenantProps:
11677
11733
 
11678
11734
  @builtins.property
11679
11735
  def domains(self) -> typing.List[builtins.str]:
11680
- '''
11736
+ '''The domains associated with the distribution tenant.
11737
+
11681
11738
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html#cfn-cloudfront-distributiontenant-domains
11682
11739
  '''
11683
11740
  result = self._values.get("domains")
@@ -11686,7 +11743,8 @@ class CfnDistributionTenantProps:
11686
11743
 
11687
11744
  @builtins.property
11688
11745
  def name(self) -> builtins.str:
11689
- '''
11746
+ '''The name of the distribution tenant.
11747
+
11690
11748
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html#cfn-cloudfront-distributiontenant-name
11691
11749
  '''
11692
11750
  result = self._values.get("name")
@@ -11695,7 +11753,10 @@ class CfnDistributionTenantProps:
11695
11753
 
11696
11754
  @builtins.property
11697
11755
  def connection_group_id(self) -> typing.Optional[builtins.str]:
11698
- '''
11756
+ '''The ID of the connection group for the distribution tenant.
11757
+
11758
+ If you don't specify a connection group, CloudFront uses the default connection group.
11759
+
11699
11760
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html#cfn-cloudfront-distributiontenant-connectiongroupid
11700
11761
  '''
11701
11762
  result = self._values.get("connection_group_id")
@@ -11705,7 +11766,10 @@ class CfnDistributionTenantProps:
11705
11766
  def customizations(
11706
11767
  self,
11707
11768
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDistributionTenant.CustomizationsProperty]]:
11708
- '''
11769
+ '''Customizations for the distribution tenant.
11770
+
11771
+ For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and AWS WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create the distribution tenant.
11772
+
11709
11773
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html#cfn-cloudfront-distributiontenant-customizations
11710
11774
  '''
11711
11775
  result = self._values.get("customizations")
@@ -11715,7 +11779,10 @@ class CfnDistributionTenantProps:
11715
11779
  def enabled(
11716
11780
  self,
11717
11781
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
11718
- '''
11782
+ '''Indicates whether the distribution tenant is in an enabled state.
11783
+
11784
+ If disabled, the distribution tenant won't serve traffic.
11785
+
11719
11786
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html#cfn-cloudfront-distributiontenant-enabled
11720
11787
  '''
11721
11788
  result = self._values.get("enabled")
@@ -11725,7 +11792,8 @@ class CfnDistributionTenantProps:
11725
11792
  def managed_certificate_request(
11726
11793
  self,
11727
11794
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDistributionTenant.ManagedCertificateRequestProperty]]:
11728
- '''
11795
+ '''An object that represents the request for the Amazon CloudFront managed ACM certificate.
11796
+
11729
11797
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html#cfn-cloudfront-distributiontenant-managedcertificaterequest
11730
11798
  '''
11731
11799
  result = self._values.get("managed_certificate_request")
@@ -11735,7 +11803,10 @@ class CfnDistributionTenantProps:
11735
11803
  def parameters(
11736
11804
  self,
11737
11805
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDistributionTenant.ParameterProperty]]]]:
11738
- '''
11806
+ '''A list of parameter values to add to the resource.
11807
+
11808
+ A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.
11809
+
11739
11810
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html#cfn-cloudfront-distributiontenant-parameters
11740
11811
  '''
11741
11812
  result = self._values.get("parameters")
@@ -14722,9 +14793,9 @@ class CfnRealtimeLogConfig(
14722
14793
  kinesis_stream_config: typing.Union[_IResolvable_da3f097b, typing.Union["CfnRealtimeLogConfig.KinesisStreamConfigProperty", typing.Dict[builtins.str, typing.Any]]],
14723
14794
  stream_type: builtins.str,
14724
14795
  ) -> None:
14725
- '''Contains information about the Amazon Kinesis data stream where you are sending real-time log data in a real-time log configuration.
14796
+ '''Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration.
14726
14797
 
14727
- :param kinesis_stream_config: Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
14798
+ :param kinesis_stream_config: Contains information about the Amazon Kinesis data stream where you are sending real-time log data in a real-time log configuration.
14728
14799
  :param stream_type: The type of data stream where you are sending real-time log data. The only valid value is ``Kinesis`` .
14729
14800
 
14730
14801
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-realtimelogconfig-endpoint.html
@@ -14757,7 +14828,7 @@ class CfnRealtimeLogConfig(
14757
14828
  def kinesis_stream_config(
14758
14829
  self,
14759
14830
  ) -> typing.Union[_IResolvable_da3f097b, "CfnRealtimeLogConfig.KinesisStreamConfigProperty"]:
14760
- '''Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
14831
+ '''Contains information about the Amazon Kinesis data stream where you are sending real-time log data in a real-time log configuration.
14761
14832
 
14762
14833
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-realtimelogconfig-endpoint.html#cfn-cloudfront-realtimelogconfig-endpoint-kinesisstreamconfig
14763
14834
  '''
@@ -21153,6 +21224,12 @@ class KeyGroup(
21153
21224
  check_type(argname="argument key_group_id", value=key_group_id, expected_type=type_hints["key_group_id"])
21154
21225
  return typing.cast(IKeyGroup, jsii.sinvoke(cls, "fromKeyGroupId", [scope, id, key_group_id]))
21155
21226
 
21227
+ @jsii.python.classproperty
21228
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
21229
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
21230
+ '''Uniquely identifies this class.'''
21231
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
21232
+
21156
21233
  @builtins.property
21157
21234
  @jsii.member(jsii_name="keyGroupId")
21158
21235
  def key_group_id(self) -> builtins.str:
@@ -21328,6 +21405,12 @@ class KeyValueStore(
21328
21405
  check_type(argname="argument key_value_store_arn", value=key_value_store_arn, expected_type=type_hints["key_value_store_arn"])
21329
21406
  return typing.cast(IKeyValueStore, jsii.sinvoke(cls, "fromKeyValueStoreArn", [scope, id, key_value_store_arn]))
21330
21407
 
21408
+ @jsii.python.classproperty
21409
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
21410
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
21411
+ '''Uniquely identifies this class.'''
21412
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
21413
+
21331
21414
  @builtins.property
21332
21415
  @jsii.member(jsii_name="keyValueStoreArn")
21333
21416
  def key_value_store_arn(self) -> builtins.str:
@@ -21877,6 +21960,12 @@ class OriginAccessIdentity(
21877
21960
  '''The ARN to include in S3 bucket policy to allow CloudFront access.'''
21878
21961
  return typing.cast(builtins.str, jsii.invoke(self, "arn", []))
21879
21962
 
21963
+ @jsii.python.classproperty
21964
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
21965
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
21966
+ '''Uniquely identifies this class.'''
21967
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
21968
+
21880
21969
  @builtins.property
21881
21970
  @jsii.member(jsii_name="cloudFrontOriginAccessIdentityS3CanonicalUserId")
21882
21971
  def cloud_front_origin_access_identity_s3_canonical_user_id(self) -> builtins.str:
@@ -23015,6 +23104,12 @@ class OriginRequestPolicy(
23015
23104
  '''This policy is designed for use with an origin that is an AWS Elemental MediaTailor endpoint.'''
23016
23105
  return typing.cast(IOriginRequestPolicy, jsii.sget(cls, "ELEMENTAL_MEDIA_TAILOR"))
23017
23106
 
23107
+ @jsii.python.classproperty
23108
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
23109
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
23110
+ '''Uniquely identifies this class.'''
23111
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
23112
+
23018
23113
  @jsii.python.classproperty
23019
23114
  @jsii.member(jsii_name="USER_AGENT_REFERER_HEADERS")
23020
23115
  def USER_AGENT_REFERER_HEADERS(cls) -> IOriginRequestPolicy:
@@ -23386,6 +23481,12 @@ class PublicKey(
23386
23481
  check_type(argname="argument public_key_id", value=public_key_id, expected_type=type_hints["public_key_id"])
23387
23482
  return typing.cast(IPublicKey, jsii.sinvoke(cls, "fromPublicKeyId", [scope, id, public_key_id]))
23388
23483
 
23484
+ @jsii.python.classproperty
23485
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
23486
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
23487
+ '''Uniquely identifies this class.'''
23488
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
23489
+
23389
23490
  @builtins.property
23390
23491
  @jsii.member(jsii_name="publicKeyId")
23391
23492
  def public_key_id(self) -> builtins.str:
@@ -23565,6 +23666,12 @@ class RealtimeLogConfig(
23565
23666
 
23566
23667
  jsii.create(self.__class__, self, [scope, id, props])
23567
23668
 
23669
+ @jsii.python.classproperty
23670
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
23671
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
23672
+ '''Uniquely identifies this class.'''
23673
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
23674
+
23568
23675
  @builtins.property
23569
23676
  @jsii.member(jsii_name="realtimeLogConfigArn")
23570
23677
  def realtime_log_config_arn(self) -> builtins.str:
@@ -24483,6 +24590,12 @@ class ResponseHeadersPolicy(
24483
24590
  '''Use this managed policy to allow CORS requests from any origin, including preflight requests, and add a set of security headers to all responses that CloudFront sends to viewers.'''
24484
24591
  return typing.cast(IResponseHeadersPolicy, jsii.sget(cls, "CORS_ALLOW_ALL_ORIGINS_WITH_PREFLIGHT_AND_SECURITY_HEADERS"))
24485
24592
 
24593
+ @jsii.python.classproperty
24594
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
24595
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
24596
+ '''Uniquely identifies this class.'''
24597
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
24598
+
24486
24599
  @jsii.python.classproperty
24487
24600
  @jsii.member(jsii_name="SECURITY_HEADERS")
24488
24601
  def SECURITY_HEADERS(cls) -> IResponseHeadersPolicy:
@@ -25416,6 +25529,12 @@ class S3OriginAccessControl(
25416
25529
  check_type(argname="argument origin_access_control_id", value=origin_access_control_id, expected_type=type_hints["origin_access_control_id"])
25417
25530
  return typing.cast(IOriginAccessControl, jsii.sinvoke(cls, "fromOriginAccessControlId", [scope, id, origin_access_control_id]))
25418
25531
 
25532
+ @jsii.python.classproperty
25533
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
25534
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
25535
+ '''Uniquely identifies this class.'''
25536
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
25537
+
25419
25538
  @builtins.property
25420
25539
  @jsii.member(jsii_name="originAccessControlId")
25421
25540
  def origin_access_control_id(self) -> builtins.str:
@@ -26481,6 +26600,12 @@ class VpcOrigin(
26481
26600
  check_type(argname="argument vpc_origin_id", value=vpc_origin_id, expected_type=type_hints["vpc_origin_id"])
26482
26601
  return typing.cast(IVpcOrigin, jsii.sinvoke(cls, "fromVpcOriginId", [scope, id, vpc_origin_id]))
26483
26602
 
26603
+ @jsii.python.classproperty
26604
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
26605
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
26606
+ '''Uniquely identifies this class.'''
26607
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
26608
+
26484
26609
  @builtins.property
26485
26610
  @jsii.member(jsii_name="cdkTagManager")
26486
26611
  def cdk_tag_manager(self) -> _TagManager_0a598cb3:
@@ -27218,6 +27343,12 @@ class CachePolicy(
27218
27343
  '''Designed for use with an origin that is an AWS Elemental MediaPackage endpoint.'''
27219
27344
  return typing.cast(ICachePolicy, jsii.sget(cls, "ELEMENTAL_MEDIA_PACKAGE"))
27220
27345
 
27346
+ @jsii.python.classproperty
27347
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
27348
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
27349
+ '''Uniquely identifies this class.'''
27350
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
27351
+
27221
27352
  @jsii.python.classproperty
27222
27353
  @jsii.member(jsii_name="USE_ORIGIN_CACHE_CONTROL_HEADERS")
27223
27354
  def USE_ORIGIN_CACHE_CONTROL_HEADERS(cls) -> ICachePolicy:
@@ -27415,6 +27546,15 @@ class CloudFrontWebDistribution(
27415
27546
  check_type(argname="argument identity", value=identity, expected_type=type_hints["identity"])
27416
27547
  return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantCreateInvalidation", [identity]))
27417
27548
 
27549
+ @jsii.python.classproperty
27550
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
27551
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
27552
+ '''(deprecated) Uniquely identifies this class.
27553
+
27554
+ :stability: deprecated
27555
+ '''
27556
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
27557
+
27418
27558
  @builtins.property
27419
27559
  @jsii.member(jsii_name="distributionArn")
27420
27560
  def distribution_arn(self) -> builtins.str:
@@ -28395,6 +28535,12 @@ class Distribution(
28395
28535
 
28396
28536
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTotalErrorRate", [props]))
28397
28537
 
28538
+ @jsii.python.classproperty
28539
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
28540
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
28541
+ '''Uniquely identifies this class.'''
28542
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
28543
+
28398
28544
  @builtins.property
28399
28545
  @jsii.member(jsii_name="distributionArn")
28400
28546
  def distribution_arn(self) -> builtins.str:
@@ -28510,6 +28656,12 @@ class Function(
28510
28656
 
28511
28657
  return typing.cast(IFunction, jsii.sinvoke(cls, "fromFunctionAttributes", [scope, id, attrs]))
28512
28658
 
28659
+ @jsii.python.classproperty
28660
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
28661
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
28662
+ '''Uniquely identifies this class.'''
28663
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
28664
+
28513
28665
  @builtins.property
28514
28666
  @jsii.member(jsii_name="functionArn")
28515
28667
  def function_arn(self) -> builtins.str:
@@ -28634,6 +28786,12 @@ class FunctionUrlOriginAccessControl(
28634
28786
  check_type(argname="argument origin_access_control_id", value=origin_access_control_id, expected_type=type_hints["origin_access_control_id"])
28635
28787
  return typing.cast(IOriginAccessControl, jsii.sinvoke(cls, "fromOriginAccessControlId", [scope, id, origin_access_control_id]))
28636
28788
 
28789
+ @jsii.python.classproperty
28790
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
28791
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
28792
+ '''Uniquely identifies this class.'''
28793
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
28794
+
28637
28795
  @builtins.property
28638
28796
  @jsii.member(jsii_name="originAccessControlId")
28639
28797
  def origin_access_control_id(self) -> builtins.str:
@@ -29838,7 +29996,6 @@ def _typecheckingstub__0491da142c813dc4673791039712e33ce224f81450f91a62e3bae808f
29838
29996
  def _typecheckingstub__d24d49d6e44d4deb653a24465ec61e7862ea07d5a5cdc7f3cfa829da2181be64(
29839
29997
  *,
29840
29998
  domain: typing.Optional[builtins.str] = None,
29841
- reason: typing.Optional[builtins.str] = None,
29842
29999
  status: typing.Optional[builtins.str] = None,
29843
30000
  ) -> None:
29844
30001
  """Type checking stubs"""