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
@@ -5264,7 +5264,7 @@ class CfnDomain(
5264
5264
  :param description: The description of the Amazon DataZone domain.
5265
5265
  :param domain_version: The domain version.
5266
5266
  :param kms_key_identifier: The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.
5267
- :param service_role: The service role of the domain that is created.
5267
+ :param service_role: The service role of the domain.
5268
5268
  :param single_sign_on: The single sign-on details in Amazon DataZone.
5269
5269
  :param tags: The tags specified for the Amazon DataZone domain.
5270
5270
  '''
@@ -5372,7 +5372,7 @@ class CfnDomain(
5372
5372
  @builtins.property
5373
5373
  @jsii.member(jsii_name="attrRootDomainUnitId")
5374
5374
  def attr_root_domain_unit_id(self) -> builtins.str:
5375
- '''The ID of the root domain in Amazon Datazone.
5375
+ '''The ID of the root domain unit.
5376
5376
 
5377
5377
  :cloudformationAttribute: RootDomainUnitId
5378
5378
  '''
@@ -5466,7 +5466,7 @@ class CfnDomain(
5466
5466
  @builtins.property
5467
5467
  @jsii.member(jsii_name="serviceRole")
5468
5468
  def service_role(self) -> typing.Optional[builtins.str]:
5469
- '''The service role of the domain that is created.'''
5469
+ '''The service role of the domain.'''
5470
5470
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "serviceRole"))
5471
5471
 
5472
5472
  @service_role.setter
@@ -5526,7 +5526,7 @@ class CfnDomain(
5526
5526
  ) -> None:
5527
5527
  '''The single sign-on details in Amazon DataZone.
5528
5528
 
5529
- :param idc_instance_arn: The ARN of the AWS Identity Center instance.
5529
+ :param idc_instance_arn: The ARN of the IDC instance.
5530
5530
  :param type: The type of single sign-on in Amazon DataZone.
5531
5531
  :param user_assignment: The single sign-on user assignment in Amazon DataZone.
5532
5532
 
@@ -5560,7 +5560,7 @@ class CfnDomain(
5560
5560
 
5561
5561
  @builtins.property
5562
5562
  def idc_instance_arn(self) -> typing.Optional[builtins.str]:
5563
- '''The ARN of the AWS Identity Center instance.
5563
+ '''The ARN of the IDC instance.
5564
5564
 
5565
5565
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-domain-singlesignon.html#cfn-datazone-domain-singlesignon-idcinstancearn
5566
5566
  '''
@@ -5631,7 +5631,7 @@ class CfnDomainProps:
5631
5631
  :param description: The description of the Amazon DataZone domain.
5632
5632
  :param domain_version: The domain version.
5633
5633
  :param kms_key_identifier: The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.
5634
- :param service_role: The service role of the domain that is created.
5634
+ :param service_role: The service role of the domain.
5635
5635
  :param single_sign_on: The single sign-on details in Amazon DataZone.
5636
5636
  :param tags: The tags specified for the Amazon DataZone domain.
5637
5637
 
@@ -5742,7 +5742,7 @@ class CfnDomainProps:
5742
5742
 
5743
5743
  @builtins.property
5744
5744
  def service_role(self) -> typing.Optional[builtins.str]:
5745
- '''The service role of the domain that is created.
5745
+ '''The service role of the domain.
5746
5746
 
5747
5747
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html#cfn-datazone-domain-servicerole
5748
5748
  '''
@@ -5781,6 +5781,316 @@ class CfnDomainProps:
5781
5781
  )
5782
5782
 
5783
5783
 
5784
+ @jsii.implements(_IInspectable_c2943556)
5785
+ class CfnDomainUnit(
5786
+ _CfnResource_9df397a6,
5787
+ metaclass=jsii.JSIIMeta,
5788
+ jsii_type="aws-cdk-lib.aws_datazone.CfnDomainUnit",
5789
+ ):
5790
+ '''The summary of the domain unit.
5791
+
5792
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html
5793
+ :cloudformationResource: AWS::DataZone::DomainUnit
5794
+ :exampleMetadata: fixture=_generated
5795
+
5796
+ Example::
5797
+
5798
+ # The code below shows an example of how to instantiate this type.
5799
+ # The values are placeholders you should change.
5800
+ from aws_cdk import aws_datazone as datazone
5801
+
5802
+ cfn_domain_unit = datazone.CfnDomainUnit(self, "MyCfnDomainUnit",
5803
+ domain_identifier="domainIdentifier",
5804
+ name="name",
5805
+ parent_domain_unit_identifier="parentDomainUnitIdentifier",
5806
+
5807
+ # the properties below are optional
5808
+ description="description"
5809
+ )
5810
+ '''
5811
+
5812
+ def __init__(
5813
+ self,
5814
+ scope: _constructs_77d1e7e8.Construct,
5815
+ id: builtins.str,
5816
+ *,
5817
+ domain_identifier: builtins.str,
5818
+ name: builtins.str,
5819
+ parent_domain_unit_identifier: builtins.str,
5820
+ description: typing.Optional[builtins.str] = None,
5821
+ ) -> None:
5822
+ '''
5823
+ :param scope: Scope in which this resource is defined.
5824
+ :param id: Construct identifier for this resource (unique in its scope).
5825
+ :param domain_identifier: The ID of the domain where you want to crate a domain unit.
5826
+ :param name: The name of the domain unit.
5827
+ :param parent_domain_unit_identifier: The ID of the parent domain unit.
5828
+ :param description: The description of the domain unit.
5829
+ '''
5830
+ if __debug__:
5831
+ type_hints = typing.get_type_hints(_typecheckingstub__1700595f9c5a7d1c2312abf9e8d15687f79d83e5ead5d4136afe1d562d212c38)
5832
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
5833
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
5834
+ props = CfnDomainUnitProps(
5835
+ domain_identifier=domain_identifier,
5836
+ name=name,
5837
+ parent_domain_unit_identifier=parent_domain_unit_identifier,
5838
+ description=description,
5839
+ )
5840
+
5841
+ jsii.create(self.__class__, self, [scope, id, props])
5842
+
5843
+ @jsii.member(jsii_name="inspect")
5844
+ def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
5845
+ '''Examines the CloudFormation resource and discloses attributes.
5846
+
5847
+ :param inspector: tree inspector to collect and process attributes.
5848
+ '''
5849
+ if __debug__:
5850
+ type_hints = typing.get_type_hints(_typecheckingstub__253603c22b8126a36f68fce57f93a169ab3bae1eea3f4a0ed84da859e1a38444)
5851
+ check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
5852
+ return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
5853
+
5854
+ @jsii.member(jsii_name="renderProperties")
5855
+ def _render_properties(
5856
+ self,
5857
+ props: typing.Mapping[builtins.str, typing.Any],
5858
+ ) -> typing.Mapping[builtins.str, typing.Any]:
5859
+ '''
5860
+ :param props: -
5861
+ '''
5862
+ if __debug__:
5863
+ type_hints = typing.get_type_hints(_typecheckingstub__a243fcb8e7ead0c756ca762c1cdda3fa9d1e09b6cc2627c55905a3ba1c13d46a)
5864
+ check_type(argname="argument props", value=props, expected_type=type_hints["props"])
5865
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
5866
+
5867
+ @jsii.python.classproperty
5868
+ @jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
5869
+ def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
5870
+ '''The CloudFormation resource type name for this resource class.'''
5871
+ return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
5872
+
5873
+ @builtins.property
5874
+ @jsii.member(jsii_name="attrCreatedAt")
5875
+ def attr_created_at(self) -> builtins.str:
5876
+ '''The time stamp at which the domain unit was created.
5877
+
5878
+ :cloudformationAttribute: CreatedAt
5879
+ '''
5880
+ return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
5881
+
5882
+ @builtins.property
5883
+ @jsii.member(jsii_name="attrDomainId")
5884
+ def attr_domain_id(self) -> builtins.str:
5885
+ '''The ID of the domain in which the domain unit lives.
5886
+
5887
+ :cloudformationAttribute: DomainId
5888
+ '''
5889
+ return typing.cast(builtins.str, jsii.get(self, "attrDomainId"))
5890
+
5891
+ @builtins.property
5892
+ @jsii.member(jsii_name="attrId")
5893
+ def attr_id(self) -> builtins.str:
5894
+ '''The ID of the domain unit.
5895
+
5896
+ :cloudformationAttribute: Id
5897
+ '''
5898
+ return typing.cast(builtins.str, jsii.get(self, "attrId"))
5899
+
5900
+ @builtins.property
5901
+ @jsii.member(jsii_name="attrIdentifier")
5902
+ def attr_identifier(self) -> builtins.str:
5903
+ '''The identifier of the domain unit that you want to get.
5904
+
5905
+ :cloudformationAttribute: Identifier
5906
+ '''
5907
+ return typing.cast(builtins.str, jsii.get(self, "attrIdentifier"))
5908
+
5909
+ @builtins.property
5910
+ @jsii.member(jsii_name="attrLastUpdatedAt")
5911
+ def attr_last_updated_at(self) -> builtins.str:
5912
+ '''The timestamp at which the domain unit was last updated.
5913
+
5914
+ :cloudformationAttribute: LastUpdatedAt
5915
+ '''
5916
+ return typing.cast(builtins.str, jsii.get(self, "attrLastUpdatedAt"))
5917
+
5918
+ @builtins.property
5919
+ @jsii.member(jsii_name="attrParentDomainUnitId")
5920
+ def attr_parent_domain_unit_id(self) -> builtins.str:
5921
+ '''The ID of the parent domain unit.
5922
+
5923
+ :cloudformationAttribute: ParentDomainUnitId
5924
+ '''
5925
+ return typing.cast(builtins.str, jsii.get(self, "attrParentDomainUnitId"))
5926
+
5927
+ @builtins.property
5928
+ @jsii.member(jsii_name="cfnProperties")
5929
+ def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
5930
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
5931
+
5932
+ @builtins.property
5933
+ @jsii.member(jsii_name="domainIdentifier")
5934
+ def domain_identifier(self) -> builtins.str:
5935
+ '''The ID of the domain where you want to crate a domain unit.'''
5936
+ return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
5937
+
5938
+ @domain_identifier.setter
5939
+ def domain_identifier(self, value: builtins.str) -> None:
5940
+ if __debug__:
5941
+ type_hints = typing.get_type_hints(_typecheckingstub__cf72156aa725b96faaed85404e23d70dc267cd0abb5f25a82730b49e79db3da3)
5942
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5943
+ jsii.set(self, "domainIdentifier", value) # pyright: ignore[reportArgumentType]
5944
+
5945
+ @builtins.property
5946
+ @jsii.member(jsii_name="name")
5947
+ def name(self) -> builtins.str:
5948
+ '''The name of the domain unit.'''
5949
+ return typing.cast(builtins.str, jsii.get(self, "name"))
5950
+
5951
+ @name.setter
5952
+ def name(self, value: builtins.str) -> None:
5953
+ if __debug__:
5954
+ type_hints = typing.get_type_hints(_typecheckingstub__9e554b39a08bdebb47a996dd0ed4d2386500e1f97db8b2b102320bf4c229a429)
5955
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5956
+ jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
5957
+
5958
+ @builtins.property
5959
+ @jsii.member(jsii_name="parentDomainUnitIdentifier")
5960
+ def parent_domain_unit_identifier(self) -> builtins.str:
5961
+ '''The ID of the parent domain unit.'''
5962
+ return typing.cast(builtins.str, jsii.get(self, "parentDomainUnitIdentifier"))
5963
+
5964
+ @parent_domain_unit_identifier.setter
5965
+ def parent_domain_unit_identifier(self, value: builtins.str) -> None:
5966
+ if __debug__:
5967
+ type_hints = typing.get_type_hints(_typecheckingstub__0fc10ab18c77014087fe1354e8f1063236b8830e559cbc2287ef325f51d1ab0c)
5968
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5969
+ jsii.set(self, "parentDomainUnitIdentifier", value) # pyright: ignore[reportArgumentType]
5970
+
5971
+ @builtins.property
5972
+ @jsii.member(jsii_name="description")
5973
+ def description(self) -> typing.Optional[builtins.str]:
5974
+ '''The description of the domain unit.'''
5975
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
5976
+
5977
+ @description.setter
5978
+ def description(self, value: typing.Optional[builtins.str]) -> None:
5979
+ if __debug__:
5980
+ type_hints = typing.get_type_hints(_typecheckingstub__a999765de6c52fcb132be3cd0b216fc666c0809dfc86c99a02dfc71a5fff2974)
5981
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5982
+ jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
5983
+
5984
+
5985
+ @jsii.data_type(
5986
+ jsii_type="aws-cdk-lib.aws_datazone.CfnDomainUnitProps",
5987
+ jsii_struct_bases=[],
5988
+ name_mapping={
5989
+ "domain_identifier": "domainIdentifier",
5990
+ "name": "name",
5991
+ "parent_domain_unit_identifier": "parentDomainUnitIdentifier",
5992
+ "description": "description",
5993
+ },
5994
+ )
5995
+ class CfnDomainUnitProps:
5996
+ def __init__(
5997
+ self,
5998
+ *,
5999
+ domain_identifier: builtins.str,
6000
+ name: builtins.str,
6001
+ parent_domain_unit_identifier: builtins.str,
6002
+ description: typing.Optional[builtins.str] = None,
6003
+ ) -> None:
6004
+ '''Properties for defining a ``CfnDomainUnit``.
6005
+
6006
+ :param domain_identifier: The ID of the domain where you want to crate a domain unit.
6007
+ :param name: The name of the domain unit.
6008
+ :param parent_domain_unit_identifier: The ID of the parent domain unit.
6009
+ :param description: The description of the domain unit.
6010
+
6011
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html
6012
+ :exampleMetadata: fixture=_generated
6013
+
6014
+ Example::
6015
+
6016
+ # The code below shows an example of how to instantiate this type.
6017
+ # The values are placeholders you should change.
6018
+ from aws_cdk import aws_datazone as datazone
6019
+
6020
+ cfn_domain_unit_props = datazone.CfnDomainUnitProps(
6021
+ domain_identifier="domainIdentifier",
6022
+ name="name",
6023
+ parent_domain_unit_identifier="parentDomainUnitIdentifier",
6024
+
6025
+ # the properties below are optional
6026
+ description="description"
6027
+ )
6028
+ '''
6029
+ if __debug__:
6030
+ type_hints = typing.get_type_hints(_typecheckingstub__740935adbb77d29725778a65030d855aa614e033e09a756660d6c3eef6160bd9)
6031
+ check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
6032
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
6033
+ check_type(argname="argument parent_domain_unit_identifier", value=parent_domain_unit_identifier, expected_type=type_hints["parent_domain_unit_identifier"])
6034
+ check_type(argname="argument description", value=description, expected_type=type_hints["description"])
6035
+ self._values: typing.Dict[builtins.str, typing.Any] = {
6036
+ "domain_identifier": domain_identifier,
6037
+ "name": name,
6038
+ "parent_domain_unit_identifier": parent_domain_unit_identifier,
6039
+ }
6040
+ if description is not None:
6041
+ self._values["description"] = description
6042
+
6043
+ @builtins.property
6044
+ def domain_identifier(self) -> builtins.str:
6045
+ '''The ID of the domain where you want to crate a domain unit.
6046
+
6047
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#cfn-datazone-domainunit-domainidentifier
6048
+ '''
6049
+ result = self._values.get("domain_identifier")
6050
+ assert result is not None, "Required property 'domain_identifier' is missing"
6051
+ return typing.cast(builtins.str, result)
6052
+
6053
+ @builtins.property
6054
+ def name(self) -> builtins.str:
6055
+ '''The name of the domain unit.
6056
+
6057
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#cfn-datazone-domainunit-name
6058
+ '''
6059
+ result = self._values.get("name")
6060
+ assert result is not None, "Required property 'name' is missing"
6061
+ return typing.cast(builtins.str, result)
6062
+
6063
+ @builtins.property
6064
+ def parent_domain_unit_identifier(self) -> builtins.str:
6065
+ '''The ID of the parent domain unit.
6066
+
6067
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#cfn-datazone-domainunit-parentdomainunitidentifier
6068
+ '''
6069
+ result = self._values.get("parent_domain_unit_identifier")
6070
+ assert result is not None, "Required property 'parent_domain_unit_identifier' is missing"
6071
+ return typing.cast(builtins.str, result)
6072
+
6073
+ @builtins.property
6074
+ def description(self) -> typing.Optional[builtins.str]:
6075
+ '''The description of the domain unit.
6076
+
6077
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#cfn-datazone-domainunit-description
6078
+ '''
6079
+ result = self._values.get("description")
6080
+ return typing.cast(typing.Optional[builtins.str], result)
6081
+
6082
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
6083
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
6084
+
6085
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
6086
+ return not (rhs == self)
6087
+
6088
+ def __repr__(self) -> str:
6089
+ return "CfnDomainUnitProps(%s)" % ", ".join(
6090
+ k + "=" + repr(v) for k, v in self._values.items()
6091
+ )
6092
+
6093
+
5784
6094
  @jsii.implements(_IInspectable_c2943556)
5785
6095
  class CfnEnvironment(
5786
6096
  _CfnResource_9df397a6,
@@ -7917,102 +8227,543 @@ class CfnGroupProfile(
7917
8227
  '''The CloudFormation resource type name for this resource class.'''
7918
8228
  return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
7919
8229
 
7920
- @builtins.property
7921
- @jsii.member(jsii_name="attrDomainId")
7922
- def attr_domain_id(self) -> builtins.str:
7923
- '''The identifier of the Amazon DataZone domain in which a group profile exists.
8230
+ @builtins.property
8231
+ @jsii.member(jsii_name="attrDomainId")
8232
+ def attr_domain_id(self) -> builtins.str:
8233
+ '''The identifier of the Amazon DataZone domain in which a group profile exists.
8234
+
8235
+ :cloudformationAttribute: DomainId
8236
+ '''
8237
+ return typing.cast(builtins.str, jsii.get(self, "attrDomainId"))
8238
+
8239
+ @builtins.property
8240
+ @jsii.member(jsii_name="attrGroupName")
8241
+ def attr_group_name(self) -> builtins.str:
8242
+ '''The name of a group profile.
8243
+
8244
+ :cloudformationAttribute: GroupName
8245
+ '''
8246
+ return typing.cast(builtins.str, jsii.get(self, "attrGroupName"))
8247
+
8248
+ @builtins.property
8249
+ @jsii.member(jsii_name="attrId")
8250
+ def attr_id(self) -> builtins.str:
8251
+ '''The ID of a group profile.
8252
+
8253
+ :cloudformationAttribute: Id
8254
+ '''
8255
+ return typing.cast(builtins.str, jsii.get(self, "attrId"))
8256
+
8257
+ @builtins.property
8258
+ @jsii.member(jsii_name="cfnProperties")
8259
+ def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
8260
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
8261
+
8262
+ @builtins.property
8263
+ @jsii.member(jsii_name="domainIdentifier")
8264
+ def domain_identifier(self) -> builtins.str:
8265
+ '''The identifier of the Amazon DataZone domain in which a group profile exists.'''
8266
+ return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
8267
+
8268
+ @domain_identifier.setter
8269
+ def domain_identifier(self, value: builtins.str) -> None:
8270
+ if __debug__:
8271
+ type_hints = typing.get_type_hints(_typecheckingstub__3bfce5f937e19aa12105a026759b48056e8cb9facac990d4a84ae9ebf754349a)
8272
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
8273
+ jsii.set(self, "domainIdentifier", value) # pyright: ignore[reportArgumentType]
8274
+
8275
+ @builtins.property
8276
+ @jsii.member(jsii_name="groupIdentifier")
8277
+ def group_identifier(self) -> builtins.str:
8278
+ '''The ID of the group of a project member.'''
8279
+ return typing.cast(builtins.str, jsii.get(self, "groupIdentifier"))
8280
+
8281
+ @group_identifier.setter
8282
+ def group_identifier(self, value: builtins.str) -> None:
8283
+ if __debug__:
8284
+ type_hints = typing.get_type_hints(_typecheckingstub__c4cfe59401594c99ca6ed491e080ab3526afa6a5fbfa200d918455779f2c060f)
8285
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
8286
+ jsii.set(self, "groupIdentifier", value) # pyright: ignore[reportArgumentType]
8287
+
8288
+ @builtins.property
8289
+ @jsii.member(jsii_name="status")
8290
+ def status(self) -> typing.Optional[builtins.str]:
8291
+ '''The status of a group profile.'''
8292
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "status"))
8293
+
8294
+ @status.setter
8295
+ def status(self, value: typing.Optional[builtins.str]) -> None:
8296
+ if __debug__:
8297
+ type_hints = typing.get_type_hints(_typecheckingstub__489105c9239ff5a560f37a1c161dc9de12874e97ca98bb0ac4df8139e29b6727)
8298
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
8299
+ jsii.set(self, "status", value) # pyright: ignore[reportArgumentType]
8300
+
8301
+
8302
+ @jsii.data_type(
8303
+ jsii_type="aws-cdk-lib.aws_datazone.CfnGroupProfileProps",
8304
+ jsii_struct_bases=[],
8305
+ name_mapping={
8306
+ "domain_identifier": "domainIdentifier",
8307
+ "group_identifier": "groupIdentifier",
8308
+ "status": "status",
8309
+ },
8310
+ )
8311
+ class CfnGroupProfileProps:
8312
+ def __init__(
8313
+ self,
8314
+ *,
8315
+ domain_identifier: builtins.str,
8316
+ group_identifier: builtins.str,
8317
+ status: typing.Optional[builtins.str] = None,
8318
+ ) -> None:
8319
+ '''Properties for defining a ``CfnGroupProfile``.
8320
+
8321
+ :param domain_identifier: The identifier of the Amazon DataZone domain in which a group profile exists.
8322
+ :param group_identifier: The ID of the group of a project member.
8323
+ :param status: The status of a group profile.
8324
+
8325
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html
8326
+ :exampleMetadata: fixture=_generated
8327
+
8328
+ Example::
8329
+
8330
+ # The code below shows an example of how to instantiate this type.
8331
+ # The values are placeholders you should change.
8332
+ from aws_cdk import aws_datazone as datazone
8333
+
8334
+ cfn_group_profile_props = datazone.CfnGroupProfileProps(
8335
+ domain_identifier="domainIdentifier",
8336
+ group_identifier="groupIdentifier",
8337
+
8338
+ # the properties below are optional
8339
+ status="status"
8340
+ )
8341
+ '''
8342
+ if __debug__:
8343
+ type_hints = typing.get_type_hints(_typecheckingstub__4f4f2d05f4850cb07cd88e6e5af875d2c16fa3ae4bcbc384b9a51f7f0d0ca2e4)
8344
+ check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
8345
+ check_type(argname="argument group_identifier", value=group_identifier, expected_type=type_hints["group_identifier"])
8346
+ check_type(argname="argument status", value=status, expected_type=type_hints["status"])
8347
+ self._values: typing.Dict[builtins.str, typing.Any] = {
8348
+ "domain_identifier": domain_identifier,
8349
+ "group_identifier": group_identifier,
8350
+ }
8351
+ if status is not None:
8352
+ self._values["status"] = status
8353
+
8354
+ @builtins.property
8355
+ def domain_identifier(self) -> builtins.str:
8356
+ '''The identifier of the Amazon DataZone domain in which a group profile exists.
8357
+
8358
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-domainidentifier
8359
+ '''
8360
+ result = self._values.get("domain_identifier")
8361
+ assert result is not None, "Required property 'domain_identifier' is missing"
8362
+ return typing.cast(builtins.str, result)
8363
+
8364
+ @builtins.property
8365
+ def group_identifier(self) -> builtins.str:
8366
+ '''The ID of the group of a project member.
8367
+
8368
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-groupidentifier
8369
+ '''
8370
+ result = self._values.get("group_identifier")
8371
+ assert result is not None, "Required property 'group_identifier' is missing"
8372
+ return typing.cast(builtins.str, result)
8373
+
8374
+ @builtins.property
8375
+ def status(self) -> typing.Optional[builtins.str]:
8376
+ '''The status of a group profile.
8377
+
8378
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-status
8379
+ '''
8380
+ result = self._values.get("status")
8381
+ return typing.cast(typing.Optional[builtins.str], result)
8382
+
8383
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
8384
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
8385
+
8386
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
8387
+ return not (rhs == self)
8388
+
8389
+ def __repr__(self) -> str:
8390
+ return "CfnGroupProfileProps(%s)" % ", ".join(
8391
+ k + "=" + repr(v) for k, v in self._values.items()
8392
+ )
8393
+
8394
+
8395
+ @jsii.implements(_IInspectable_c2943556)
8396
+ class CfnOwner(
8397
+ _CfnResource_9df397a6,
8398
+ metaclass=jsii.JSIIMeta,
8399
+ jsii_type="aws-cdk-lib.aws_datazone.CfnOwner",
8400
+ ):
8401
+ '''The owner that you want to add to the entity.
8402
+
8403
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html
8404
+ :cloudformationResource: AWS::DataZone::Owner
8405
+ :exampleMetadata: fixture=_generated
8406
+
8407
+ Example::
8408
+
8409
+ # The code below shows an example of how to instantiate this type.
8410
+ # The values are placeholders you should change.
8411
+ from aws_cdk import aws_datazone as datazone
8412
+
8413
+ cfn_owner = datazone.CfnOwner(self, "MyCfnOwner",
8414
+ domain_identifier="domainIdentifier",
8415
+ entity_identifier="entityIdentifier",
8416
+ entity_type="entityType",
8417
+ owner=datazone.CfnOwner.OwnerPropertiesProperty(
8418
+ group=datazone.CfnOwner.OwnerGroupPropertiesProperty(
8419
+ group_identifier="groupIdentifier"
8420
+ ),
8421
+ user=datazone.CfnOwner.OwnerUserPropertiesProperty(
8422
+ user_identifier="userIdentifier"
8423
+ )
8424
+ )
8425
+ )
8426
+ '''
8427
+
8428
+ def __init__(
8429
+ self,
8430
+ scope: _constructs_77d1e7e8.Construct,
8431
+ id: builtins.str,
8432
+ *,
8433
+ domain_identifier: builtins.str,
8434
+ entity_identifier: builtins.str,
8435
+ entity_type: builtins.str,
8436
+ owner: typing.Union[_IResolvable_da3f097b, typing.Union["CfnOwner.OwnerPropertiesProperty", typing.Dict[builtins.str, typing.Any]]],
8437
+ ) -> None:
8438
+ '''
8439
+ :param scope: Scope in which this resource is defined.
8440
+ :param id: Construct identifier for this resource (unique in its scope).
8441
+ :param domain_identifier: The ID of the domain in which you want to add the entity owner.
8442
+ :param entity_identifier: The ID of the entity to which you want to add an owner.
8443
+ :param entity_type: The type of an entity.
8444
+ :param owner: The owner that you want to add to the entity.
8445
+ '''
8446
+ if __debug__:
8447
+ type_hints = typing.get_type_hints(_typecheckingstub__94bfd7733fd63571746923975807ae8f32ba35341a37f7148bb545b4e9847274)
8448
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
8449
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
8450
+ props = CfnOwnerProps(
8451
+ domain_identifier=domain_identifier,
8452
+ entity_identifier=entity_identifier,
8453
+ entity_type=entity_type,
8454
+ owner=owner,
8455
+ )
8456
+
8457
+ jsii.create(self.__class__, self, [scope, id, props])
8458
+
8459
+ @jsii.member(jsii_name="inspect")
8460
+ def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
8461
+ '''Examines the CloudFormation resource and discloses attributes.
8462
+
8463
+ :param inspector: tree inspector to collect and process attributes.
8464
+ '''
8465
+ if __debug__:
8466
+ type_hints = typing.get_type_hints(_typecheckingstub__aa3b09221ad53f7b391234ed414a2caf5be239897130cb63a881be90fd3d5159)
8467
+ check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
8468
+ return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
8469
+
8470
+ @jsii.member(jsii_name="renderProperties")
8471
+ def _render_properties(
8472
+ self,
8473
+ props: typing.Mapping[builtins.str, typing.Any],
8474
+ ) -> typing.Mapping[builtins.str, typing.Any]:
8475
+ '''
8476
+ :param props: -
8477
+ '''
8478
+ if __debug__:
8479
+ type_hints = typing.get_type_hints(_typecheckingstub__e7abc3e34a10e4f417d29d275feb8d0afab58fee4bf106d762ec5e892461eaa7)
8480
+ check_type(argname="argument props", value=props, expected_type=type_hints["props"])
8481
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
8482
+
8483
+ @jsii.python.classproperty
8484
+ @jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
8485
+ def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
8486
+ '''The CloudFormation resource type name for this resource class.'''
8487
+ return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
8488
+
8489
+ @builtins.property
8490
+ @jsii.member(jsii_name="cfnProperties")
8491
+ def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
8492
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
8493
+
8494
+ @builtins.property
8495
+ @jsii.member(jsii_name="domainIdentifier")
8496
+ def domain_identifier(self) -> builtins.str:
8497
+ '''The ID of the domain in which you want to add the entity owner.'''
8498
+ return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
8499
+
8500
+ @domain_identifier.setter
8501
+ def domain_identifier(self, value: builtins.str) -> None:
8502
+ if __debug__:
8503
+ type_hints = typing.get_type_hints(_typecheckingstub__e9073faa55a5b23ffa32de5b7b260a878507e76f90477bf1a9c90357c2872891)
8504
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
8505
+ jsii.set(self, "domainIdentifier", value) # pyright: ignore[reportArgumentType]
8506
+
8507
+ @builtins.property
8508
+ @jsii.member(jsii_name="entityIdentifier")
8509
+ def entity_identifier(self) -> builtins.str:
8510
+ '''The ID of the entity to which you want to add an owner.'''
8511
+ return typing.cast(builtins.str, jsii.get(self, "entityIdentifier"))
8512
+
8513
+ @entity_identifier.setter
8514
+ def entity_identifier(self, value: builtins.str) -> None:
8515
+ if __debug__:
8516
+ type_hints = typing.get_type_hints(_typecheckingstub__553cfea40a703af75f1688c6e78763ca8d67d1e10486295a4f15880e459e83ca)
8517
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
8518
+ jsii.set(self, "entityIdentifier", value) # pyright: ignore[reportArgumentType]
8519
+
8520
+ @builtins.property
8521
+ @jsii.member(jsii_name="entityType")
8522
+ def entity_type(self) -> builtins.str:
8523
+ '''The type of an entity.'''
8524
+ return typing.cast(builtins.str, jsii.get(self, "entityType"))
8525
+
8526
+ @entity_type.setter
8527
+ def entity_type(self, value: builtins.str) -> None:
8528
+ if __debug__:
8529
+ type_hints = typing.get_type_hints(_typecheckingstub__59a8766cde46db5fea0cab80e368951dc950c0c18bbe166065a74941ff7268d0)
8530
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
8531
+ jsii.set(self, "entityType", value) # pyright: ignore[reportArgumentType]
8532
+
8533
+ @builtins.property
8534
+ @jsii.member(jsii_name="owner")
8535
+ def owner(
8536
+ self,
8537
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerPropertiesProperty"]:
8538
+ '''The owner that you want to add to the entity.'''
8539
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerPropertiesProperty"], jsii.get(self, "owner"))
8540
+
8541
+ @owner.setter
8542
+ def owner(
8543
+ self,
8544
+ value: typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerPropertiesProperty"],
8545
+ ) -> None:
8546
+ if __debug__:
8547
+ type_hints = typing.get_type_hints(_typecheckingstub__9200651c9921dbe5e1d4780332c9e8f8b197d26e18954ed4949d2b2e1f42f642)
8548
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
8549
+ jsii.set(self, "owner", value) # pyright: ignore[reportArgumentType]
8550
+
8551
+ @jsii.data_type(
8552
+ jsii_type="aws-cdk-lib.aws_datazone.CfnOwner.OwnerGroupPropertiesProperty",
8553
+ jsii_struct_bases=[],
8554
+ name_mapping={"group_identifier": "groupIdentifier"},
8555
+ )
8556
+ class OwnerGroupPropertiesProperty:
8557
+ def __init__(
8558
+ self,
8559
+ *,
8560
+ group_identifier: typing.Optional[builtins.str] = None,
8561
+ ) -> None:
8562
+ '''The properties of the domain unit owners group.
8563
+
8564
+ :param group_identifier: The ID of the domain unit owners group.
8565
+
8566
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownergroupproperties.html
8567
+ :exampleMetadata: fixture=_generated
8568
+
8569
+ Example::
8570
+
8571
+ # The code below shows an example of how to instantiate this type.
8572
+ # The values are placeholders you should change.
8573
+ from aws_cdk import aws_datazone as datazone
8574
+
8575
+ owner_group_properties_property = datazone.CfnOwner.OwnerGroupPropertiesProperty(
8576
+ group_identifier="groupIdentifier"
8577
+ )
8578
+ '''
8579
+ if __debug__:
8580
+ type_hints = typing.get_type_hints(_typecheckingstub__ebdf17d77276482c77fb47efd9e4dbd02334583fe0ecbd40c08d7f701ee8d14b)
8581
+ check_type(argname="argument group_identifier", value=group_identifier, expected_type=type_hints["group_identifier"])
8582
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
8583
+ if group_identifier is not None:
8584
+ self._values["group_identifier"] = group_identifier
8585
+
8586
+ @builtins.property
8587
+ def group_identifier(self) -> typing.Optional[builtins.str]:
8588
+ '''The ID of the domain unit owners group.
8589
+
8590
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownergroupproperties.html#cfn-datazone-owner-ownergroupproperties-groupidentifier
8591
+ '''
8592
+ result = self._values.get("group_identifier")
8593
+ return typing.cast(typing.Optional[builtins.str], result)
8594
+
8595
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
8596
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
8597
+
8598
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
8599
+ return not (rhs == self)
8600
+
8601
+ def __repr__(self) -> str:
8602
+ return "OwnerGroupPropertiesProperty(%s)" % ", ".join(
8603
+ k + "=" + repr(v) for k, v in self._values.items()
8604
+ )
8605
+
8606
+ @jsii.data_type(
8607
+ jsii_type="aws-cdk-lib.aws_datazone.CfnOwner.OwnerPropertiesProperty",
8608
+ jsii_struct_bases=[],
8609
+ name_mapping={"group": "group", "user": "user"},
8610
+ )
8611
+ class OwnerPropertiesProperty:
8612
+ def __init__(
8613
+ self,
8614
+ *,
8615
+ group: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOwner.OwnerGroupPropertiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
8616
+ user: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOwner.OwnerUserPropertiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
8617
+ ) -> None:
8618
+ '''The properties of a domain unit's owner.
8619
+
8620
+ :param group: Specifies that the domain unit owner is a group.
8621
+ :param user: Specifies that the domain unit owner is a user.
8622
+
8623
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownerproperties.html
8624
+ :exampleMetadata: fixture=_generated
8625
+
8626
+ Example::
8627
+
8628
+ # The code below shows an example of how to instantiate this type.
8629
+ # The values are placeholders you should change.
8630
+ from aws_cdk import aws_datazone as datazone
8631
+
8632
+ owner_properties_property = datazone.CfnOwner.OwnerPropertiesProperty(
8633
+ group=datazone.CfnOwner.OwnerGroupPropertiesProperty(
8634
+ group_identifier="groupIdentifier"
8635
+ ),
8636
+ user=datazone.CfnOwner.OwnerUserPropertiesProperty(
8637
+ user_identifier="userIdentifier"
8638
+ )
8639
+ )
8640
+ '''
8641
+ if __debug__:
8642
+ type_hints = typing.get_type_hints(_typecheckingstub__5c101d7b0fa44737f68ea873c4543f1aaebe3e1acc72b89c5d6be7d3315a3f6a)
8643
+ check_type(argname="argument group", value=group, expected_type=type_hints["group"])
8644
+ check_type(argname="argument user", value=user, expected_type=type_hints["user"])
8645
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
8646
+ if group is not None:
8647
+ self._values["group"] = group
8648
+ if user is not None:
8649
+ self._values["user"] = user
8650
+
8651
+ @builtins.property
8652
+ def group(
8653
+ self,
8654
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerGroupPropertiesProperty"]]:
8655
+ '''Specifies that the domain unit owner is a group.
8656
+
8657
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownerproperties.html#cfn-datazone-owner-ownerproperties-group
8658
+ '''
8659
+ result = self._values.get("group")
8660
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerGroupPropertiesProperty"]], result)
8661
+
8662
+ @builtins.property
8663
+ def user(
8664
+ self,
8665
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerUserPropertiesProperty"]]:
8666
+ '''Specifies that the domain unit owner is a user.
7924
8667
 
7925
- :cloudformationAttribute: DomainId
7926
- '''
7927
- return typing.cast(builtins.str, jsii.get(self, "attrDomainId"))
8668
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownerproperties.html#cfn-datazone-owner-ownerproperties-user
8669
+ '''
8670
+ result = self._values.get("user")
8671
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOwner.OwnerUserPropertiesProperty"]], result)
7928
8672
 
7929
- @builtins.property
7930
- @jsii.member(jsii_name="attrGroupName")
7931
- def attr_group_name(self) -> builtins.str:
7932
- '''The name of a group profile.
8673
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
8674
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
7933
8675
 
7934
- :cloudformationAttribute: GroupName
7935
- '''
7936
- return typing.cast(builtins.str, jsii.get(self, "attrGroupName"))
8676
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
8677
+ return not (rhs == self)
7937
8678
 
7938
- @builtins.property
7939
- @jsii.member(jsii_name="attrId")
7940
- def attr_id(self) -> builtins.str:
7941
- '''The ID of a group profile.
8679
+ def __repr__(self) -> str:
8680
+ return "OwnerPropertiesProperty(%s)" % ", ".join(
8681
+ k + "=" + repr(v) for k, v in self._values.items()
8682
+ )
7942
8683
 
7943
- :cloudformationAttribute: Id
7944
- '''
7945
- return typing.cast(builtins.str, jsii.get(self, "attrId"))
8684
+ @jsii.data_type(
8685
+ jsii_type="aws-cdk-lib.aws_datazone.CfnOwner.OwnerUserPropertiesProperty",
8686
+ jsii_struct_bases=[],
8687
+ name_mapping={"user_identifier": "userIdentifier"},
8688
+ )
8689
+ class OwnerUserPropertiesProperty:
8690
+ def __init__(
8691
+ self,
8692
+ *,
8693
+ user_identifier: typing.Optional[builtins.str] = None,
8694
+ ) -> None:
8695
+ '''The properties of the owner user.
7946
8696
 
7947
- @builtins.property
7948
- @jsii.member(jsii_name="cfnProperties")
7949
- def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
7950
- return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
8697
+ :param user_identifier: The ID of the owner user.
7951
8698
 
7952
- @builtins.property
7953
- @jsii.member(jsii_name="domainIdentifier")
7954
- def domain_identifier(self) -> builtins.str:
7955
- '''The identifier of the Amazon DataZone domain in which a group profile exists.'''
7956
- return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
8699
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-owneruserproperties.html
8700
+ :exampleMetadata: fixture=_generated
7957
8701
 
7958
- @domain_identifier.setter
7959
- def domain_identifier(self, value: builtins.str) -> None:
7960
- if __debug__:
7961
- type_hints = typing.get_type_hints(_typecheckingstub__3bfce5f937e19aa12105a026759b48056e8cb9facac990d4a84ae9ebf754349a)
7962
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
7963
- jsii.set(self, "domainIdentifier", value) # pyright: ignore[reportArgumentType]
8702
+ Example::
7964
8703
 
7965
- @builtins.property
7966
- @jsii.member(jsii_name="groupIdentifier")
7967
- def group_identifier(self) -> builtins.str:
7968
- '''The ID of the group of a project member.'''
7969
- return typing.cast(builtins.str, jsii.get(self, "groupIdentifier"))
8704
+ # The code below shows an example of how to instantiate this type.
8705
+ # The values are placeholders you should change.
8706
+ from aws_cdk import aws_datazone as datazone
8707
+
8708
+ owner_user_properties_property = datazone.CfnOwner.OwnerUserPropertiesProperty(
8709
+ user_identifier="userIdentifier"
8710
+ )
8711
+ '''
8712
+ if __debug__:
8713
+ type_hints = typing.get_type_hints(_typecheckingstub__6ddd200ac00629d27d95838e6fe38733e398593324aa72df62d033667a13781d)
8714
+ check_type(argname="argument user_identifier", value=user_identifier, expected_type=type_hints["user_identifier"])
8715
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
8716
+ if user_identifier is not None:
8717
+ self._values["user_identifier"] = user_identifier
7970
8718
 
7971
- @group_identifier.setter
7972
- def group_identifier(self, value: builtins.str) -> None:
7973
- if __debug__:
7974
- type_hints = typing.get_type_hints(_typecheckingstub__c4cfe59401594c99ca6ed491e080ab3526afa6a5fbfa200d918455779f2c060f)
7975
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
7976
- jsii.set(self, "groupIdentifier", value) # pyright: ignore[reportArgumentType]
8719
+ @builtins.property
8720
+ def user_identifier(self) -> typing.Optional[builtins.str]:
8721
+ '''The ID of the owner user.
7977
8722
 
7978
- @builtins.property
7979
- @jsii.member(jsii_name="status")
7980
- def status(self) -> typing.Optional[builtins.str]:
7981
- '''The status of a group profile.'''
7982
- return typing.cast(typing.Optional[builtins.str], jsii.get(self, "status"))
8723
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-owneruserproperties.html#cfn-datazone-owner-owneruserproperties-useridentifier
8724
+ '''
8725
+ result = self._values.get("user_identifier")
8726
+ return typing.cast(typing.Optional[builtins.str], result)
7983
8727
 
7984
- @status.setter
7985
- def status(self, value: typing.Optional[builtins.str]) -> None:
7986
- if __debug__:
7987
- type_hints = typing.get_type_hints(_typecheckingstub__489105c9239ff5a560f37a1c161dc9de12874e97ca98bb0ac4df8139e29b6727)
7988
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
7989
- jsii.set(self, "status", value) # pyright: ignore[reportArgumentType]
8728
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
8729
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
8730
+
8731
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
8732
+ return not (rhs == self)
8733
+
8734
+ def __repr__(self) -> str:
8735
+ return "OwnerUserPropertiesProperty(%s)" % ", ".join(
8736
+ k + "=" + repr(v) for k, v in self._values.items()
8737
+ )
7990
8738
 
7991
8739
 
7992
8740
  @jsii.data_type(
7993
- jsii_type="aws-cdk-lib.aws_datazone.CfnGroupProfileProps",
8741
+ jsii_type="aws-cdk-lib.aws_datazone.CfnOwnerProps",
7994
8742
  jsii_struct_bases=[],
7995
8743
  name_mapping={
7996
8744
  "domain_identifier": "domainIdentifier",
7997
- "group_identifier": "groupIdentifier",
7998
- "status": "status",
8745
+ "entity_identifier": "entityIdentifier",
8746
+ "entity_type": "entityType",
8747
+ "owner": "owner",
7999
8748
  },
8000
8749
  )
8001
- class CfnGroupProfileProps:
8750
+ class CfnOwnerProps:
8002
8751
  def __init__(
8003
8752
  self,
8004
8753
  *,
8005
8754
  domain_identifier: builtins.str,
8006
- group_identifier: builtins.str,
8007
- status: typing.Optional[builtins.str] = None,
8755
+ entity_identifier: builtins.str,
8756
+ entity_type: builtins.str,
8757
+ owner: typing.Union[_IResolvable_da3f097b, typing.Union[CfnOwner.OwnerPropertiesProperty, typing.Dict[builtins.str, typing.Any]]],
8008
8758
  ) -> None:
8009
- '''Properties for defining a ``CfnGroupProfile``.
8759
+ '''Properties for defining a ``CfnOwner``.
8010
8760
 
8011
- :param domain_identifier: The identifier of the Amazon DataZone domain in which a group profile exists.
8012
- :param group_identifier: The ID of the group of a project member.
8013
- :param status: The status of a group profile.
8761
+ :param domain_identifier: The ID of the domain in which you want to add the entity owner.
8762
+ :param entity_identifier: The ID of the entity to which you want to add an owner.
8763
+ :param entity_type: The type of an entity.
8764
+ :param owner: The owner that you want to add to the entity.
8014
8765
 
8015
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html
8766
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html
8016
8767
  :exampleMetadata: fixture=_generated
8017
8768
 
8018
8769
  Example::
@@ -8021,54 +8772,74 @@ class CfnGroupProfileProps:
8021
8772
  # The values are placeholders you should change.
8022
8773
  from aws_cdk import aws_datazone as datazone
8023
8774
 
8024
- cfn_group_profile_props = datazone.CfnGroupProfileProps(
8775
+ cfn_owner_props = datazone.CfnOwnerProps(
8025
8776
  domain_identifier="domainIdentifier",
8026
- group_identifier="groupIdentifier",
8027
-
8028
- # the properties below are optional
8029
- status="status"
8777
+ entity_identifier="entityIdentifier",
8778
+ entity_type="entityType",
8779
+ owner=datazone.CfnOwner.OwnerPropertiesProperty(
8780
+ group=datazone.CfnOwner.OwnerGroupPropertiesProperty(
8781
+ group_identifier="groupIdentifier"
8782
+ ),
8783
+ user=datazone.CfnOwner.OwnerUserPropertiesProperty(
8784
+ user_identifier="userIdentifier"
8785
+ )
8786
+ )
8030
8787
  )
8031
8788
  '''
8032
8789
  if __debug__:
8033
- type_hints = typing.get_type_hints(_typecheckingstub__4f4f2d05f4850cb07cd88e6e5af875d2c16fa3ae4bcbc384b9a51f7f0d0ca2e4)
8790
+ type_hints = typing.get_type_hints(_typecheckingstub__d35804fdeb7af54df495ac452da3f154252f3e8b980bc354ae920748f4c8e46d)
8034
8791
  check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
8035
- check_type(argname="argument group_identifier", value=group_identifier, expected_type=type_hints["group_identifier"])
8036
- check_type(argname="argument status", value=status, expected_type=type_hints["status"])
8792
+ check_type(argname="argument entity_identifier", value=entity_identifier, expected_type=type_hints["entity_identifier"])
8793
+ check_type(argname="argument entity_type", value=entity_type, expected_type=type_hints["entity_type"])
8794
+ check_type(argname="argument owner", value=owner, expected_type=type_hints["owner"])
8037
8795
  self._values: typing.Dict[builtins.str, typing.Any] = {
8038
8796
  "domain_identifier": domain_identifier,
8039
- "group_identifier": group_identifier,
8797
+ "entity_identifier": entity_identifier,
8798
+ "entity_type": entity_type,
8799
+ "owner": owner,
8040
8800
  }
8041
- if status is not None:
8042
- self._values["status"] = status
8043
8801
 
8044
8802
  @builtins.property
8045
8803
  def domain_identifier(self) -> builtins.str:
8046
- '''The identifier of the Amazon DataZone domain in which a group profile exists.
8804
+ '''The ID of the domain in which you want to add the entity owner.
8047
8805
 
8048
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-domainidentifier
8806
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-domainidentifier
8049
8807
  '''
8050
8808
  result = self._values.get("domain_identifier")
8051
8809
  assert result is not None, "Required property 'domain_identifier' is missing"
8052
8810
  return typing.cast(builtins.str, result)
8053
8811
 
8054
8812
  @builtins.property
8055
- def group_identifier(self) -> builtins.str:
8056
- '''The ID of the group of a project member.
8813
+ def entity_identifier(self) -> builtins.str:
8814
+ '''The ID of the entity to which you want to add an owner.
8057
8815
 
8058
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-groupidentifier
8816
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-entityidentifier
8059
8817
  '''
8060
- result = self._values.get("group_identifier")
8061
- assert result is not None, "Required property 'group_identifier' is missing"
8818
+ result = self._values.get("entity_identifier")
8819
+ assert result is not None, "Required property 'entity_identifier' is missing"
8062
8820
  return typing.cast(builtins.str, result)
8063
8821
 
8064
8822
  @builtins.property
8065
- def status(self) -> typing.Optional[builtins.str]:
8066
- '''The status of a group profile.
8823
+ def entity_type(self) -> builtins.str:
8824
+ '''The type of an entity.
8067
8825
 
8068
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-status
8826
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-entitytype
8069
8827
  '''
8070
- result = self._values.get("status")
8071
- return typing.cast(typing.Optional[builtins.str], result)
8828
+ result = self._values.get("entity_type")
8829
+ assert result is not None, "Required property 'entity_type' is missing"
8830
+ return typing.cast(builtins.str, result)
8831
+
8832
+ @builtins.property
8833
+ def owner(
8834
+ self,
8835
+ ) -> typing.Union[_IResolvable_da3f097b, CfnOwner.OwnerPropertiesProperty]:
8836
+ '''The owner that you want to add to the entity.
8837
+
8838
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-owner
8839
+ '''
8840
+ result = self._values.get("owner")
8841
+ assert result is not None, "Required property 'owner' is missing"
8842
+ return typing.cast(typing.Union[_IResolvable_da3f097b, CfnOwner.OwnerPropertiesProperty], result)
8072
8843
 
8073
8844
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
8074
8845
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -8077,7 +8848,7 @@ class CfnGroupProfileProps:
8077
8848
  return not (rhs == self)
8078
8849
 
8079
8850
  def __repr__(self) -> str:
8080
- return "CfnGroupProfileProps(%s)" % ", ".join(
8851
+ return "CfnOwnerProps(%s)" % ", ".join(
8081
8852
  k + "=" + repr(v) for k, v in self._values.items()
8082
8853
  )
8083
8854
 
@@ -9819,6 +10590,8 @@ __all__ = [
9819
10590
  "CfnDataSourceProps",
9820
10591
  "CfnDomain",
9821
10592
  "CfnDomainProps",
10593
+ "CfnDomainUnit",
10594
+ "CfnDomainUnitProps",
9822
10595
  "CfnEnvironment",
9823
10596
  "CfnEnvironmentActions",
9824
10597
  "CfnEnvironmentActionsProps",
@@ -9829,6 +10602,8 @@ __all__ = [
9829
10602
  "CfnEnvironmentProps",
9830
10603
  "CfnGroupProfile",
9831
10604
  "CfnGroupProfileProps",
10605
+ "CfnOwner",
10606
+ "CfnOwnerProps",
9832
10607
  "CfnProject",
9833
10608
  "CfnProjectMembership",
9834
10609
  "CfnProjectMembershipProps",
@@ -10473,6 +11248,64 @@ def _typecheckingstub__6d98e07f58a8aeb53fe8b36894639594f83be43ac8d182e1c384572cf
10473
11248
  """Type checking stubs"""
10474
11249
  pass
10475
11250
 
11251
+ def _typecheckingstub__1700595f9c5a7d1c2312abf9e8d15687f79d83e5ead5d4136afe1d562d212c38(
11252
+ scope: _constructs_77d1e7e8.Construct,
11253
+ id: builtins.str,
11254
+ *,
11255
+ domain_identifier: builtins.str,
11256
+ name: builtins.str,
11257
+ parent_domain_unit_identifier: builtins.str,
11258
+ description: typing.Optional[builtins.str] = None,
11259
+ ) -> None:
11260
+ """Type checking stubs"""
11261
+ pass
11262
+
11263
+ def _typecheckingstub__253603c22b8126a36f68fce57f93a169ab3bae1eea3f4a0ed84da859e1a38444(
11264
+ inspector: _TreeInspector_488e0dd5,
11265
+ ) -> None:
11266
+ """Type checking stubs"""
11267
+ pass
11268
+
11269
+ def _typecheckingstub__a243fcb8e7ead0c756ca762c1cdda3fa9d1e09b6cc2627c55905a3ba1c13d46a(
11270
+ props: typing.Mapping[builtins.str, typing.Any],
11271
+ ) -> None:
11272
+ """Type checking stubs"""
11273
+ pass
11274
+
11275
+ def _typecheckingstub__cf72156aa725b96faaed85404e23d70dc267cd0abb5f25a82730b49e79db3da3(
11276
+ value: builtins.str,
11277
+ ) -> None:
11278
+ """Type checking stubs"""
11279
+ pass
11280
+
11281
+ def _typecheckingstub__9e554b39a08bdebb47a996dd0ed4d2386500e1f97db8b2b102320bf4c229a429(
11282
+ value: builtins.str,
11283
+ ) -> None:
11284
+ """Type checking stubs"""
11285
+ pass
11286
+
11287
+ def _typecheckingstub__0fc10ab18c77014087fe1354e8f1063236b8830e559cbc2287ef325f51d1ab0c(
11288
+ value: builtins.str,
11289
+ ) -> None:
11290
+ """Type checking stubs"""
11291
+ pass
11292
+
11293
+ def _typecheckingstub__a999765de6c52fcb132be3cd0b216fc666c0809dfc86c99a02dfc71a5fff2974(
11294
+ value: typing.Optional[builtins.str],
11295
+ ) -> None:
11296
+ """Type checking stubs"""
11297
+ pass
11298
+
11299
+ def _typecheckingstub__740935adbb77d29725778a65030d855aa614e033e09a756660d6c3eef6160bd9(
11300
+ *,
11301
+ domain_identifier: builtins.str,
11302
+ name: builtins.str,
11303
+ parent_domain_unit_identifier: builtins.str,
11304
+ description: typing.Optional[builtins.str] = None,
11305
+ ) -> None:
11306
+ """Type checking stubs"""
11307
+ pass
11308
+
10476
11309
  def _typecheckingstub__b9dbab782927b08354bbafa4881abe3f775c9141395be836e6450777f8729b9b(
10477
11310
  scope: _constructs_77d1e7e8.Construct,
10478
11311
  id: builtins.str,
@@ -10898,6 +11731,86 @@ def _typecheckingstub__4f4f2d05f4850cb07cd88e6e5af875d2c16fa3ae4bcbc384b9a51f7f0
10898
11731
  """Type checking stubs"""
10899
11732
  pass
10900
11733
 
11734
+ def _typecheckingstub__94bfd7733fd63571746923975807ae8f32ba35341a37f7148bb545b4e9847274(
11735
+ scope: _constructs_77d1e7e8.Construct,
11736
+ id: builtins.str,
11737
+ *,
11738
+ domain_identifier: builtins.str,
11739
+ entity_identifier: builtins.str,
11740
+ entity_type: builtins.str,
11741
+ owner: typing.Union[_IResolvable_da3f097b, typing.Union[CfnOwner.OwnerPropertiesProperty, typing.Dict[builtins.str, typing.Any]]],
11742
+ ) -> None:
11743
+ """Type checking stubs"""
11744
+ pass
11745
+
11746
+ def _typecheckingstub__aa3b09221ad53f7b391234ed414a2caf5be239897130cb63a881be90fd3d5159(
11747
+ inspector: _TreeInspector_488e0dd5,
11748
+ ) -> None:
11749
+ """Type checking stubs"""
11750
+ pass
11751
+
11752
+ def _typecheckingstub__e7abc3e34a10e4f417d29d275feb8d0afab58fee4bf106d762ec5e892461eaa7(
11753
+ props: typing.Mapping[builtins.str, typing.Any],
11754
+ ) -> None:
11755
+ """Type checking stubs"""
11756
+ pass
11757
+
11758
+ def _typecheckingstub__e9073faa55a5b23ffa32de5b7b260a878507e76f90477bf1a9c90357c2872891(
11759
+ value: builtins.str,
11760
+ ) -> None:
11761
+ """Type checking stubs"""
11762
+ pass
11763
+
11764
+ def _typecheckingstub__553cfea40a703af75f1688c6e78763ca8d67d1e10486295a4f15880e459e83ca(
11765
+ value: builtins.str,
11766
+ ) -> None:
11767
+ """Type checking stubs"""
11768
+ pass
11769
+
11770
+ def _typecheckingstub__59a8766cde46db5fea0cab80e368951dc950c0c18bbe166065a74941ff7268d0(
11771
+ value: builtins.str,
11772
+ ) -> None:
11773
+ """Type checking stubs"""
11774
+ pass
11775
+
11776
+ def _typecheckingstub__9200651c9921dbe5e1d4780332c9e8f8b197d26e18954ed4949d2b2e1f42f642(
11777
+ value: typing.Union[_IResolvable_da3f097b, CfnOwner.OwnerPropertiesProperty],
11778
+ ) -> None:
11779
+ """Type checking stubs"""
11780
+ pass
11781
+
11782
+ def _typecheckingstub__ebdf17d77276482c77fb47efd9e4dbd02334583fe0ecbd40c08d7f701ee8d14b(
11783
+ *,
11784
+ group_identifier: typing.Optional[builtins.str] = None,
11785
+ ) -> None:
11786
+ """Type checking stubs"""
11787
+ pass
11788
+
11789
+ def _typecheckingstub__5c101d7b0fa44737f68ea873c4543f1aaebe3e1acc72b89c5d6be7d3315a3f6a(
11790
+ *,
11791
+ group: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOwner.OwnerGroupPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
11792
+ user: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOwner.OwnerUserPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
11793
+ ) -> None:
11794
+ """Type checking stubs"""
11795
+ pass
11796
+
11797
+ def _typecheckingstub__6ddd200ac00629d27d95838e6fe38733e398593324aa72df62d033667a13781d(
11798
+ *,
11799
+ user_identifier: typing.Optional[builtins.str] = None,
11800
+ ) -> None:
11801
+ """Type checking stubs"""
11802
+ pass
11803
+
11804
+ def _typecheckingstub__d35804fdeb7af54df495ac452da3f154252f3e8b980bc354ae920748f4c8e46d(
11805
+ *,
11806
+ domain_identifier: builtins.str,
11807
+ entity_identifier: builtins.str,
11808
+ entity_type: builtins.str,
11809
+ owner: typing.Union[_IResolvable_da3f097b, typing.Union[CfnOwner.OwnerPropertiesProperty, typing.Dict[builtins.str, typing.Any]]],
11810
+ ) -> None:
11811
+ """Type checking stubs"""
11812
+ pass
11813
+
10901
11814
  def _typecheckingstub__2dd190e348e5421f499a11e44b2fb0c69295587e5e7717b13a56786a897efe7f(
10902
11815
  scope: _constructs_77d1e7e8.Construct,
10903
11816
  id: builtins.str,