aws-cdk-lib 2.198.0__py3-none-any.whl → 2.200.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 (55) hide show
  1. aws_cdk/__init__.py +22 -24
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.198.0.jsii.tgz → aws-cdk-lib@2.200.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_acmpca/__init__.py +1 -1
  5. aws_cdk/aws_apigateway/__init__.py +1 -1
  6. aws_cdk/aws_appconfig/__init__.py +296 -48
  7. aws_cdk/aws_applicationautoscaling/__init__.py +4 -4
  8. aws_cdk/aws_aps/__init__.py +365 -14
  9. aws_cdk/aws_autoscaling/__init__.py +4 -4
  10. aws_cdk/aws_bedrock/__init__.py +436 -28
  11. aws_cdk/aws_cloudformation/__init__.py +17 -23
  12. aws_cdk/aws_cloudfront_origins/__init__.py +1 -1
  13. aws_cdk/aws_cloudtrail/__init__.py +4 -4
  14. aws_cdk/aws_cloudwatch/__init__.py +50 -1
  15. aws_cdk/aws_codebuild/__init__.py +116 -0
  16. aws_cdk/aws_datazone/__init__.py +699 -9
  17. aws_cdk/aws_deadline/__init__.py +38 -10
  18. aws_cdk/aws_ec2/__init__.py +97 -28
  19. aws_cdk/aws_ecs_patterns/__init__.py +49 -3
  20. aws_cdk/aws_eks/__init__.py +40 -9
  21. aws_cdk/aws_elasticloadbalancingv2/__init__.py +7 -7
  22. aws_cdk/aws_emr/__init__.py +36 -2
  23. aws_cdk/aws_events_targets/__init__.py +78 -1
  24. aws_cdk/aws_fsx/__init__.py +122 -0
  25. aws_cdk/aws_glue/__init__.py +55 -26
  26. aws_cdk/aws_iam/__init__.py +376 -2
  27. aws_cdk/aws_iot/__init__.py +57 -5
  28. aws_cdk/aws_kinesisfirehose/__init__.py +5 -1
  29. aws_cdk/aws_lambda/__init__.py +65 -45
  30. aws_cdk/aws_lex/__init__.py +27 -13
  31. aws_cdk/aws_lightsail/__init__.py +452 -0
  32. aws_cdk/aws_medialive/__init__.py +699 -497
  33. aws_cdk/aws_msk/__init__.py +4 -4
  34. aws_cdk/aws_networkfirewall/__init__.py +9 -5
  35. aws_cdk/aws_nimblestudio/__init__.py +208 -400
  36. aws_cdk/aws_panorama/__init__.py +30 -3
  37. aws_cdk/aws_pcs/__init__.py +12 -5
  38. aws_cdk/aws_rds/__init__.py +28 -16
  39. aws_cdk/aws_s3/__init__.py +367 -6
  40. aws_cdk/aws_s3express/__init__.py +789 -0
  41. aws_cdk/aws_ses/__init__.py +549 -32
  42. aws_cdk/aws_sns_subscriptions/__init__.py +256 -1
  43. aws_cdk/aws_stepfunctions/__init__.py +55 -17
  44. aws_cdk/aws_stepfunctions_tasks/__init__.py +1502 -2
  45. aws_cdk/aws_synthetics/__init__.py +26 -16
  46. aws_cdk/aws_voiceid/__init__.py +13 -3
  47. aws_cdk/aws_vpclattice/__init__.py +219 -209
  48. aws_cdk/cloud_assembly_schema/__init__.py +137 -42
  49. aws_cdk/cx_api/__init__.py +7 -7
  50. {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/METADATA +2 -2
  51. {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/RECORD +55 -55
  52. {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/LICENSE +0 -0
  53. {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/NOTICE +0 -0
  54. {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/WHEEL +0 -0
  55. {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/top_level.txt +0 -0
@@ -7007,9 +7007,9 @@ class CfnEnvironmentBlueprintConfiguration(
7007
7007
  :param domain_identifier: The identifier of the Amazon DataZone domain in which an environment blueprint exists.
7008
7008
  :param enabled_regions: The enabled AWS Regions specified in a blueprint configuration.
7009
7009
  :param environment_blueprint_identifier: The identifier of the environment blueprint. In the current release, only the following values are supported: ``DefaultDataLake`` and ``DefaultDataWarehouse`` .
7010
- :param environment_role_permission_boundary:
7010
+ :param environment_role_permission_boundary: The environment role permission boundary.
7011
7011
  :param manage_access_role_arn: The ARN of the manage access role.
7012
- :param provisioning_configurations:
7012
+ :param provisioning_configurations: The provisioning configuration of a blueprint.
7013
7013
  :param provisioning_role_arn: The ARN of the provisioning role.
7014
7014
  :param regional_parameters: The regional parameters of the environment blueprint.
7015
7015
  '''
@@ -7145,6 +7145,7 @@ class CfnEnvironmentBlueprintConfiguration(
7145
7145
  @builtins.property
7146
7146
  @jsii.member(jsii_name="environmentRolePermissionBoundary")
7147
7147
  def environment_role_permission_boundary(self) -> typing.Optional[builtins.str]:
7148
+ '''The environment role permission boundary.'''
7148
7149
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "environmentRolePermissionBoundary"))
7149
7150
 
7150
7151
  @environment_role_permission_boundary.setter
@@ -7175,6 +7176,7 @@ class CfnEnvironmentBlueprintConfiguration(
7175
7176
  def provisioning_configurations(
7176
7177
  self,
7177
7178
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty"]]]]:
7179
+ '''The provisioning configuration of a blueprint.'''
7178
7180
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty"]]]], jsii.get(self, "provisioningConfigurations"))
7179
7181
 
7180
7182
  @provisioning_configurations.setter
@@ -7456,9 +7458,9 @@ class CfnEnvironmentBlueprintConfigurationProps:
7456
7458
  :param domain_identifier: The identifier of the Amazon DataZone domain in which an environment blueprint exists.
7457
7459
  :param enabled_regions: The enabled AWS Regions specified in a blueprint configuration.
7458
7460
  :param environment_blueprint_identifier: The identifier of the environment blueprint. In the current release, only the following values are supported: ``DefaultDataLake`` and ``DefaultDataWarehouse`` .
7459
- :param environment_role_permission_boundary:
7461
+ :param environment_role_permission_boundary: The environment role permission boundary.
7460
7462
  :param manage_access_role_arn: The ARN of the manage access role.
7461
- :param provisioning_configurations:
7463
+ :param provisioning_configurations: The provisioning configuration of a blueprint.
7462
7464
  :param provisioning_role_arn: The ARN of the provisioning role.
7463
7465
  :param regional_parameters: The regional parameters of the environment blueprint.
7464
7466
 
@@ -7554,7 +7556,8 @@ class CfnEnvironmentBlueprintConfigurationProps:
7554
7556
 
7555
7557
  @builtins.property
7556
7558
  def environment_role_permission_boundary(self) -> typing.Optional[builtins.str]:
7557
- '''
7559
+ '''The environment role permission boundary.
7560
+
7558
7561
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-environmentrolepermissionboundary
7559
7562
  '''
7560
7563
  result = self._values.get("environment_role_permission_boundary")
@@ -7573,7 +7576,8 @@ class CfnEnvironmentBlueprintConfigurationProps:
7573
7576
  def provisioning_configurations(
7574
7577
  self,
7575
7578
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty]]]]:
7576
- '''
7579
+ '''The provisioning configuration of a blueprint.
7580
+
7577
7581
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-provisioningconfigurations
7578
7582
  '''
7579
7583
  result = self._values.get("provisioning_configurations")
@@ -9127,7 +9131,7 @@ class CfnProject(
9127
9131
  :param domain_identifier: The identifier of a Amazon DataZone domain where the project exists.
9128
9132
  :param name: The name of a project.
9129
9133
  :param description: The description of a project.
9130
- :param domain_unit_id: The ID of the domain unit.
9134
+ :param domain_unit_id: The ID of the domain unit. This parameter is not required and if it is not specified, then the project is created at the root domain unit level.
9131
9135
  :param glossary_terms: The glossary terms that can be used in this Amazon DataZone project.
9132
9136
  :param project_profile_id: The project profile ID.
9133
9137
  :param project_profile_version: The project profile version to which the project should be updated. You can only specify the following string for this parameter: latest.
@@ -9228,7 +9232,8 @@ class CfnProject(
9228
9232
  @builtins.property
9229
9233
  @jsii.member(jsii_name="attrProjectStatus")
9230
9234
  def attr_project_status(self) -> builtins.str:
9231
- '''
9235
+ '''The status of the project.
9236
+
9232
9237
  :cloudformationAttribute: ProjectStatus
9233
9238
  '''
9234
9239
  return typing.cast(builtins.str, jsii.get(self, "attrProjectStatus"))
@@ -9847,6 +9852,582 @@ class CfnProjectMembershipProps:
9847
9852
  )
9848
9853
 
9849
9854
 
9855
+ @jsii.implements(_IInspectable_c2943556)
9856
+ class CfnProjectProfile(
9857
+ _CfnResource_9df397a6,
9858
+ metaclass=jsii.JSIIMeta,
9859
+ jsii_type="aws-cdk-lib.aws_datazone.CfnProjectProfile",
9860
+ ):
9861
+ '''Definition of AWS::DataZone::ProjectProfile Resource Type.
9862
+
9863
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html
9864
+ :cloudformationResource: AWS::DataZone::ProjectProfile
9865
+ :exampleMetadata: fixture=_generated
9866
+
9867
+ Example::
9868
+
9869
+ # The code below shows an example of how to instantiate this type.
9870
+ # The values are placeholders you should change.
9871
+ from aws_cdk import aws_datazone as datazone
9872
+
9873
+ cfn_project_profile = datazone.CfnProjectProfile(self, "MyCfnProjectProfile",
9874
+ name="name",
9875
+
9876
+ # the properties below are optional
9877
+ allowed_designations=[datazone.CfnProjectProfile.DesignationConfigurationProperty(
9878
+ designation_id="designationId"
9879
+ )],
9880
+ change_log="changeLog",
9881
+ description="description",
9882
+ domain_identifier="domainIdentifier",
9883
+ domain_unit_identifier="domainUnitIdentifier",
9884
+ project_scopes=[datazone.CfnProjectProfile.ProjectScopeProperty(
9885
+ name="name",
9886
+
9887
+ # the properties below are optional
9888
+ policy="policy"
9889
+ )],
9890
+ status="status"
9891
+ )
9892
+ '''
9893
+
9894
+ def __init__(
9895
+ self,
9896
+ scope: _constructs_77d1e7e8.Construct,
9897
+ id: builtins.str,
9898
+ *,
9899
+ name: builtins.str,
9900
+ allowed_designations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnProjectProfile.DesignationConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
9901
+ change_log: typing.Optional[builtins.str] = None,
9902
+ description: typing.Optional[builtins.str] = None,
9903
+ domain_identifier: typing.Optional[builtins.str] = None,
9904
+ domain_unit_identifier: typing.Optional[builtins.str] = None,
9905
+ project_scopes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnProjectProfile.ProjectScopeProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
9906
+ status: typing.Optional[builtins.str] = None,
9907
+ ) -> None:
9908
+ '''
9909
+ :param scope: Scope in which this resource is defined.
9910
+ :param id: Construct identifier for this resource (unique in its scope).
9911
+ :param name:
9912
+ :param allowed_designations:
9913
+ :param change_log:
9914
+ :param description:
9915
+ :param domain_identifier:
9916
+ :param domain_unit_identifier:
9917
+ :param project_scopes:
9918
+ :param status:
9919
+ '''
9920
+ if __debug__:
9921
+ type_hints = typing.get_type_hints(_typecheckingstub__be64eda6c4825457191dba5045e07eaa3e14f5b1d6605cefc1c291b8f70eb5b2)
9922
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
9923
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
9924
+ props = CfnProjectProfileProps(
9925
+ name=name,
9926
+ allowed_designations=allowed_designations,
9927
+ change_log=change_log,
9928
+ description=description,
9929
+ domain_identifier=domain_identifier,
9930
+ domain_unit_identifier=domain_unit_identifier,
9931
+ project_scopes=project_scopes,
9932
+ status=status,
9933
+ )
9934
+
9935
+ jsii.create(self.__class__, self, [scope, id, props])
9936
+
9937
+ @jsii.member(jsii_name="inspect")
9938
+ def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
9939
+ '''Examines the CloudFormation resource and discloses attributes.
9940
+
9941
+ :param inspector: tree inspector to collect and process attributes.
9942
+ '''
9943
+ if __debug__:
9944
+ type_hints = typing.get_type_hints(_typecheckingstub__6b4346bd08f5dc87b3a8b49fbf28cae8774624d1da19c5d260d4fbdf104d531f)
9945
+ check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
9946
+ return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
9947
+
9948
+ @jsii.member(jsii_name="renderProperties")
9949
+ def _render_properties(
9950
+ self,
9951
+ props: typing.Mapping[builtins.str, typing.Any],
9952
+ ) -> typing.Mapping[builtins.str, typing.Any]:
9953
+ '''
9954
+ :param props: -
9955
+ '''
9956
+ if __debug__:
9957
+ type_hints = typing.get_type_hints(_typecheckingstub__85b771eebccea5f26f952595144e99a6c3ff8b1d0cce9803511978dff3785a2a)
9958
+ check_type(argname="argument props", value=props, expected_type=type_hints["props"])
9959
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
9960
+
9961
+ @jsii.python.classproperty
9962
+ @jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
9963
+ def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
9964
+ '''The CloudFormation resource type name for this resource class.'''
9965
+ return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
9966
+
9967
+ @builtins.property
9968
+ @jsii.member(jsii_name="attrCreatedAt")
9969
+ def attr_created_at(self) -> builtins.str:
9970
+ '''
9971
+ :cloudformationAttribute: CreatedAt
9972
+ '''
9973
+ return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
9974
+
9975
+ @builtins.property
9976
+ @jsii.member(jsii_name="attrCreatedBy")
9977
+ def attr_created_by(self) -> builtins.str:
9978
+ '''
9979
+ :cloudformationAttribute: CreatedBy
9980
+ '''
9981
+ return typing.cast(builtins.str, jsii.get(self, "attrCreatedBy"))
9982
+
9983
+ @builtins.property
9984
+ @jsii.member(jsii_name="attrDomainId")
9985
+ def attr_domain_id(self) -> builtins.str:
9986
+ '''
9987
+ :cloudformationAttribute: DomainId
9988
+ '''
9989
+ return typing.cast(builtins.str, jsii.get(self, "attrDomainId"))
9990
+
9991
+ @builtins.property
9992
+ @jsii.member(jsii_name="attrDomainUnitId")
9993
+ def attr_domain_unit_id(self) -> builtins.str:
9994
+ '''
9995
+ :cloudformationAttribute: DomainUnitId
9996
+ '''
9997
+ return typing.cast(builtins.str, jsii.get(self, "attrDomainUnitId"))
9998
+
9999
+ @builtins.property
10000
+ @jsii.member(jsii_name="attrId")
10001
+ def attr_id(self) -> builtins.str:
10002
+ '''
10003
+ :cloudformationAttribute: Id
10004
+ '''
10005
+ return typing.cast(builtins.str, jsii.get(self, "attrId"))
10006
+
10007
+ @builtins.property
10008
+ @jsii.member(jsii_name="attrIdentifier")
10009
+ def attr_identifier(self) -> builtins.str:
10010
+ '''
10011
+ :cloudformationAttribute: Identifier
10012
+ '''
10013
+ return typing.cast(builtins.str, jsii.get(self, "attrIdentifier"))
10014
+
10015
+ @builtins.property
10016
+ @jsii.member(jsii_name="attrLastUpdatedAt")
10017
+ def attr_last_updated_at(self) -> builtins.str:
10018
+ '''
10019
+ :cloudformationAttribute: LastUpdatedAt
10020
+ '''
10021
+ return typing.cast(builtins.str, jsii.get(self, "attrLastUpdatedAt"))
10022
+
10023
+ @builtins.property
10024
+ @jsii.member(jsii_name="cfnProperties")
10025
+ def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
10026
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
10027
+
10028
+ @builtins.property
10029
+ @jsii.member(jsii_name="name")
10030
+ def name(self) -> builtins.str:
10031
+ return typing.cast(builtins.str, jsii.get(self, "name"))
10032
+
10033
+ @name.setter
10034
+ def name(self, value: builtins.str) -> None:
10035
+ if __debug__:
10036
+ type_hints = typing.get_type_hints(_typecheckingstub__e5acf0d662fb5f406ca391f15c3cadba1d68d0dc161876b2305e495701c03968)
10037
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10038
+ jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
10039
+
10040
+ @builtins.property
10041
+ @jsii.member(jsii_name="allowedDesignations")
10042
+ def allowed_designations(
10043
+ self,
10044
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.DesignationConfigurationProperty"]]]]:
10045
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.DesignationConfigurationProperty"]]]], jsii.get(self, "allowedDesignations"))
10046
+
10047
+ @allowed_designations.setter
10048
+ def allowed_designations(
10049
+ self,
10050
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.DesignationConfigurationProperty"]]]],
10051
+ ) -> None:
10052
+ if __debug__:
10053
+ type_hints = typing.get_type_hints(_typecheckingstub__24997c31e168ff4722f9dbe78dab2e2dfc54ccb2330aa70659c831b031c49147)
10054
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10055
+ jsii.set(self, "allowedDesignations", value) # pyright: ignore[reportArgumentType]
10056
+
10057
+ @builtins.property
10058
+ @jsii.member(jsii_name="changeLog")
10059
+ def change_log(self) -> typing.Optional[builtins.str]:
10060
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "changeLog"))
10061
+
10062
+ @change_log.setter
10063
+ def change_log(self, value: typing.Optional[builtins.str]) -> None:
10064
+ if __debug__:
10065
+ type_hints = typing.get_type_hints(_typecheckingstub__6f7e687a92a5b5f91bef6023471643a2408ea093f9930c5cb0ec8e5181d439fc)
10066
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10067
+ jsii.set(self, "changeLog", value) # pyright: ignore[reportArgumentType]
10068
+
10069
+ @builtins.property
10070
+ @jsii.member(jsii_name="description")
10071
+ def description(self) -> typing.Optional[builtins.str]:
10072
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
10073
+
10074
+ @description.setter
10075
+ def description(self, value: typing.Optional[builtins.str]) -> None:
10076
+ if __debug__:
10077
+ type_hints = typing.get_type_hints(_typecheckingstub__d3e1ff90e5fbfc5a555174f254ce075a9c3654511436a8acf04928992020df04)
10078
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10079
+ jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
10080
+
10081
+ @builtins.property
10082
+ @jsii.member(jsii_name="domainIdentifier")
10083
+ def domain_identifier(self) -> typing.Optional[builtins.str]:
10084
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "domainIdentifier"))
10085
+
10086
+ @domain_identifier.setter
10087
+ def domain_identifier(self, value: typing.Optional[builtins.str]) -> None:
10088
+ if __debug__:
10089
+ type_hints = typing.get_type_hints(_typecheckingstub__872e790316704042dc15857aaaff7b99878b643ac02f9de929f704cf6ca6762a)
10090
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10091
+ jsii.set(self, "domainIdentifier", value) # pyright: ignore[reportArgumentType]
10092
+
10093
+ @builtins.property
10094
+ @jsii.member(jsii_name="domainUnitIdentifier")
10095
+ def domain_unit_identifier(self) -> typing.Optional[builtins.str]:
10096
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "domainUnitIdentifier"))
10097
+
10098
+ @domain_unit_identifier.setter
10099
+ def domain_unit_identifier(self, value: typing.Optional[builtins.str]) -> None:
10100
+ if __debug__:
10101
+ type_hints = typing.get_type_hints(_typecheckingstub__0b87add426c25b8a2eafdfd51a8707432f3ee35363162b07265e414b1d427ff1)
10102
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10103
+ jsii.set(self, "domainUnitIdentifier", value) # pyright: ignore[reportArgumentType]
10104
+
10105
+ @builtins.property
10106
+ @jsii.member(jsii_name="projectScopes")
10107
+ def project_scopes(
10108
+ self,
10109
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.ProjectScopeProperty"]]]]:
10110
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.ProjectScopeProperty"]]]], jsii.get(self, "projectScopes"))
10111
+
10112
+ @project_scopes.setter
10113
+ def project_scopes(
10114
+ self,
10115
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProjectProfile.ProjectScopeProperty"]]]],
10116
+ ) -> None:
10117
+ if __debug__:
10118
+ type_hints = typing.get_type_hints(_typecheckingstub__f495fae800c8dcb91a694653b2ad64d2941fc50e22122f09ae7dff638a8b93af)
10119
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10120
+ jsii.set(self, "projectScopes", value) # pyright: ignore[reportArgumentType]
10121
+
10122
+ @builtins.property
10123
+ @jsii.member(jsii_name="status")
10124
+ def status(self) -> typing.Optional[builtins.str]:
10125
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "status"))
10126
+
10127
+ @status.setter
10128
+ def status(self, value: typing.Optional[builtins.str]) -> None:
10129
+ if __debug__:
10130
+ type_hints = typing.get_type_hints(_typecheckingstub__22f2f0484438c03962ae71a7a8c680afa1c54e8a672160956c3951d55a32ae02)
10131
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10132
+ jsii.set(self, "status", value) # pyright: ignore[reportArgumentType]
10133
+
10134
+ @jsii.data_type(
10135
+ jsii_type="aws-cdk-lib.aws_datazone.CfnProjectProfile.DesignationConfigurationProperty",
10136
+ jsii_struct_bases=[],
10137
+ name_mapping={"designation_id": "designationId"},
10138
+ )
10139
+ class DesignationConfigurationProperty:
10140
+ def __init__(self, *, designation_id: builtins.str) -> None:
10141
+ '''
10142
+ :param designation_id:
10143
+
10144
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-designationconfiguration.html
10145
+ :exampleMetadata: fixture=_generated
10146
+
10147
+ Example::
10148
+
10149
+ # The code below shows an example of how to instantiate this type.
10150
+ # The values are placeholders you should change.
10151
+ from aws_cdk import aws_datazone as datazone
10152
+
10153
+ designation_configuration_property = datazone.CfnProjectProfile.DesignationConfigurationProperty(
10154
+ designation_id="designationId"
10155
+ )
10156
+ '''
10157
+ if __debug__:
10158
+ type_hints = typing.get_type_hints(_typecheckingstub__175661648034f5742b855ee284c1c19c3777b76bfcfff2c198ccc3056c5d8b46)
10159
+ check_type(argname="argument designation_id", value=designation_id, expected_type=type_hints["designation_id"])
10160
+ self._values: typing.Dict[builtins.str, typing.Any] = {
10161
+ "designation_id": designation_id,
10162
+ }
10163
+
10164
+ @builtins.property
10165
+ def designation_id(self) -> builtins.str:
10166
+ '''
10167
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-designationconfiguration.html#cfn-datazone-projectprofile-designationconfiguration-designationid
10168
+ '''
10169
+ result = self._values.get("designation_id")
10170
+ assert result is not None, "Required property 'designation_id' is missing"
10171
+ return typing.cast(builtins.str, result)
10172
+
10173
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
10174
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
10175
+
10176
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
10177
+ return not (rhs == self)
10178
+
10179
+ def __repr__(self) -> str:
10180
+ return "DesignationConfigurationProperty(%s)" % ", ".join(
10181
+ k + "=" + repr(v) for k, v in self._values.items()
10182
+ )
10183
+
10184
+ @jsii.data_type(
10185
+ jsii_type="aws-cdk-lib.aws_datazone.CfnProjectProfile.ProjectScopeProperty",
10186
+ jsii_struct_bases=[],
10187
+ name_mapping={"name": "name", "policy": "policy"},
10188
+ )
10189
+ class ProjectScopeProperty:
10190
+ def __init__(
10191
+ self,
10192
+ *,
10193
+ name: builtins.str,
10194
+ policy: typing.Optional[builtins.str] = None,
10195
+ ) -> None:
10196
+ '''
10197
+ :param name:
10198
+ :param policy:
10199
+
10200
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-projectscope.html
10201
+ :exampleMetadata: fixture=_generated
10202
+
10203
+ Example::
10204
+
10205
+ # The code below shows an example of how to instantiate this type.
10206
+ # The values are placeholders you should change.
10207
+ from aws_cdk import aws_datazone as datazone
10208
+
10209
+ project_scope_property = datazone.CfnProjectProfile.ProjectScopeProperty(
10210
+ name="name",
10211
+
10212
+ # the properties below are optional
10213
+ policy="policy"
10214
+ )
10215
+ '''
10216
+ if __debug__:
10217
+ type_hints = typing.get_type_hints(_typecheckingstub__a2029f9834b3b4721032c2da8218348c7d12f257b99892b1e132ee4be37449c6)
10218
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
10219
+ check_type(argname="argument policy", value=policy, expected_type=type_hints["policy"])
10220
+ self._values: typing.Dict[builtins.str, typing.Any] = {
10221
+ "name": name,
10222
+ }
10223
+ if policy is not None:
10224
+ self._values["policy"] = policy
10225
+
10226
+ @builtins.property
10227
+ def name(self) -> builtins.str:
10228
+ '''
10229
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-projectscope.html#cfn-datazone-projectprofile-projectscope-name
10230
+ '''
10231
+ result = self._values.get("name")
10232
+ assert result is not None, "Required property 'name' is missing"
10233
+ return typing.cast(builtins.str, result)
10234
+
10235
+ @builtins.property
10236
+ def policy(self) -> typing.Optional[builtins.str]:
10237
+ '''
10238
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-projectscope.html#cfn-datazone-projectprofile-projectscope-policy
10239
+ '''
10240
+ result = self._values.get("policy")
10241
+ return typing.cast(typing.Optional[builtins.str], result)
10242
+
10243
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
10244
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
10245
+
10246
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
10247
+ return not (rhs == self)
10248
+
10249
+ def __repr__(self) -> str:
10250
+ return "ProjectScopeProperty(%s)" % ", ".join(
10251
+ k + "=" + repr(v) for k, v in self._values.items()
10252
+ )
10253
+
10254
+
10255
+ @jsii.data_type(
10256
+ jsii_type="aws-cdk-lib.aws_datazone.CfnProjectProfileProps",
10257
+ jsii_struct_bases=[],
10258
+ name_mapping={
10259
+ "name": "name",
10260
+ "allowed_designations": "allowedDesignations",
10261
+ "change_log": "changeLog",
10262
+ "description": "description",
10263
+ "domain_identifier": "domainIdentifier",
10264
+ "domain_unit_identifier": "domainUnitIdentifier",
10265
+ "project_scopes": "projectScopes",
10266
+ "status": "status",
10267
+ },
10268
+ )
10269
+ class CfnProjectProfileProps:
10270
+ def __init__(
10271
+ self,
10272
+ *,
10273
+ name: builtins.str,
10274
+ allowed_designations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProjectProfile.DesignationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
10275
+ change_log: typing.Optional[builtins.str] = None,
10276
+ description: typing.Optional[builtins.str] = None,
10277
+ domain_identifier: typing.Optional[builtins.str] = None,
10278
+ domain_unit_identifier: typing.Optional[builtins.str] = None,
10279
+ project_scopes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProjectProfile.ProjectScopeProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
10280
+ status: typing.Optional[builtins.str] = None,
10281
+ ) -> None:
10282
+ '''Properties for defining a ``CfnProjectProfile``.
10283
+
10284
+ :param name:
10285
+ :param allowed_designations:
10286
+ :param change_log:
10287
+ :param description:
10288
+ :param domain_identifier:
10289
+ :param domain_unit_identifier:
10290
+ :param project_scopes:
10291
+ :param status:
10292
+
10293
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html
10294
+ :exampleMetadata: fixture=_generated
10295
+
10296
+ Example::
10297
+
10298
+ # The code below shows an example of how to instantiate this type.
10299
+ # The values are placeholders you should change.
10300
+ from aws_cdk import aws_datazone as datazone
10301
+
10302
+ cfn_project_profile_props = datazone.CfnProjectProfileProps(
10303
+ name="name",
10304
+
10305
+ # the properties below are optional
10306
+ allowed_designations=[datazone.CfnProjectProfile.DesignationConfigurationProperty(
10307
+ designation_id="designationId"
10308
+ )],
10309
+ change_log="changeLog",
10310
+ description="description",
10311
+ domain_identifier="domainIdentifier",
10312
+ domain_unit_identifier="domainUnitIdentifier",
10313
+ project_scopes=[datazone.CfnProjectProfile.ProjectScopeProperty(
10314
+ name="name",
10315
+
10316
+ # the properties below are optional
10317
+ policy="policy"
10318
+ )],
10319
+ status="status"
10320
+ )
10321
+ '''
10322
+ if __debug__:
10323
+ type_hints = typing.get_type_hints(_typecheckingstub__16088b85440c601f18ad4a194ccb23740aedaa1b4f93a76e720d939c57cb4d2e)
10324
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
10325
+ check_type(argname="argument allowed_designations", value=allowed_designations, expected_type=type_hints["allowed_designations"])
10326
+ check_type(argname="argument change_log", value=change_log, expected_type=type_hints["change_log"])
10327
+ check_type(argname="argument description", value=description, expected_type=type_hints["description"])
10328
+ check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
10329
+ check_type(argname="argument domain_unit_identifier", value=domain_unit_identifier, expected_type=type_hints["domain_unit_identifier"])
10330
+ check_type(argname="argument project_scopes", value=project_scopes, expected_type=type_hints["project_scopes"])
10331
+ check_type(argname="argument status", value=status, expected_type=type_hints["status"])
10332
+ self._values: typing.Dict[builtins.str, typing.Any] = {
10333
+ "name": name,
10334
+ }
10335
+ if allowed_designations is not None:
10336
+ self._values["allowed_designations"] = allowed_designations
10337
+ if change_log is not None:
10338
+ self._values["change_log"] = change_log
10339
+ if description is not None:
10340
+ self._values["description"] = description
10341
+ if domain_identifier is not None:
10342
+ self._values["domain_identifier"] = domain_identifier
10343
+ if domain_unit_identifier is not None:
10344
+ self._values["domain_unit_identifier"] = domain_unit_identifier
10345
+ if project_scopes is not None:
10346
+ self._values["project_scopes"] = project_scopes
10347
+ if status is not None:
10348
+ self._values["status"] = status
10349
+
10350
+ @builtins.property
10351
+ def name(self) -> builtins.str:
10352
+ '''
10353
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-name
10354
+ '''
10355
+ result = self._values.get("name")
10356
+ assert result is not None, "Required property 'name' is missing"
10357
+ return typing.cast(builtins.str, result)
10358
+
10359
+ @builtins.property
10360
+ def allowed_designations(
10361
+ self,
10362
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProjectProfile.DesignationConfigurationProperty]]]]:
10363
+ '''
10364
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-alloweddesignations
10365
+ '''
10366
+ result = self._values.get("allowed_designations")
10367
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProjectProfile.DesignationConfigurationProperty]]]], result)
10368
+
10369
+ @builtins.property
10370
+ def change_log(self) -> typing.Optional[builtins.str]:
10371
+ '''
10372
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-changelog
10373
+ '''
10374
+ result = self._values.get("change_log")
10375
+ return typing.cast(typing.Optional[builtins.str], result)
10376
+
10377
+ @builtins.property
10378
+ def description(self) -> typing.Optional[builtins.str]:
10379
+ '''
10380
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-description
10381
+ '''
10382
+ result = self._values.get("description")
10383
+ return typing.cast(typing.Optional[builtins.str], result)
10384
+
10385
+ @builtins.property
10386
+ def domain_identifier(self) -> typing.Optional[builtins.str]:
10387
+ '''
10388
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-domainidentifier
10389
+ '''
10390
+ result = self._values.get("domain_identifier")
10391
+ return typing.cast(typing.Optional[builtins.str], result)
10392
+
10393
+ @builtins.property
10394
+ def domain_unit_identifier(self) -> typing.Optional[builtins.str]:
10395
+ '''
10396
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-domainunitidentifier
10397
+ '''
10398
+ result = self._values.get("domain_unit_identifier")
10399
+ return typing.cast(typing.Optional[builtins.str], result)
10400
+
10401
+ @builtins.property
10402
+ def project_scopes(
10403
+ self,
10404
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProjectProfile.ProjectScopeProperty]]]]:
10405
+ '''
10406
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-projectscopes
10407
+ '''
10408
+ result = self._values.get("project_scopes")
10409
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProjectProfile.ProjectScopeProperty]]]], result)
10410
+
10411
+ @builtins.property
10412
+ def status(self) -> typing.Optional[builtins.str]:
10413
+ '''
10414
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-status
10415
+ '''
10416
+ result = self._values.get("status")
10417
+ return typing.cast(typing.Optional[builtins.str], result)
10418
+
10419
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
10420
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
10421
+
10422
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
10423
+ return not (rhs == self)
10424
+
10425
+ def __repr__(self) -> str:
10426
+ return "CfnProjectProfileProps(%s)" % ", ".join(
10427
+ k + "=" + repr(v) for k, v in self._values.items()
10428
+ )
10429
+
10430
+
9850
10431
  @jsii.data_type(
9851
10432
  jsii_type="aws-cdk-lib.aws_datazone.CfnProjectProps",
9852
10433
  jsii_struct_bases=[],
@@ -9879,7 +10460,7 @@ class CfnProjectProps:
9879
10460
  :param domain_identifier: The identifier of a Amazon DataZone domain where the project exists.
9880
10461
  :param name: The name of a project.
9881
10462
  :param description: The description of a project.
9882
- :param domain_unit_id: The ID of the domain unit.
10463
+ :param domain_unit_id: The ID of the domain unit. This parameter is not required and if it is not specified, then the project is created at the root domain unit level.
9883
10464
  :param glossary_terms: The glossary terms that can be used in this Amazon DataZone project.
9884
10465
  :param project_profile_id: The project profile ID.
9885
10466
  :param project_profile_version: The project profile version to which the project should be updated. You can only specify the following string for this parameter: latest.
@@ -9974,6 +10555,8 @@ class CfnProjectProps:
9974
10555
  def domain_unit_id(self) -> typing.Optional[builtins.str]:
9975
10556
  '''The ID of the domain unit.
9976
10557
 
10558
+ This parameter is not required and if it is not specified, then the project is created at the root domain unit level.
10559
+
9977
10560
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-domainunitid
9978
10561
  '''
9979
10562
  result = self._values.get("domain_unit_id")
@@ -11140,6 +11723,8 @@ __all__ = [
11140
11723
  "CfnProject",
11141
11724
  "CfnProjectMembership",
11142
11725
  "CfnProjectMembershipProps",
11726
+ "CfnProjectProfile",
11727
+ "CfnProjectProfileProps",
11143
11728
  "CfnProjectProps",
11144
11729
  "CfnSubscriptionTarget",
11145
11730
  "CfnSubscriptionTargetProps",
@@ -12534,6 +13119,111 @@ def _typecheckingstub__b25f4db16efa2b368a4cf197bdf102ccdf0c613db5654c1186f9404f9
12534
13119
  """Type checking stubs"""
12535
13120
  pass
12536
13121
 
13122
+ def _typecheckingstub__be64eda6c4825457191dba5045e07eaa3e14f5b1d6605cefc1c291b8f70eb5b2(
13123
+ scope: _constructs_77d1e7e8.Construct,
13124
+ id: builtins.str,
13125
+ *,
13126
+ name: builtins.str,
13127
+ allowed_designations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProjectProfile.DesignationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
13128
+ change_log: typing.Optional[builtins.str] = None,
13129
+ description: typing.Optional[builtins.str] = None,
13130
+ domain_identifier: typing.Optional[builtins.str] = None,
13131
+ domain_unit_identifier: typing.Optional[builtins.str] = None,
13132
+ project_scopes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProjectProfile.ProjectScopeProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
13133
+ status: typing.Optional[builtins.str] = None,
13134
+ ) -> None:
13135
+ """Type checking stubs"""
13136
+ pass
13137
+
13138
+ def _typecheckingstub__6b4346bd08f5dc87b3a8b49fbf28cae8774624d1da19c5d260d4fbdf104d531f(
13139
+ inspector: _TreeInspector_488e0dd5,
13140
+ ) -> None:
13141
+ """Type checking stubs"""
13142
+ pass
13143
+
13144
+ def _typecheckingstub__85b771eebccea5f26f952595144e99a6c3ff8b1d0cce9803511978dff3785a2a(
13145
+ props: typing.Mapping[builtins.str, typing.Any],
13146
+ ) -> None:
13147
+ """Type checking stubs"""
13148
+ pass
13149
+
13150
+ def _typecheckingstub__e5acf0d662fb5f406ca391f15c3cadba1d68d0dc161876b2305e495701c03968(
13151
+ value: builtins.str,
13152
+ ) -> None:
13153
+ """Type checking stubs"""
13154
+ pass
13155
+
13156
+ def _typecheckingstub__24997c31e168ff4722f9dbe78dab2e2dfc54ccb2330aa70659c831b031c49147(
13157
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProjectProfile.DesignationConfigurationProperty]]]],
13158
+ ) -> None:
13159
+ """Type checking stubs"""
13160
+ pass
13161
+
13162
+ def _typecheckingstub__6f7e687a92a5b5f91bef6023471643a2408ea093f9930c5cb0ec8e5181d439fc(
13163
+ value: typing.Optional[builtins.str],
13164
+ ) -> None:
13165
+ """Type checking stubs"""
13166
+ pass
13167
+
13168
+ def _typecheckingstub__d3e1ff90e5fbfc5a555174f254ce075a9c3654511436a8acf04928992020df04(
13169
+ value: typing.Optional[builtins.str],
13170
+ ) -> None:
13171
+ """Type checking stubs"""
13172
+ pass
13173
+
13174
+ def _typecheckingstub__872e790316704042dc15857aaaff7b99878b643ac02f9de929f704cf6ca6762a(
13175
+ value: typing.Optional[builtins.str],
13176
+ ) -> None:
13177
+ """Type checking stubs"""
13178
+ pass
13179
+
13180
+ def _typecheckingstub__0b87add426c25b8a2eafdfd51a8707432f3ee35363162b07265e414b1d427ff1(
13181
+ value: typing.Optional[builtins.str],
13182
+ ) -> None:
13183
+ """Type checking stubs"""
13184
+ pass
13185
+
13186
+ def _typecheckingstub__f495fae800c8dcb91a694653b2ad64d2941fc50e22122f09ae7dff638a8b93af(
13187
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProjectProfile.ProjectScopeProperty]]]],
13188
+ ) -> None:
13189
+ """Type checking stubs"""
13190
+ pass
13191
+
13192
+ def _typecheckingstub__22f2f0484438c03962ae71a7a8c680afa1c54e8a672160956c3951d55a32ae02(
13193
+ value: typing.Optional[builtins.str],
13194
+ ) -> None:
13195
+ """Type checking stubs"""
13196
+ pass
13197
+
13198
+ def _typecheckingstub__175661648034f5742b855ee284c1c19c3777b76bfcfff2c198ccc3056c5d8b46(
13199
+ *,
13200
+ designation_id: builtins.str,
13201
+ ) -> None:
13202
+ """Type checking stubs"""
13203
+ pass
13204
+
13205
+ def _typecheckingstub__a2029f9834b3b4721032c2da8218348c7d12f257b99892b1e132ee4be37449c6(
13206
+ *,
13207
+ name: builtins.str,
13208
+ policy: typing.Optional[builtins.str] = None,
13209
+ ) -> None:
13210
+ """Type checking stubs"""
13211
+ pass
13212
+
13213
+ def _typecheckingstub__16088b85440c601f18ad4a194ccb23740aedaa1b4f93a76e720d939c57cb4d2e(
13214
+ *,
13215
+ name: builtins.str,
13216
+ allowed_designations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProjectProfile.DesignationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
13217
+ change_log: typing.Optional[builtins.str] = None,
13218
+ description: typing.Optional[builtins.str] = None,
13219
+ domain_identifier: typing.Optional[builtins.str] = None,
13220
+ domain_unit_identifier: typing.Optional[builtins.str] = None,
13221
+ project_scopes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProjectProfile.ProjectScopeProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
13222
+ status: typing.Optional[builtins.str] = None,
13223
+ ) -> None:
13224
+ """Type checking stubs"""
13225
+ pass
13226
+
12537
13227
  def _typecheckingstub__d519699f8d5d172880216006cab9e8c1595fc99339cf485d2be1f6c37bbc5a4c(
12538
13228
  *,
12539
13229
  domain_identifier: builtins.str,