aws-cdk-lib 2.114.0__py3-none-any.whl → 2.115.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 (47) hide show
  1. aws_cdk/__init__.py +7 -1
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.114.0.jsii.tgz → aws-cdk-lib@2.115.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +6 -0
  5. aws_cdk/aws_apigatewayv2/__init__.py +223 -574
  6. aws_cdk/aws_autoscaling/__init__.py +99 -86
  7. aws_cdk/aws_bedrock/__init__.py +355 -0
  8. aws_cdk/aws_billingconductor/__init__.py +41 -0
  9. aws_cdk/aws_cleanrooms/__init__.py +46 -20
  10. aws_cdk/aws_cloudformation/__init__.py +5 -1
  11. aws_cdk/aws_cloudtrail/__init__.py +89 -0
  12. aws_cdk/aws_codedeploy/__init__.py +233 -1
  13. aws_cdk/aws_connect/__init__.py +49 -2
  14. aws_cdk/aws_dlm/__init__.py +8 -11
  15. aws_cdk/aws_dms/__init__.py +3861 -1643
  16. aws_cdk/aws_ec2/__init__.py +91 -47
  17. aws_cdk/aws_ecs/__init__.py +18 -0
  18. aws_cdk/aws_efs/__init__.py +1 -1
  19. aws_cdk/aws_eks/__init__.py +26 -13
  20. aws_cdk/aws_elasticloadbalancingv2/__init__.py +110 -54
  21. aws_cdk/aws_emr/__init__.py +287 -18
  22. aws_cdk/aws_eventschemas/__init__.py +1 -1
  23. aws_cdk/aws_fis/__init__.py +466 -34
  24. aws_cdk/aws_iam/__init__.py +47 -35
  25. aws_cdk/aws_internetmonitor/__init__.py +10 -12
  26. aws_cdk/aws_lightsail/__init__.py +4 -2
  27. aws_cdk/aws_logs/__init__.py +5 -4
  28. aws_cdk/aws_opensearchservice/__init__.py +47 -0
  29. aws_cdk/aws_osis/__init__.py +272 -32
  30. aws_cdk/aws_rds/__init__.py +205 -87
  31. aws_cdk/aws_resiliencehub/__init__.py +9 -14
  32. aws_cdk/aws_rolesanywhere/__init__.py +41 -53
  33. aws_cdk/aws_route53/__init__.py +3 -3
  34. aws_cdk/aws_route53_targets/__init__.py +2 -2
  35. aws_cdk/aws_s3/__init__.py +2 -6
  36. aws_cdk/aws_s3express/__init__.py +3 -3
  37. aws_cdk/aws_sagemaker/__init__.py +82 -11
  38. aws_cdk/aws_sns/__init__.py +181 -0
  39. aws_cdk/aws_stepfunctions/__init__.py +16 -8
  40. aws_cdk/aws_stepfunctions_tasks/__init__.py +975 -139
  41. aws_cdk/aws_workspacesthinclient/__init__.py +44 -35
  42. {aws_cdk_lib-2.114.0.dist-info → aws_cdk_lib-2.115.0.dist-info}/METADATA +2 -2
  43. {aws_cdk_lib-2.114.0.dist-info → aws_cdk_lib-2.115.0.dist-info}/RECORD +47 -46
  44. {aws_cdk_lib-2.114.0.dist-info → aws_cdk_lib-2.115.0.dist-info}/LICENSE +0 -0
  45. {aws_cdk_lib-2.114.0.dist-info → aws_cdk_lib-2.115.0.dist-info}/NOTICE +0 -0
  46. {aws_cdk_lib-2.114.0.dist-info → aws_cdk_lib-2.115.0.dist-info}/WHEEL +0 -0
  47. {aws_cdk_lib-2.114.0.dist-info → aws_cdk_lib-2.115.0.dist-info}/top_level.txt +0 -0
@@ -720,12 +720,12 @@ class CfnApp(
720
720
  ) -> None:
721
721
  '''Defines a resource mapping.
722
722
 
723
- :param mapping_type: Specifies the type of resource mapping. - **AppRegistryApp** - The resource is mapped to another application. The name of the application is contained in the ``appRegistryAppName`` property. - **CfnStack** - The resource is mapped to a AWS CloudFormation stack. The name of the AWS CloudFormation stack is contained in the ``logicalStackName`` property. - **Resource** - The resource is mapped to another resource. The name of the resource is contained in the ``resourceName`` property. - **ResourceGroup** - The resource is mapped to AWS Resource Groups . The name of the resource group is contained in the ``resourceGroupName`` property.
723
+ :param mapping_type: Specifies the type of resource mapping.
724
724
  :param physical_resource_id: Identifier of the physical resource.
725
- :param eks_source_name: Name of the Amazon Elastic Kubernetes Service cluster and namespace this resource belongs to. .. epigraph:: This parameter accepts values in "eks-cluster/namespace" format.
726
- :param logical_stack_name: The name of the AWS CloudFormation stack this resource is mapped to.
727
- :param resource_name: Name of the resource that the resource is mapped to.
728
- :param terraform_source_name: The short name of the Terraform source.
725
+ :param eks_source_name: Name of the Amazon Elastic Kubernetes Service cluster and namespace that this resource is mapped to when the ``mappingType`` is ``EKS`` . .. epigraph:: This parameter accepts values in "eks-cluster/namespace" format.
726
+ :param logical_stack_name: Name of the AWS CloudFormation stack this resource is mapped to when the ``mappingType`` is ``CfnStack`` .
727
+ :param resource_name: Name of the resource that this resource is mapped to when the ``mappingType`` is ``Resource`` .
728
+ :param terraform_source_name: Name of the Terraform source that this resource is mapped to when the ``mappingType`` is ``Terraform`` .
729
729
 
730
730
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehub-app-resourcemapping.html
731
731
  :exampleMetadata: fixture=_generated
@@ -779,11 +779,6 @@ class CfnApp(
779
779
  def mapping_type(self) -> builtins.str:
780
780
  '''Specifies the type of resource mapping.
781
781
 
782
- - **AppRegistryApp** - The resource is mapped to another application. The name of the application is contained in the ``appRegistryAppName`` property.
783
- - **CfnStack** - The resource is mapped to a AWS CloudFormation stack. The name of the AWS CloudFormation stack is contained in the ``logicalStackName`` property.
784
- - **Resource** - The resource is mapped to another resource. The name of the resource is contained in the ``resourceName`` property.
785
- - **ResourceGroup** - The resource is mapped to AWS Resource Groups . The name of the resource group is contained in the ``resourceGroupName`` property.
786
-
787
782
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehub-app-resourcemapping.html#cfn-resiliencehub-app-resourcemapping-mappingtype
788
783
  '''
789
784
  result = self._values.get("mapping_type")
@@ -804,7 +799,7 @@ class CfnApp(
804
799
 
805
800
  @builtins.property
806
801
  def eks_source_name(self) -> typing.Optional[builtins.str]:
807
- '''Name of the Amazon Elastic Kubernetes Service cluster and namespace this resource belongs to.
802
+ '''Name of the Amazon Elastic Kubernetes Service cluster and namespace that this resource is mapped to when the ``mappingType`` is ``EKS`` .
808
803
 
809
804
  .. epigraph::
810
805
 
@@ -817,7 +812,7 @@ class CfnApp(
817
812
 
818
813
  @builtins.property
819
814
  def logical_stack_name(self) -> typing.Optional[builtins.str]:
820
- '''The name of the AWS CloudFormation stack this resource is mapped to.
815
+ '''Name of the AWS CloudFormation stack this resource is mapped to when the ``mappingType`` is ``CfnStack`` .
821
816
 
822
817
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehub-app-resourcemapping.html#cfn-resiliencehub-app-resourcemapping-logicalstackname
823
818
  '''
@@ -826,7 +821,7 @@ class CfnApp(
826
821
 
827
822
  @builtins.property
828
823
  def resource_name(self) -> typing.Optional[builtins.str]:
829
- '''Name of the resource that the resource is mapped to.
824
+ '''Name of the resource that this resource is mapped to when the ``mappingType`` is ``Resource`` .
830
825
 
831
826
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehub-app-resourcemapping.html#cfn-resiliencehub-app-resourcemapping-resourcename
832
827
  '''
@@ -835,7 +830,7 @@ class CfnApp(
835
830
 
836
831
  @builtins.property
837
832
  def terraform_source_name(self) -> typing.Optional[builtins.str]:
838
- '''The short name of the Terraform source.
833
+ '''Name of the Terraform source that this resource is mapped to when the ``mappingType`` is ``Terraform`` .
839
834
 
840
835
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehub-app-resourcemapping.html#cfn-resiliencehub-app-resourcemapping-terraformsourcename
841
836
  '''
@@ -365,11 +365,7 @@ class CfnProfile(
365
365
  metaclass=jsii.JSIIMeta,
366
366
  jsii_type="aws-cdk-lib.aws_rolesanywhere.CfnProfile",
367
367
  ):
368
- '''Creates a *profile* , a list of the roles that Roles Anywhere service is trusted to assume.
369
-
370
- You use profiles to intersect permissions with IAM managed policies.
371
-
372
- *Required permissions:* ``rolesanywhere:CreateProfile`` .
368
+ '''Creates a Profile.
373
369
 
374
370
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html
375
371
  :cloudformationResource: AWS::RolesAnywhere::Profile
@@ -415,14 +411,14 @@ class CfnProfile(
415
411
  '''
416
412
  :param scope: Scope in which this resource is defined.
417
413
  :param id: Construct identifier for this resource (unique in its scope).
418
- :param name: The name of the profile.
419
- :param role_arns: A list of IAM role ARNs. During ``CreateSession`` , if a matching role ARN is provided, the properties in this profile will be applied to the intersection session policy.
420
- :param duration_seconds: Sets the maximum number of seconds that vended temporary credentials through `CreateSession <https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html>`_ will be valid for, between 900 and 3600.
421
- :param enabled: Indicates whether the profile is enabled.
422
- :param managed_policy_arns: A list of managed policy ARNs that apply to the vended session credentials.
423
- :param require_instance_properties: Specifies whether instance properties are required in temporary credential requests with this profile.
424
- :param session_policy: A session policy that applies to the trust boundary of the vended session credentials.
425
- :param tags: The tags to attach to the profile.
414
+ :param name: The customer specified name of the resource.
415
+ :param role_arns: A list of IAM role ARNs that can be assumed when this profile is specified in a CreateSession request.
416
+ :param duration_seconds: The number of seconds vended session credentials will be valid for.
417
+ :param enabled: The enabled status of the resource.
418
+ :param managed_policy_arns: A list of managed policy ARNs. Managed policies identified by this list will be applied to the vended session credentials.
419
+ :param require_instance_properties: Specifies whether instance properties are required in CreateSession requests with this profile.
420
+ :param session_policy: A session policy that will applied to the trust boundary of the vended session credentials.
421
+ :param tags: A list of Tags.
426
422
  '''
427
423
  if __debug__:
428
424
  type_hints = typing.get_type_hints(_typecheckingstub__15739ec913066dea67815f6297a7c4e3ed351b4df22323a7b46fa138af1a7af8)
@@ -503,7 +499,7 @@ class CfnProfile(
503
499
  @builtins.property
504
500
  @jsii.member(jsii_name="name")
505
501
  def name(self) -> builtins.str:
506
- '''The name of the profile.'''
502
+ '''The customer specified name of the resource.'''
507
503
  return typing.cast(builtins.str, jsii.get(self, "name"))
508
504
 
509
505
  @name.setter
@@ -516,7 +512,7 @@ class CfnProfile(
516
512
  @builtins.property
517
513
  @jsii.member(jsii_name="roleArns")
518
514
  def role_arns(self) -> typing.List[builtins.str]:
519
- '''A list of IAM role ARNs.'''
515
+ '''A list of IAM role ARNs that can be assumed when this profile is specified in a CreateSession request.'''
520
516
  return typing.cast(typing.List[builtins.str], jsii.get(self, "roleArns"))
521
517
 
522
518
  @role_arns.setter
@@ -529,7 +525,7 @@ class CfnProfile(
529
525
  @builtins.property
530
526
  @jsii.member(jsii_name="durationSeconds")
531
527
  def duration_seconds(self) -> typing.Optional[jsii.Number]:
532
- '''Sets the maximum number of seconds that vended temporary credentials through `CreateSession <https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html>`_ will be valid for, between 900 and 3600.'''
528
+ '''The number of seconds vended session credentials will be valid for.'''
533
529
  return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "durationSeconds"))
534
530
 
535
531
  @duration_seconds.setter
@@ -544,7 +540,7 @@ class CfnProfile(
544
540
  def enabled(
545
541
  self,
546
542
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
547
- '''Indicates whether the profile is enabled.'''
543
+ '''The enabled status of the resource.'''
548
544
  return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "enabled"))
549
545
 
550
546
  @enabled.setter
@@ -560,7 +556,7 @@ class CfnProfile(
560
556
  @builtins.property
561
557
  @jsii.member(jsii_name="managedPolicyArns")
562
558
  def managed_policy_arns(self) -> typing.Optional[typing.List[builtins.str]]:
563
- '''A list of managed policy ARNs that apply to the vended session credentials.'''
559
+ '''A list of managed policy ARNs.'''
564
560
  return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "managedPolicyArns"))
565
561
 
566
562
  @managed_policy_arns.setter
@@ -578,7 +574,7 @@ class CfnProfile(
578
574
  def require_instance_properties(
579
575
  self,
580
576
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
581
- '''Specifies whether instance properties are required in temporary credential requests with this profile.'''
577
+ '''Specifies whether instance properties are required in CreateSession requests with this profile.'''
582
578
  return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "requireInstanceProperties"))
583
579
 
584
580
  @require_instance_properties.setter
@@ -594,7 +590,7 @@ class CfnProfile(
594
590
  @builtins.property
595
591
  @jsii.member(jsii_name="sessionPolicy")
596
592
  def session_policy(self) -> typing.Optional[builtins.str]:
597
- '''A session policy that applies to the trust boundary of the vended session credentials.'''
593
+ '''A session policy that will applied to the trust boundary of the vended session credentials.'''
598
594
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "sessionPolicy"))
599
595
 
600
596
  @session_policy.setter
@@ -607,7 +603,7 @@ class CfnProfile(
607
603
  @builtins.property
608
604
  @jsii.member(jsii_name="tagsRaw")
609
605
  def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
610
- '''The tags to attach to the profile.'''
606
+ '''A list of Tags.'''
611
607
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tagsRaw"))
612
608
 
613
609
  @tags_raw.setter
@@ -647,14 +643,14 @@ class CfnProfileProps:
647
643
  ) -> None:
648
644
  '''Properties for defining a ``CfnProfile``.
649
645
 
650
- :param name: The name of the profile.
651
- :param role_arns: A list of IAM role ARNs. During ``CreateSession`` , if a matching role ARN is provided, the properties in this profile will be applied to the intersection session policy.
652
- :param duration_seconds: Sets the maximum number of seconds that vended temporary credentials through `CreateSession <https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html>`_ will be valid for, between 900 and 3600.
653
- :param enabled: Indicates whether the profile is enabled.
654
- :param managed_policy_arns: A list of managed policy ARNs that apply to the vended session credentials.
655
- :param require_instance_properties: Specifies whether instance properties are required in temporary credential requests with this profile.
656
- :param session_policy: A session policy that applies to the trust boundary of the vended session credentials.
657
- :param tags: The tags to attach to the profile.
646
+ :param name: The customer specified name of the resource.
647
+ :param role_arns: A list of IAM role ARNs that can be assumed when this profile is specified in a CreateSession request.
648
+ :param duration_seconds: The number of seconds vended session credentials will be valid for.
649
+ :param enabled: The enabled status of the resource.
650
+ :param managed_policy_arns: A list of managed policy ARNs. Managed policies identified by this list will be applied to the vended session credentials.
651
+ :param require_instance_properties: Specifies whether instance properties are required in CreateSession requests with this profile.
652
+ :param session_policy: A session policy that will applied to the trust boundary of the vended session credentials.
653
+ :param tags: A list of Tags.
658
654
 
659
655
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html
660
656
  :exampleMetadata: fixture=_generated
@@ -710,7 +706,7 @@ class CfnProfileProps:
710
706
 
711
707
  @builtins.property
712
708
  def name(self) -> builtins.str:
713
- '''The name of the profile.
709
+ '''The customer specified name of the resource.
714
710
 
715
711
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-name
716
712
  '''
@@ -720,9 +716,7 @@ class CfnProfileProps:
720
716
 
721
717
  @builtins.property
722
718
  def role_arns(self) -> typing.List[builtins.str]:
723
- '''A list of IAM role ARNs.
724
-
725
- During ``CreateSession`` , if a matching role ARN is provided, the properties in this profile will be applied to the intersection session policy.
719
+ '''A list of IAM role ARNs that can be assumed when this profile is specified in a CreateSession request.
726
720
 
727
721
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-rolearns
728
722
  '''
@@ -732,7 +726,7 @@ class CfnProfileProps:
732
726
 
733
727
  @builtins.property
734
728
  def duration_seconds(self) -> typing.Optional[jsii.Number]:
735
- '''Sets the maximum number of seconds that vended temporary credentials through `CreateSession <https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html>`_ will be valid for, between 900 and 3600.
729
+ '''The number of seconds vended session credentials will be valid for.
736
730
 
737
731
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-durationseconds
738
732
  '''
@@ -743,7 +737,7 @@ class CfnProfileProps:
743
737
  def enabled(
744
738
  self,
745
739
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
746
- '''Indicates whether the profile is enabled.
740
+ '''The enabled status of the resource.
747
741
 
748
742
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-enabled
749
743
  '''
@@ -752,7 +746,9 @@ class CfnProfileProps:
752
746
 
753
747
  @builtins.property
754
748
  def managed_policy_arns(self) -> typing.Optional[typing.List[builtins.str]]:
755
- '''A list of managed policy ARNs that apply to the vended session credentials.
749
+ '''A list of managed policy ARNs.
750
+
751
+ Managed policies identified by this list will be applied to the vended session credentials.
756
752
 
757
753
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-managedpolicyarns
758
754
  '''
@@ -763,7 +759,7 @@ class CfnProfileProps:
763
759
  def require_instance_properties(
764
760
  self,
765
761
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
766
- '''Specifies whether instance properties are required in temporary credential requests with this profile.
762
+ '''Specifies whether instance properties are required in CreateSession requests with this profile.
767
763
 
768
764
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-requireinstanceproperties
769
765
  '''
@@ -772,7 +768,7 @@ class CfnProfileProps:
772
768
 
773
769
  @builtins.property
774
770
  def session_policy(self) -> typing.Optional[builtins.str]:
775
- '''A session policy that applies to the trust boundary of the vended session credentials.
771
+ '''A session policy that will applied to the trust boundary of the vended session credentials.
776
772
 
777
773
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-sessionpolicy
778
774
  '''
@@ -781,7 +777,7 @@ class CfnProfileProps:
781
777
 
782
778
  @builtins.property
783
779
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
784
- '''The tags to attach to the profile.
780
+ '''A list of Tags.
785
781
 
786
782
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html#cfn-rolesanywhere-profile-tags
787
783
  '''
@@ -806,11 +802,7 @@ class CfnTrustAnchor(
806
802
  metaclass=jsii.JSIIMeta,
807
803
  jsii_type="aws-cdk-lib.aws_rolesanywhere.CfnTrustAnchor",
808
804
  ):
809
- '''Creates a trust anchor to establish trust between IAM Roles Anywhere and your certificate authority (CA).
810
-
811
- You can define a trust anchor as a reference to an AWS Private Certificate Authority ( AWS Private CA ) or by uploading a CA certificate. Your AWS workloads can authenticate with the trust anchor using certificates issued by the CA in exchange for temporary AWS credentials.
812
-
813
- *Required permissions:* ``rolesanywhere:CreateTrustAnchor`` .
805
+ '''Creates a TrustAnchor.
814
806
 
815
807
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.html
816
808
  :cloudformationResource: AWS::RolesAnywhere::TrustAnchor
@@ -1154,7 +1146,7 @@ class CfnTrustAnchor(
1154
1146
  acm_pca_arn: typing.Optional[builtins.str] = None,
1155
1147
  x509_certificate_data: typing.Optional[builtins.str] = None,
1156
1148
  ) -> None:
1157
- '''The data field of the trust anchor depending on its type.
1149
+ '''A union object representing the data field of the TrustAnchor depending on its type.
1158
1150
 
1159
1151
  :param acm_pca_arn: The root certificate of the AWS Private Certificate Authority specified by this ARN is used in trust validation for temporary credential requests. Included for trust anchors of type ``AWS_ACM_PCA`` . .. epigraph:: This field is not supported in your region.
1160
1152
  :param x509_certificate_data: The PEM-encoded data for the certificate anchor. Included for trust anchors of type ``CERTIFICATE_BUNDLE`` .
@@ -1231,10 +1223,10 @@ class CfnTrustAnchor(
1231
1223
  source_data: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTrustAnchor.SourceDataProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1232
1224
  source_type: typing.Optional[builtins.str] = None,
1233
1225
  ) -> None:
1234
- '''The trust anchor type and its related certificate data.
1226
+ '''Object representing the TrustAnchor type and its related certificate data.
1235
1227
 
1236
- :param source_data: The data field of the trust anchor depending on its type.
1237
- :param source_type: The type of the TrustAnchor. .. epigraph:: ``AWS_ACM_PCA`` is not an allowed value in your region.
1228
+ :param source_data: A union object representing the data field of the TrustAnchor depending on its type.
1229
+ :param source_type: The type of the TrustAnchor.
1238
1230
 
1239
1231
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-source.html
1240
1232
  :exampleMetadata: fixture=_generated
@@ -1267,7 +1259,7 @@ class CfnTrustAnchor(
1267
1259
  def source_data(
1268
1260
  self,
1269
1261
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTrustAnchor.SourceDataProperty"]]:
1270
- '''The data field of the trust anchor depending on its type.
1262
+ '''A union object representing the data field of the TrustAnchor depending on its type.
1271
1263
 
1272
1264
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-source.html#cfn-rolesanywhere-trustanchor-source-sourcedata
1273
1265
  '''
@@ -1278,10 +1270,6 @@ class CfnTrustAnchor(
1278
1270
  def source_type(self) -> typing.Optional[builtins.str]:
1279
1271
  '''The type of the TrustAnchor.
1280
1272
 
1281
- .. epigraph::
1282
-
1283
- ``AWS_ACM_PCA`` is not an allowed value in your region.
1284
-
1285
1273
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-source.html#cfn-rolesanywhere-trustanchor-source-sourcetype
1286
1274
  '''
1287
1275
  result = self._values.get("source_type")
@@ -7224,7 +7224,7 @@ class RecordTarget(
7224
7224
 
7225
7225
  Example::
7226
7226
 
7227
- import aws_cdk.aws_apigatewayv2_alpha as apigwv2
7227
+ import aws_cdk.aws_apigatewayv2 as apigwv2
7228
7228
 
7229
7229
  # zone: route53.HostedZone
7230
7230
  # domain_name: apigwv2.DomainName
@@ -8427,7 +8427,7 @@ class ARecord(
8427
8427
 
8428
8428
  Example::
8429
8429
 
8430
- import aws_cdk.aws_apigatewayv2_alpha as apigwv2
8430
+ import aws_cdk.aws_apigatewayv2 as apigwv2
8431
8431
 
8432
8432
  # zone: route53.HostedZone
8433
8433
  # domain_name: apigwv2.DomainName
@@ -8519,7 +8519,7 @@ class ARecordProps(RecordSetOptions):
8519
8519
 
8520
8520
  Example::
8521
8521
 
8522
- import aws_cdk.aws_apigatewayv2_alpha as apigwv2
8522
+ import aws_cdk.aws_apigatewayv2 as apigwv2
8523
8523
 
8524
8524
  # zone: route53.HostedZone
8525
8525
  # domain_name: apigwv2.DomainName
@@ -20,7 +20,7 @@ This library contains Route53 Alias Record targets for:
20
20
  * API Gateway V2 custom domains
21
21
 
22
22
  ```python
23
- import aws_cdk.aws_apigatewayv2_alpha as apigwv2
23
+ import aws_cdk.aws_apigatewayv2 as apigwv2
24
24
 
25
25
  # zone: route53.HostedZone
26
26
  # domain_name: apigwv2.DomainName
@@ -279,7 +279,7 @@ class ApiGatewayv2DomainProperties(
279
279
 
280
280
  Example::
281
281
 
282
- import aws_cdk.aws_apigatewayv2_alpha as apigwv2
282
+ import aws_cdk.aws_apigatewayv2 as apigwv2
283
283
 
284
284
  # zone: route53.HostedZone
285
285
  # domain_name: apigwv2.DomainName
@@ -5680,8 +5680,8 @@ class CfnBucket(
5680
5680
  :param enabled: Specifies whether the inventory is enabled or disabled. If set to ``True`` , an inventory list is generated. If set to ``False`` , no inventory list is generated.
5681
5681
  :param id: The ID used to identify the inventory configuration.
5682
5682
  :param included_object_versions: Object versions to include in the inventory list. If set to ``All`` , the list includes all the object versions, which adds the version-related fields ``VersionId`` , ``IsLatest`` , and ``DeleteMarker`` to the list. If set to ``Current`` , the list does not contain these version-related fields.
5683
- :param schedule_frequency: Specifies the schedule for generating inventory results. *Allowed values* : ``Daily`` | ``Weekly``
5684
- :param optional_fields: Contains the optional fields that are included in the inventory results. *Valid values* : ``Size | LastModifiedDate | StorageClass | ETag | IsMultipartUploaded | ReplicationStatus | EncryptionStatus | ObjectLockRetainUntilDate | ObjectLockMode | ObjectLockLegalHoldStatus | IntelligentTieringAccessTier | BucketKeyStatus``
5683
+ :param schedule_frequency: Specifies the schedule for generating inventory results.
5684
+ :param optional_fields: Contains the optional fields that are included in the inventory results.
5685
5685
  :param prefix: Specifies the inventory filter prefix.
5686
5686
 
5687
5687
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventoryconfiguration.html
@@ -5783,8 +5783,6 @@ class CfnBucket(
5783
5783
  def schedule_frequency(self) -> builtins.str:
5784
5784
  '''Specifies the schedule for generating inventory results.
5785
5785
 
5786
- *Allowed values* : ``Daily`` | ``Weekly``
5787
-
5788
5786
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventoryconfiguration.html#cfn-s3-bucket-inventoryconfiguration-schedulefrequency
5789
5787
  '''
5790
5788
  result = self._values.get("schedule_frequency")
@@ -5795,8 +5793,6 @@ class CfnBucket(
5795
5793
  def optional_fields(self) -> typing.Optional[typing.List[builtins.str]]:
5796
5794
  '''Contains the optional fields that are included in the inventory results.
5797
5795
 
5798
- *Valid values* : ``Size | LastModifiedDate | StorageClass | ETag | IsMultipartUploaded | ReplicationStatus | EncryptionStatus | ObjectLockRetainUntilDate | ObjectLockMode | ObjectLockLegalHoldStatus | IntelligentTieringAccessTier | BucketKeyStatus``
5799
-
5800
5796
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventoryconfiguration.html#cfn-s3-bucket-inventoryconfiguration-optionalfields
5801
5797
  '''
5802
5798
  result = self._values.get("optional_fields")
@@ -334,7 +334,7 @@ class CfnDirectoryBucket(
334
334
  :param id: Construct identifier for this resource (unique in its scope).
335
335
  :param data_redundancy: The number of Availability Zone that's used for redundancy for the bucket.
336
336
  :param location_name: The name of the location where the bucket will be created. For directory buckets, the name of the location is the AZ ID of the Availability Zone where the bucket will be created. An example AZ ID value is ``usw2-az1`` .
337
- :param bucket_name: A name for the bucket. The bucket name must contain only lowercase letters, numbers, dots (.), and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone. The bucket name must also follow the format ``*bucket_base_name* -- *az_id* --x-s3`` (for example, ``*DOC-EXAMPLE-BUCKET* -- *usw2-az1* --x-s3`` ). If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name. For information about bucket naming restrictions, see `Directory bucket naming rules <https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html>`_ in the *Amazon S3 User Guide* . .. epigraph:: If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you need to replace the resource, specify a new name.
337
+ :param bucket_name: A name for the bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone. The bucket name must also follow the format ``*bucket_base_name* -- *az_id* --x-s3`` (for example, ``*DOC-EXAMPLE-BUCKET* -- *usw2-az1* --x-s3`` ). If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name. For information about bucket naming restrictions, see `Directory bucket naming rules <https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html>`_ in the *Amazon S3 User Guide* . .. epigraph:: If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you need to replace the resource, specify a new name.
338
338
  '''
339
339
  if __debug__:
340
340
  type_hints = typing.get_type_hints(_typecheckingstub__ea5a1e5897b0467fb93393ad6ea2dbcd3916f27713079e8bef3badf71ce2bb20)
@@ -455,7 +455,7 @@ class CfnDirectoryBucketProps:
455
455
 
456
456
  :param data_redundancy: The number of Availability Zone that's used for redundancy for the bucket.
457
457
  :param location_name: The name of the location where the bucket will be created. For directory buckets, the name of the location is the AZ ID of the Availability Zone where the bucket will be created. An example AZ ID value is ``usw2-az1`` .
458
- :param bucket_name: A name for the bucket. The bucket name must contain only lowercase letters, numbers, dots (.), and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone. The bucket name must also follow the format ``*bucket_base_name* -- *az_id* --x-s3`` (for example, ``*DOC-EXAMPLE-BUCKET* -- *usw2-az1* --x-s3`` ). If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name. For information about bucket naming restrictions, see `Directory bucket naming rules <https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html>`_ in the *Amazon S3 User Guide* . .. epigraph:: If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you need to replace the resource, specify a new name.
458
+ :param bucket_name: A name for the bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone. The bucket name must also follow the format ``*bucket_base_name* -- *az_id* --x-s3`` (for example, ``*DOC-EXAMPLE-BUCKET* -- *usw2-az1* --x-s3`` ). If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name. For information about bucket naming restrictions, see `Directory bucket naming rules <https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html>`_ in the *Amazon S3 User Guide* . .. epigraph:: If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you need to replace the resource, specify a new name.
459
459
 
460
460
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3express-directorybucket.html
461
461
  :exampleMetadata: fixture=_generated
@@ -512,7 +512,7 @@ class CfnDirectoryBucketProps:
512
512
  def bucket_name(self) -> typing.Optional[builtins.str]:
513
513
  '''A name for the bucket.
514
514
 
515
- The bucket name must contain only lowercase letters, numbers, dots (.), and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone. The bucket name must also follow the format ``*bucket_base_name* -- *az_id* --x-s3`` (for example, ``*DOC-EXAMPLE-BUCKET* -- *usw2-az1* --x-s3`` ). If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name. For information about bucket naming restrictions, see `Directory bucket naming rules <https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html>`_ in the *Amazon S3 User Guide* .
515
+ The bucket name must contain only lowercase letters, numbers, and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone. The bucket name must also follow the format ``*bucket_base_name* -- *az_id* --x-s3`` (for example, ``*DOC-EXAMPLE-BUCKET* -- *usw2-az1* --x-s3`` ). If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name. For information about bucket naming restrictions, see `Directory bucket naming rules <https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html>`_ in the *Amazon S3 User Guide* .
516
516
  .. epigraph::
517
517
 
518
518
  If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you need to replace the resource, specify a new name.