aws-cdk-lib 2.196.1__py3-none-any.whl → 2.198.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 (43) hide show
  1. aws_cdk/__init__.py +2 -0
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.196.1.jsii.tgz → aws-cdk-lib@2.198.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +90 -1
  5. aws_cdk/aws_apigatewayv2/__init__.py +866 -0
  6. aws_cdk/aws_applicationautoscaling/__init__.py +36 -0
  7. aws_cdk/aws_appsync/__init__.py +31 -21
  8. aws_cdk/aws_autoscaling/__init__.py +2 -1
  9. aws_cdk/aws_bedrock/__init__.py +32 -26
  10. aws_cdk/aws_cloudfront/__init__.py +9 -3
  11. aws_cdk/aws_cloudwatch/__init__.py +756 -29
  12. aws_cdk/aws_codebuild/__init__.py +19 -0
  13. aws_cdk/aws_codepipeline/__init__.py +44 -7
  14. aws_cdk/aws_datasync/__init__.py +850 -833
  15. aws_cdk/aws_datazone/__init__.py +615 -2
  16. aws_cdk/aws_deadline/__init__.py +162 -4
  17. aws_cdk/aws_dsql/__init__.py +35 -1
  18. aws_cdk/aws_ec2/__init__.py +291 -7
  19. aws_cdk/aws_ecs/__init__.py +38 -19
  20. aws_cdk/aws_ecs_patterns/__init__.py +15 -9
  21. aws_cdk/aws_elasticache/__init__.py +5 -5
  22. aws_cdk/aws_elasticloadbalancingv2/__init__.py +14 -8
  23. aws_cdk/aws_gamelift/__init__.py +103 -17
  24. aws_cdk/aws_gameliftstreams/__init__.py +6 -6
  25. aws_cdk/aws_lex/__init__.py +1245 -172
  26. aws_cdk/aws_mediapackagev2/__init__.py +11 -10
  27. aws_cdk/aws_omics/__init__.py +939 -100
  28. aws_cdk/aws_pcs/__init__.py +126 -0
  29. aws_cdk/aws_rds/__init__.py +42 -15
  30. aws_cdk/aws_rolesanywhere/__init__.py +14 -13
  31. aws_cdk/aws_route53resolver/__init__.py +0 -41
  32. aws_cdk/aws_sagemaker/__init__.py +38 -12
  33. aws_cdk/aws_ses/__init__.py +192 -4
  34. aws_cdk/aws_ssmquicksetup/__init__.py +10 -2
  35. aws_cdk/aws_synthetics/__init__.py +137 -3
  36. aws_cdk/aws_wafv2/__init__.py +4 -4
  37. aws_cdk/aws_workspaces/__init__.py +41 -0
  38. {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/METADATA +2 -2
  39. {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/RECORD +43 -43
  40. {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/LICENSE +0 -0
  41. {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/NOTICE +0 -0
  42. {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/WHEEL +0 -0
  43. {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/top_level.txt +0 -0
@@ -6969,7 +6969,14 @@ class CfnEnvironmentBlueprintConfiguration(
6969
6969
  environment_blueprint_identifier="environmentBlueprintIdentifier",
6970
6970
 
6971
6971
  # the properties below are optional
6972
+ environment_role_permission_boundary="environmentRolePermissionBoundary",
6972
6973
  manage_access_role_arn="manageAccessRoleArn",
6974
+ provisioning_configurations=[datazone.CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty(
6975
+ lake_formation_configuration=datazone.CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty(
6976
+ location_registration_exclude_s3_locations=["locationRegistrationExcludeS3Locations"],
6977
+ location_registration_role="locationRegistrationRole"
6978
+ )
6979
+ )],
6973
6980
  provisioning_role_arn="provisioningRoleArn",
6974
6981
  regional_parameters=[datazone.CfnEnvironmentBlueprintConfiguration.RegionalParameterProperty(
6975
6982
  parameters={
@@ -6988,7 +6995,9 @@ class CfnEnvironmentBlueprintConfiguration(
6988
6995
  domain_identifier: builtins.str,
6989
6996
  enabled_regions: typing.Sequence[builtins.str],
6990
6997
  environment_blueprint_identifier: builtins.str,
6998
+ environment_role_permission_boundary: typing.Optional[builtins.str] = None,
6991
6999
  manage_access_role_arn: typing.Optional[builtins.str] = None,
7000
+ provisioning_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
6992
7001
  provisioning_role_arn: typing.Optional[builtins.str] = None,
6993
7002
  regional_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnEnvironmentBlueprintConfiguration.RegionalParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
6994
7003
  ) -> None:
@@ -6998,7 +7007,9 @@ class CfnEnvironmentBlueprintConfiguration(
6998
7007
  :param domain_identifier: The identifier of the Amazon DataZone domain in which an environment blueprint exists.
6999
7008
  :param enabled_regions: The enabled AWS Regions specified in a blueprint configuration.
7000
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:
7001
7011
  :param manage_access_role_arn: The ARN of the manage access role.
7012
+ :param provisioning_configurations:
7002
7013
  :param provisioning_role_arn: The ARN of the provisioning role.
7003
7014
  :param regional_parameters: The regional parameters of the environment blueprint.
7004
7015
  '''
@@ -7010,7 +7021,9 @@ class CfnEnvironmentBlueprintConfiguration(
7010
7021
  domain_identifier=domain_identifier,
7011
7022
  enabled_regions=enabled_regions,
7012
7023
  environment_blueprint_identifier=environment_blueprint_identifier,
7024
+ environment_role_permission_boundary=environment_role_permission_boundary,
7013
7025
  manage_access_role_arn=manage_access_role_arn,
7026
+ provisioning_configurations=provisioning_configurations,
7014
7027
  provisioning_role_arn=provisioning_role_arn,
7015
7028
  regional_parameters=regional_parameters,
7016
7029
  )
@@ -7129,6 +7142,21 @@ class CfnEnvironmentBlueprintConfiguration(
7129
7142
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
7130
7143
  jsii.set(self, "environmentBlueprintIdentifier", value) # pyright: ignore[reportArgumentType]
7131
7144
 
7145
+ @builtins.property
7146
+ @jsii.member(jsii_name="environmentRolePermissionBoundary")
7147
+ def environment_role_permission_boundary(self) -> typing.Optional[builtins.str]:
7148
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "environmentRolePermissionBoundary"))
7149
+
7150
+ @environment_role_permission_boundary.setter
7151
+ def environment_role_permission_boundary(
7152
+ self,
7153
+ value: typing.Optional[builtins.str],
7154
+ ) -> None:
7155
+ if __debug__:
7156
+ type_hints = typing.get_type_hints(_typecheckingstub__0142557047b6391f0c0d7425b73085935e7a1d5e07139d87dcb9c9ab709bd4ac)
7157
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
7158
+ jsii.set(self, "environmentRolePermissionBoundary", value) # pyright: ignore[reportArgumentType]
7159
+
7132
7160
  @builtins.property
7133
7161
  @jsii.member(jsii_name="manageAccessRoleArn")
7134
7162
  def manage_access_role_arn(self) -> typing.Optional[builtins.str]:
@@ -7142,6 +7170,23 @@ class CfnEnvironmentBlueprintConfiguration(
7142
7170
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
7143
7171
  jsii.set(self, "manageAccessRoleArn", value) # pyright: ignore[reportArgumentType]
7144
7172
 
7173
+ @builtins.property
7174
+ @jsii.member(jsii_name="provisioningConfigurations")
7175
+ def provisioning_configurations(
7176
+ self,
7177
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty"]]]]:
7178
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty"]]]], jsii.get(self, "provisioningConfigurations"))
7179
+
7180
+ @provisioning_configurations.setter
7181
+ def provisioning_configurations(
7182
+ self,
7183
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty"]]]],
7184
+ ) -> None:
7185
+ if __debug__:
7186
+ type_hints = typing.get_type_hints(_typecheckingstub__f945458658c5114bd92815174ffa8cabc189cbb27ef04cd8ca8a0ca6b933ad77)
7187
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
7188
+ jsii.set(self, "provisioningConfigurations", value) # pyright: ignore[reportArgumentType]
7189
+
7145
7190
  @builtins.property
7146
7191
  @jsii.member(jsii_name="provisioningRoleArn")
7147
7192
  def provisioning_role_arn(self) -> typing.Optional[builtins.str]:
@@ -7173,6 +7218,137 @@ class CfnEnvironmentBlueprintConfiguration(
7173
7218
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
7174
7219
  jsii.set(self, "regionalParameters", value) # pyright: ignore[reportArgumentType]
7175
7220
 
7221
+ @jsii.data_type(
7222
+ jsii_type="aws-cdk-lib.aws_datazone.CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty",
7223
+ jsii_struct_bases=[],
7224
+ name_mapping={
7225
+ "location_registration_exclude_s3_locations": "locationRegistrationExcludeS3Locations",
7226
+ "location_registration_role": "locationRegistrationRole",
7227
+ },
7228
+ )
7229
+ class LakeFormationConfigurationProperty:
7230
+ def __init__(
7231
+ self,
7232
+ *,
7233
+ location_registration_exclude_s3_locations: typing.Optional[typing.Sequence[builtins.str]] = None,
7234
+ location_registration_role: typing.Optional[builtins.str] = None,
7235
+ ) -> None:
7236
+ '''
7237
+ :param location_registration_exclude_s3_locations:
7238
+ :param location_registration_role:
7239
+
7240
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-lakeformationconfiguration.html
7241
+ :exampleMetadata: fixture=_generated
7242
+
7243
+ Example::
7244
+
7245
+ # The code below shows an example of how to instantiate this type.
7246
+ # The values are placeholders you should change.
7247
+ from aws_cdk import aws_datazone as datazone
7248
+
7249
+ lake_formation_configuration_property = datazone.CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty(
7250
+ location_registration_exclude_s3_locations=["locationRegistrationExcludeS3Locations"],
7251
+ location_registration_role="locationRegistrationRole"
7252
+ )
7253
+ '''
7254
+ if __debug__:
7255
+ type_hints = typing.get_type_hints(_typecheckingstub__5b34e7436c5711c0e3c03f2d39f197fd5268605136341c021dfdb2f9be036a01)
7256
+ check_type(argname="argument location_registration_exclude_s3_locations", value=location_registration_exclude_s3_locations, expected_type=type_hints["location_registration_exclude_s3_locations"])
7257
+ check_type(argname="argument location_registration_role", value=location_registration_role, expected_type=type_hints["location_registration_role"])
7258
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
7259
+ if location_registration_exclude_s3_locations is not None:
7260
+ self._values["location_registration_exclude_s3_locations"] = location_registration_exclude_s3_locations
7261
+ if location_registration_role is not None:
7262
+ self._values["location_registration_role"] = location_registration_role
7263
+
7264
+ @builtins.property
7265
+ def location_registration_exclude_s3_locations(
7266
+ self,
7267
+ ) -> typing.Optional[typing.List[builtins.str]]:
7268
+ '''
7269
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-lakeformationconfiguration.html#cfn-datazone-environmentblueprintconfiguration-lakeformationconfiguration-locationregistrationexcludes3locations
7270
+ '''
7271
+ result = self._values.get("location_registration_exclude_s3_locations")
7272
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
7273
+
7274
+ @builtins.property
7275
+ def location_registration_role(self) -> typing.Optional[builtins.str]:
7276
+ '''
7277
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-lakeformationconfiguration.html#cfn-datazone-environmentblueprintconfiguration-lakeformationconfiguration-locationregistrationrole
7278
+ '''
7279
+ result = self._values.get("location_registration_role")
7280
+ return typing.cast(typing.Optional[builtins.str], result)
7281
+
7282
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
7283
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
7284
+
7285
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
7286
+ return not (rhs == self)
7287
+
7288
+ def __repr__(self) -> str:
7289
+ return "LakeFormationConfigurationProperty(%s)" % ", ".join(
7290
+ k + "=" + repr(v) for k, v in self._values.items()
7291
+ )
7292
+
7293
+ @jsii.data_type(
7294
+ jsii_type="aws-cdk-lib.aws_datazone.CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty",
7295
+ jsii_struct_bases=[],
7296
+ name_mapping={"lake_formation_configuration": "lakeFormationConfiguration"},
7297
+ )
7298
+ class ProvisioningConfigurationProperty:
7299
+ def __init__(
7300
+ self,
7301
+ *,
7302
+ lake_formation_configuration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
7303
+ ) -> None:
7304
+ '''
7305
+ :param lake_formation_configuration:
7306
+
7307
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-provisioningconfiguration.html
7308
+ :exampleMetadata: fixture=_generated
7309
+
7310
+ Example::
7311
+
7312
+ # The code below shows an example of how to instantiate this type.
7313
+ # The values are placeholders you should change.
7314
+ from aws_cdk import aws_datazone as datazone
7315
+
7316
+ provisioning_configuration_property = datazone.CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty(
7317
+ lake_formation_configuration=datazone.CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty(
7318
+ location_registration_exclude_s3_locations=["locationRegistrationExcludeS3Locations"],
7319
+ location_registration_role="locationRegistrationRole"
7320
+ )
7321
+ )
7322
+ '''
7323
+ if __debug__:
7324
+ type_hints = typing.get_type_hints(_typecheckingstub__29b5e41d02462ac9818fbf0e54d1556527c5ab2ab685686237dee244c941e9bd)
7325
+ check_type(argname="argument lake_formation_configuration", value=lake_formation_configuration, expected_type=type_hints["lake_formation_configuration"])
7326
+ self._values: typing.Dict[builtins.str, typing.Any] = {
7327
+ "lake_formation_configuration": lake_formation_configuration,
7328
+ }
7329
+
7330
+ @builtins.property
7331
+ def lake_formation_configuration(
7332
+ self,
7333
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty"]:
7334
+ '''
7335
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-provisioningconfiguration.html#cfn-datazone-environmentblueprintconfiguration-provisioningconfiguration-lakeformationconfiguration
7336
+ '''
7337
+ result = self._values.get("lake_formation_configuration")
7338
+ assert result is not None, "Required property 'lake_formation_configuration' is missing"
7339
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty"], result)
7340
+
7341
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
7342
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
7343
+
7344
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
7345
+ return not (rhs == self)
7346
+
7347
+ def __repr__(self) -> str:
7348
+ return "ProvisioningConfigurationProperty(%s)" % ", ".join(
7349
+ k + "=" + repr(v) for k, v in self._values.items()
7350
+ )
7351
+
7176
7352
  @jsii.data_type(
7177
7353
  jsii_type="aws-cdk-lib.aws_datazone.CfnEnvironmentBlueprintConfiguration.RegionalParameterProperty",
7178
7354
  jsii_struct_bases=[],
@@ -7255,7 +7431,9 @@ class CfnEnvironmentBlueprintConfiguration(
7255
7431
  "domain_identifier": "domainIdentifier",
7256
7432
  "enabled_regions": "enabledRegions",
7257
7433
  "environment_blueprint_identifier": "environmentBlueprintIdentifier",
7434
+ "environment_role_permission_boundary": "environmentRolePermissionBoundary",
7258
7435
  "manage_access_role_arn": "manageAccessRoleArn",
7436
+ "provisioning_configurations": "provisioningConfigurations",
7259
7437
  "provisioning_role_arn": "provisioningRoleArn",
7260
7438
  "regional_parameters": "regionalParameters",
7261
7439
  },
@@ -7267,7 +7445,9 @@ class CfnEnvironmentBlueprintConfigurationProps:
7267
7445
  domain_identifier: builtins.str,
7268
7446
  enabled_regions: typing.Sequence[builtins.str],
7269
7447
  environment_blueprint_identifier: builtins.str,
7448
+ environment_role_permission_boundary: typing.Optional[builtins.str] = None,
7270
7449
  manage_access_role_arn: typing.Optional[builtins.str] = None,
7450
+ provisioning_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7271
7451
  provisioning_role_arn: typing.Optional[builtins.str] = None,
7272
7452
  regional_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEnvironmentBlueprintConfiguration.RegionalParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7273
7453
  ) -> None:
@@ -7276,7 +7456,9 @@ class CfnEnvironmentBlueprintConfigurationProps:
7276
7456
  :param domain_identifier: The identifier of the Amazon DataZone domain in which an environment blueprint exists.
7277
7457
  :param enabled_regions: The enabled AWS Regions specified in a blueprint configuration.
7278
7458
  :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:
7279
7460
  :param manage_access_role_arn: The ARN of the manage access role.
7461
+ :param provisioning_configurations:
7280
7462
  :param provisioning_role_arn: The ARN of the provisioning role.
7281
7463
  :param regional_parameters: The regional parameters of the environment blueprint.
7282
7464
 
@@ -7295,7 +7477,14 @@ class CfnEnvironmentBlueprintConfigurationProps:
7295
7477
  environment_blueprint_identifier="environmentBlueprintIdentifier",
7296
7478
 
7297
7479
  # the properties below are optional
7480
+ environment_role_permission_boundary="environmentRolePermissionBoundary",
7298
7481
  manage_access_role_arn="manageAccessRoleArn",
7482
+ provisioning_configurations=[datazone.CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty(
7483
+ lake_formation_configuration=datazone.CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty(
7484
+ location_registration_exclude_s3_locations=["locationRegistrationExcludeS3Locations"],
7485
+ location_registration_role="locationRegistrationRole"
7486
+ )
7487
+ )],
7299
7488
  provisioning_role_arn="provisioningRoleArn",
7300
7489
  regional_parameters=[datazone.CfnEnvironmentBlueprintConfiguration.RegionalParameterProperty(
7301
7490
  parameters={
@@ -7310,7 +7499,9 @@ class CfnEnvironmentBlueprintConfigurationProps:
7310
7499
  check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
7311
7500
  check_type(argname="argument enabled_regions", value=enabled_regions, expected_type=type_hints["enabled_regions"])
7312
7501
  check_type(argname="argument environment_blueprint_identifier", value=environment_blueprint_identifier, expected_type=type_hints["environment_blueprint_identifier"])
7502
+ check_type(argname="argument environment_role_permission_boundary", value=environment_role_permission_boundary, expected_type=type_hints["environment_role_permission_boundary"])
7313
7503
  check_type(argname="argument manage_access_role_arn", value=manage_access_role_arn, expected_type=type_hints["manage_access_role_arn"])
7504
+ check_type(argname="argument provisioning_configurations", value=provisioning_configurations, expected_type=type_hints["provisioning_configurations"])
7314
7505
  check_type(argname="argument provisioning_role_arn", value=provisioning_role_arn, expected_type=type_hints["provisioning_role_arn"])
7315
7506
  check_type(argname="argument regional_parameters", value=regional_parameters, expected_type=type_hints["regional_parameters"])
7316
7507
  self._values: typing.Dict[builtins.str, typing.Any] = {
@@ -7318,8 +7509,12 @@ class CfnEnvironmentBlueprintConfigurationProps:
7318
7509
  "enabled_regions": enabled_regions,
7319
7510
  "environment_blueprint_identifier": environment_blueprint_identifier,
7320
7511
  }
7512
+ if environment_role_permission_boundary is not None:
7513
+ self._values["environment_role_permission_boundary"] = environment_role_permission_boundary
7321
7514
  if manage_access_role_arn is not None:
7322
7515
  self._values["manage_access_role_arn"] = manage_access_role_arn
7516
+ if provisioning_configurations is not None:
7517
+ self._values["provisioning_configurations"] = provisioning_configurations
7323
7518
  if provisioning_role_arn is not None:
7324
7519
  self._values["provisioning_role_arn"] = provisioning_role_arn
7325
7520
  if regional_parameters is not None:
@@ -7357,6 +7552,14 @@ class CfnEnvironmentBlueprintConfigurationProps:
7357
7552
  assert result is not None, "Required property 'environment_blueprint_identifier' is missing"
7358
7553
  return typing.cast(builtins.str, result)
7359
7554
 
7555
+ @builtins.property
7556
+ def environment_role_permission_boundary(self) -> typing.Optional[builtins.str]:
7557
+ '''
7558
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-environmentrolepermissionboundary
7559
+ '''
7560
+ result = self._values.get("environment_role_permission_boundary")
7561
+ return typing.cast(typing.Optional[builtins.str], result)
7562
+
7360
7563
  @builtins.property
7361
7564
  def manage_access_role_arn(self) -> typing.Optional[builtins.str]:
7362
7565
  '''The ARN of the manage access role.
@@ -7366,6 +7569,16 @@ class CfnEnvironmentBlueprintConfigurationProps:
7366
7569
  result = self._values.get("manage_access_role_arn")
7367
7570
  return typing.cast(typing.Optional[builtins.str], result)
7368
7571
 
7572
+ @builtins.property
7573
+ def provisioning_configurations(
7574
+ self,
7575
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty]]]]:
7576
+ '''
7577
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-provisioningconfigurations
7578
+ '''
7579
+ result = self._values.get("provisioning_configurations")
7580
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty]]]], result)
7581
+
7369
7582
  @builtins.property
7370
7583
  def provisioning_role_arn(self) -> typing.Optional[builtins.str]:
7371
7584
  '''The ARN of the provisioning role.
@@ -8879,7 +9092,18 @@ class CfnProject(
8879
9092
 
8880
9093
  # the properties below are optional
8881
9094
  description="description",
8882
- glossary_terms=["glossaryTerms"]
9095
+ domain_unit_id="domainUnitId",
9096
+ glossary_terms=["glossaryTerms"],
9097
+ project_profile_id="projectProfileId",
9098
+ project_profile_version="projectProfileVersion",
9099
+ user_parameters=[datazone.CfnProject.EnvironmentConfigurationUserParameterProperty(
9100
+ environment_configuration_name="environmentConfigurationName",
9101
+ environment_id="environmentId",
9102
+ environment_parameters=[datazone.CfnProject.EnvironmentParameterProperty(
9103
+ name="name",
9104
+ value="value"
9105
+ )]
9106
+ )]
8883
9107
  )
8884
9108
  '''
8885
9109
 
@@ -8891,7 +9115,11 @@ class CfnProject(
8891
9115
  domain_identifier: builtins.str,
8892
9116
  name: builtins.str,
8893
9117
  description: typing.Optional[builtins.str] = None,
9118
+ domain_unit_id: typing.Optional[builtins.str] = None,
8894
9119
  glossary_terms: typing.Optional[typing.Sequence[builtins.str]] = None,
9120
+ project_profile_id: typing.Optional[builtins.str] = None,
9121
+ project_profile_version: typing.Optional[builtins.str] = None,
9122
+ user_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnProject.EnvironmentConfigurationUserParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
8895
9123
  ) -> None:
8896
9124
  '''
8897
9125
  :param scope: Scope in which this resource is defined.
@@ -8899,7 +9127,11 @@ class CfnProject(
8899
9127
  :param domain_identifier: The identifier of a Amazon DataZone domain where the project exists.
8900
9128
  :param name: The name of a project.
8901
9129
  :param description: The description of a project.
9130
+ :param domain_unit_id: The ID of the domain unit.
8902
9131
  :param glossary_terms: The glossary terms that can be used in this Amazon DataZone project.
9132
+ :param project_profile_id: The project profile ID.
9133
+ :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.
9134
+ :param user_parameters: The user parameters of the project.
8903
9135
  '''
8904
9136
  if __debug__:
8905
9137
  type_hints = typing.get_type_hints(_typecheckingstub__2dd190e348e5421f499a11e44b2fb0c69295587e5e7717b13a56786a897efe7f)
@@ -8909,7 +9141,11 @@ class CfnProject(
8909
9141
  domain_identifier=domain_identifier,
8910
9142
  name=name,
8911
9143
  description=description,
9144
+ domain_unit_id=domain_unit_id,
8912
9145
  glossary_terms=glossary_terms,
9146
+ project_profile_id=project_profile_id,
9147
+ project_profile_version=project_profile_version,
9148
+ user_parameters=user_parameters,
8913
9149
  )
8914
9150
 
8915
9151
  jsii.create(self.__class__, self, [scope, id, props])
@@ -8989,6 +9225,14 @@ class CfnProject(
8989
9225
  '''
8990
9226
  return typing.cast(builtins.str, jsii.get(self, "attrLastUpdatedAt"))
8991
9227
 
9228
+ @builtins.property
9229
+ @jsii.member(jsii_name="attrProjectStatus")
9230
+ def attr_project_status(self) -> builtins.str:
9231
+ '''
9232
+ :cloudformationAttribute: ProjectStatus
9233
+ '''
9234
+ return typing.cast(builtins.str, jsii.get(self, "attrProjectStatus"))
9235
+
8992
9236
  @builtins.property
8993
9237
  @jsii.member(jsii_name="cfnProperties")
8994
9238
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -9033,6 +9277,19 @@ class CfnProject(
9033
9277
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9034
9278
  jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
9035
9279
 
9280
+ @builtins.property
9281
+ @jsii.member(jsii_name="domainUnitId")
9282
+ def domain_unit_id(self) -> typing.Optional[builtins.str]:
9283
+ '''The ID of the domain unit.'''
9284
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "domainUnitId"))
9285
+
9286
+ @domain_unit_id.setter
9287
+ def domain_unit_id(self, value: typing.Optional[builtins.str]) -> None:
9288
+ if __debug__:
9289
+ type_hints = typing.get_type_hints(_typecheckingstub__38159bc2eeb309ee419b2f700c1738155e88fd699cb77897bb1441e19caa9250)
9290
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9291
+ jsii.set(self, "domainUnitId", value) # pyright: ignore[reportArgumentType]
9292
+
9036
9293
  @builtins.property
9037
9294
  @jsii.member(jsii_name="glossaryTerms")
9038
9295
  def glossary_terms(self) -> typing.Optional[typing.List[builtins.str]]:
@@ -9046,6 +9303,207 @@ class CfnProject(
9046
9303
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9047
9304
  jsii.set(self, "glossaryTerms", value) # pyright: ignore[reportArgumentType]
9048
9305
 
9306
+ @builtins.property
9307
+ @jsii.member(jsii_name="projectProfileId")
9308
+ def project_profile_id(self) -> typing.Optional[builtins.str]:
9309
+ '''The project profile ID.'''
9310
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "projectProfileId"))
9311
+
9312
+ @project_profile_id.setter
9313
+ def project_profile_id(self, value: typing.Optional[builtins.str]) -> None:
9314
+ if __debug__:
9315
+ type_hints = typing.get_type_hints(_typecheckingstub__cd4329ffc5180ec3c489a9b9628b37fda4e7e56daeff4465877926e7905d64d8)
9316
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9317
+ jsii.set(self, "projectProfileId", value) # pyright: ignore[reportArgumentType]
9318
+
9319
+ @builtins.property
9320
+ @jsii.member(jsii_name="projectProfileVersion")
9321
+ def project_profile_version(self) -> typing.Optional[builtins.str]:
9322
+ '''The project profile version to which the project should be updated.'''
9323
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "projectProfileVersion"))
9324
+
9325
+ @project_profile_version.setter
9326
+ def project_profile_version(self, value: typing.Optional[builtins.str]) -> None:
9327
+ if __debug__:
9328
+ type_hints = typing.get_type_hints(_typecheckingstub__5fea851298bf6dff2224e18bba1dcf8117578fd86b764925c8087d78e2917049)
9329
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9330
+ jsii.set(self, "projectProfileVersion", value) # pyright: ignore[reportArgumentType]
9331
+
9332
+ @builtins.property
9333
+ @jsii.member(jsii_name="userParameters")
9334
+ def user_parameters(
9335
+ self,
9336
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProject.EnvironmentConfigurationUserParameterProperty"]]]]:
9337
+ '''The user parameters of the project.'''
9338
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProject.EnvironmentConfigurationUserParameterProperty"]]]], jsii.get(self, "userParameters"))
9339
+
9340
+ @user_parameters.setter
9341
+ def user_parameters(
9342
+ self,
9343
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProject.EnvironmentConfigurationUserParameterProperty"]]]],
9344
+ ) -> None:
9345
+ if __debug__:
9346
+ type_hints = typing.get_type_hints(_typecheckingstub__3a8a1e223cb296d2e10e4a3c700e7f0c868d2c481c6f8c40ddf1c6a06e86a604)
9347
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9348
+ jsii.set(self, "userParameters", value) # pyright: ignore[reportArgumentType]
9349
+
9350
+ @jsii.data_type(
9351
+ jsii_type="aws-cdk-lib.aws_datazone.CfnProject.EnvironmentConfigurationUserParameterProperty",
9352
+ jsii_struct_bases=[],
9353
+ name_mapping={
9354
+ "environment_configuration_name": "environmentConfigurationName",
9355
+ "environment_id": "environmentId",
9356
+ "environment_parameters": "environmentParameters",
9357
+ },
9358
+ )
9359
+ class EnvironmentConfigurationUserParameterProperty:
9360
+ def __init__(
9361
+ self,
9362
+ *,
9363
+ environment_configuration_name: typing.Optional[builtins.str] = None,
9364
+ environment_id: typing.Optional[builtins.str] = None,
9365
+ environment_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnProject.EnvironmentParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
9366
+ ) -> None:
9367
+ '''
9368
+ :param environment_configuration_name:
9369
+ :param environment_id:
9370
+ :param environment_parameters:
9371
+
9372
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html
9373
+ :exampleMetadata: fixture=_generated
9374
+
9375
+ Example::
9376
+
9377
+ # The code below shows an example of how to instantiate this type.
9378
+ # The values are placeholders you should change.
9379
+ from aws_cdk import aws_datazone as datazone
9380
+
9381
+ environment_configuration_user_parameter_property = datazone.CfnProject.EnvironmentConfigurationUserParameterProperty(
9382
+ environment_configuration_name="environmentConfigurationName",
9383
+ environment_id="environmentId",
9384
+ environment_parameters=[datazone.CfnProject.EnvironmentParameterProperty(
9385
+ name="name",
9386
+ value="value"
9387
+ )]
9388
+ )
9389
+ '''
9390
+ if __debug__:
9391
+ type_hints = typing.get_type_hints(_typecheckingstub__2e38660ae766630ccadf35e49b4f78a771668296fc64a72a9c1e9b3d3b1a16a1)
9392
+ check_type(argname="argument environment_configuration_name", value=environment_configuration_name, expected_type=type_hints["environment_configuration_name"])
9393
+ check_type(argname="argument environment_id", value=environment_id, expected_type=type_hints["environment_id"])
9394
+ check_type(argname="argument environment_parameters", value=environment_parameters, expected_type=type_hints["environment_parameters"])
9395
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
9396
+ if environment_configuration_name is not None:
9397
+ self._values["environment_configuration_name"] = environment_configuration_name
9398
+ if environment_id is not None:
9399
+ self._values["environment_id"] = environment_id
9400
+ if environment_parameters is not None:
9401
+ self._values["environment_parameters"] = environment_parameters
9402
+
9403
+ @builtins.property
9404
+ def environment_configuration_name(self) -> typing.Optional[builtins.str]:
9405
+ '''
9406
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html#cfn-datazone-project-environmentconfigurationuserparameter-environmentconfigurationname
9407
+ '''
9408
+ result = self._values.get("environment_configuration_name")
9409
+ return typing.cast(typing.Optional[builtins.str], result)
9410
+
9411
+ @builtins.property
9412
+ def environment_id(self) -> typing.Optional[builtins.str]:
9413
+ '''
9414
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html#cfn-datazone-project-environmentconfigurationuserparameter-environmentid
9415
+ '''
9416
+ result = self._values.get("environment_id")
9417
+ return typing.cast(typing.Optional[builtins.str], result)
9418
+
9419
+ @builtins.property
9420
+ def environment_parameters(
9421
+ self,
9422
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProject.EnvironmentParameterProperty"]]]]:
9423
+ '''
9424
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html#cfn-datazone-project-environmentconfigurationuserparameter-environmentparameters
9425
+ '''
9426
+ result = self._values.get("environment_parameters")
9427
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnProject.EnvironmentParameterProperty"]]]], result)
9428
+
9429
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
9430
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
9431
+
9432
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
9433
+ return not (rhs == self)
9434
+
9435
+ def __repr__(self) -> str:
9436
+ return "EnvironmentConfigurationUserParameterProperty(%s)" % ", ".join(
9437
+ k + "=" + repr(v) for k, v in self._values.items()
9438
+ )
9439
+
9440
+ @jsii.data_type(
9441
+ jsii_type="aws-cdk-lib.aws_datazone.CfnProject.EnvironmentParameterProperty",
9442
+ jsii_struct_bases=[],
9443
+ name_mapping={"name": "name", "value": "value"},
9444
+ )
9445
+ class EnvironmentParameterProperty:
9446
+ def __init__(
9447
+ self,
9448
+ *,
9449
+ name: typing.Optional[builtins.str] = None,
9450
+ value: typing.Optional[builtins.str] = None,
9451
+ ) -> None:
9452
+ '''
9453
+ :param name:
9454
+ :param value:
9455
+
9456
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentparameter.html
9457
+ :exampleMetadata: fixture=_generated
9458
+
9459
+ Example::
9460
+
9461
+ # The code below shows an example of how to instantiate this type.
9462
+ # The values are placeholders you should change.
9463
+ from aws_cdk import aws_datazone as datazone
9464
+
9465
+ environment_parameter_property = datazone.CfnProject.EnvironmentParameterProperty(
9466
+ name="name",
9467
+ value="value"
9468
+ )
9469
+ '''
9470
+ if __debug__:
9471
+ type_hints = typing.get_type_hints(_typecheckingstub__4bfbfca939a617b6012dc8847e17b3567d673ec789228318c5d1c397165a7b9e)
9472
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
9473
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9474
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
9475
+ if name is not None:
9476
+ self._values["name"] = name
9477
+ if value is not None:
9478
+ self._values["value"] = value
9479
+
9480
+ @builtins.property
9481
+ def name(self) -> typing.Optional[builtins.str]:
9482
+ '''
9483
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentparameter.html#cfn-datazone-project-environmentparameter-name
9484
+ '''
9485
+ result = self._values.get("name")
9486
+ return typing.cast(typing.Optional[builtins.str], result)
9487
+
9488
+ @builtins.property
9489
+ def value(self) -> typing.Optional[builtins.str]:
9490
+ '''
9491
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentparameter.html#cfn-datazone-project-environmentparameter-value
9492
+ '''
9493
+ result = self._values.get("value")
9494
+ return typing.cast(typing.Optional[builtins.str], result)
9495
+
9496
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
9497
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
9498
+
9499
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
9500
+ return not (rhs == self)
9501
+
9502
+ def __repr__(self) -> str:
9503
+ return "EnvironmentParameterProperty(%s)" % ", ".join(
9504
+ k + "=" + repr(v) for k, v in self._values.items()
9505
+ )
9506
+
9049
9507
 
9050
9508
  @jsii.implements(_IInspectable_c2943556)
9051
9509
  class CfnProjectMembership(
@@ -9396,7 +9854,11 @@ class CfnProjectMembershipProps:
9396
9854
  "domain_identifier": "domainIdentifier",
9397
9855
  "name": "name",
9398
9856
  "description": "description",
9857
+ "domain_unit_id": "domainUnitId",
9399
9858
  "glossary_terms": "glossaryTerms",
9859
+ "project_profile_id": "projectProfileId",
9860
+ "project_profile_version": "projectProfileVersion",
9861
+ "user_parameters": "userParameters",
9400
9862
  },
9401
9863
  )
9402
9864
  class CfnProjectProps:
@@ -9406,14 +9868,22 @@ class CfnProjectProps:
9406
9868
  domain_identifier: builtins.str,
9407
9869
  name: builtins.str,
9408
9870
  description: typing.Optional[builtins.str] = None,
9871
+ domain_unit_id: typing.Optional[builtins.str] = None,
9409
9872
  glossary_terms: typing.Optional[typing.Sequence[builtins.str]] = None,
9873
+ project_profile_id: typing.Optional[builtins.str] = None,
9874
+ project_profile_version: typing.Optional[builtins.str] = None,
9875
+ user_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProject.EnvironmentConfigurationUserParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
9410
9876
  ) -> None:
9411
9877
  '''Properties for defining a ``CfnProject``.
9412
9878
 
9413
9879
  :param domain_identifier: The identifier of a Amazon DataZone domain where the project exists.
9414
9880
  :param name: The name of a project.
9415
9881
  :param description: The description of a project.
9882
+ :param domain_unit_id: The ID of the domain unit.
9416
9883
  :param glossary_terms: The glossary terms that can be used in this Amazon DataZone project.
9884
+ :param project_profile_id: The project profile ID.
9885
+ :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.
9886
+ :param user_parameters: The user parameters of the project.
9417
9887
 
9418
9888
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html
9419
9889
  :exampleMetadata: fixture=_generated
@@ -9430,7 +9900,18 @@ class CfnProjectProps:
9430
9900
 
9431
9901
  # the properties below are optional
9432
9902
  description="description",
9433
- glossary_terms=["glossaryTerms"]
9903
+ domain_unit_id="domainUnitId",
9904
+ glossary_terms=["glossaryTerms"],
9905
+ project_profile_id="projectProfileId",
9906
+ project_profile_version="projectProfileVersion",
9907
+ user_parameters=[datazone.CfnProject.EnvironmentConfigurationUserParameterProperty(
9908
+ environment_configuration_name="environmentConfigurationName",
9909
+ environment_id="environmentId",
9910
+ environment_parameters=[datazone.CfnProject.EnvironmentParameterProperty(
9911
+ name="name",
9912
+ value="value"
9913
+ )]
9914
+ )]
9434
9915
  )
9435
9916
  '''
9436
9917
  if __debug__:
@@ -9438,15 +9919,27 @@ class CfnProjectProps:
9438
9919
  check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
9439
9920
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
9440
9921
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
9922
+ check_type(argname="argument domain_unit_id", value=domain_unit_id, expected_type=type_hints["domain_unit_id"])
9441
9923
  check_type(argname="argument glossary_terms", value=glossary_terms, expected_type=type_hints["glossary_terms"])
9924
+ check_type(argname="argument project_profile_id", value=project_profile_id, expected_type=type_hints["project_profile_id"])
9925
+ check_type(argname="argument project_profile_version", value=project_profile_version, expected_type=type_hints["project_profile_version"])
9926
+ check_type(argname="argument user_parameters", value=user_parameters, expected_type=type_hints["user_parameters"])
9442
9927
  self._values: typing.Dict[builtins.str, typing.Any] = {
9443
9928
  "domain_identifier": domain_identifier,
9444
9929
  "name": name,
9445
9930
  }
9446
9931
  if description is not None:
9447
9932
  self._values["description"] = description
9933
+ if domain_unit_id is not None:
9934
+ self._values["domain_unit_id"] = domain_unit_id
9448
9935
  if glossary_terms is not None:
9449
9936
  self._values["glossary_terms"] = glossary_terms
9937
+ if project_profile_id is not None:
9938
+ self._values["project_profile_id"] = project_profile_id
9939
+ if project_profile_version is not None:
9940
+ self._values["project_profile_version"] = project_profile_version
9941
+ if user_parameters is not None:
9942
+ self._values["user_parameters"] = user_parameters
9450
9943
 
9451
9944
  @builtins.property
9452
9945
  def domain_identifier(self) -> builtins.str:
@@ -9477,6 +9970,15 @@ class CfnProjectProps:
9477
9970
  result = self._values.get("description")
9478
9971
  return typing.cast(typing.Optional[builtins.str], result)
9479
9972
 
9973
+ @builtins.property
9974
+ def domain_unit_id(self) -> typing.Optional[builtins.str]:
9975
+ '''The ID of the domain unit.
9976
+
9977
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-domainunitid
9978
+ '''
9979
+ result = self._values.get("domain_unit_id")
9980
+ return typing.cast(typing.Optional[builtins.str], result)
9981
+
9480
9982
  @builtins.property
9481
9983
  def glossary_terms(self) -> typing.Optional[typing.List[builtins.str]]:
9482
9984
  '''The glossary terms that can be used in this Amazon DataZone project.
@@ -9486,6 +9988,37 @@ class CfnProjectProps:
9486
9988
  result = self._values.get("glossary_terms")
9487
9989
  return typing.cast(typing.Optional[typing.List[builtins.str]], result)
9488
9990
 
9991
+ @builtins.property
9992
+ def project_profile_id(self) -> typing.Optional[builtins.str]:
9993
+ '''The project profile ID.
9994
+
9995
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-projectprofileid
9996
+ '''
9997
+ result = self._values.get("project_profile_id")
9998
+ return typing.cast(typing.Optional[builtins.str], result)
9999
+
10000
+ @builtins.property
10001
+ def project_profile_version(self) -> typing.Optional[builtins.str]:
10002
+ '''The project profile version to which the project should be updated.
10003
+
10004
+ You can only specify the following string for this parameter: latest.
10005
+
10006
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-projectprofileversion
10007
+ '''
10008
+ result = self._values.get("project_profile_version")
10009
+ return typing.cast(typing.Optional[builtins.str], result)
10010
+
10011
+ @builtins.property
10012
+ def user_parameters(
10013
+ self,
10014
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProject.EnvironmentConfigurationUserParameterProperty]]]]:
10015
+ '''The user parameters of the project.
10016
+
10017
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-userparameters
10018
+ '''
10019
+ result = self._values.get("user_parameters")
10020
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProject.EnvironmentConfigurationUserParameterProperty]]]], result)
10021
+
9489
10022
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
9490
10023
  return isinstance(rhs, self.__class__) and rhs._values == self._values
9491
10024
 
@@ -11492,7 +12025,9 @@ def _typecheckingstub__48d8677ae22ff2da132402ace39f998c6b914f7464ce38abe9373fdbc
11492
12025
  domain_identifier: builtins.str,
11493
12026
  enabled_regions: typing.Sequence[builtins.str],
11494
12027
  environment_blueprint_identifier: builtins.str,
12028
+ environment_role_permission_boundary: typing.Optional[builtins.str] = None,
11495
12029
  manage_access_role_arn: typing.Optional[builtins.str] = None,
12030
+ provisioning_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
11496
12031
  provisioning_role_arn: typing.Optional[builtins.str] = None,
11497
12032
  regional_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEnvironmentBlueprintConfiguration.RegionalParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
11498
12033
  ) -> None:
@@ -11529,12 +12064,24 @@ def _typecheckingstub__db2bf9c4c7f25403fe2aa03be854b8b8b1f530f8d53a317f87b2fb947
11529
12064
  """Type checking stubs"""
11530
12065
  pass
11531
12066
 
12067
+ def _typecheckingstub__0142557047b6391f0c0d7425b73085935e7a1d5e07139d87dcb9c9ab709bd4ac(
12068
+ value: typing.Optional[builtins.str],
12069
+ ) -> None:
12070
+ """Type checking stubs"""
12071
+ pass
12072
+
11532
12073
  def _typecheckingstub__13a80be3403ea5113203d40c0843c4e4965600487d58b5f1e83bf1b8a9fc3d11(
11533
12074
  value: typing.Optional[builtins.str],
11534
12075
  ) -> None:
11535
12076
  """Type checking stubs"""
11536
12077
  pass
11537
12078
 
12079
+ def _typecheckingstub__f945458658c5114bd92815174ffa8cabc189cbb27ef04cd8ca8a0ca6b933ad77(
12080
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty]]]],
12081
+ ) -> None:
12082
+ """Type checking stubs"""
12083
+ pass
12084
+
11538
12085
  def _typecheckingstub__09c1e18144766c7e8d72f080dbe9de88dc085cfbdaa47a10b50cf7e235be8d65(
11539
12086
  value: typing.Optional[builtins.str],
11540
12087
  ) -> None:
@@ -11547,6 +12094,21 @@ def _typecheckingstub__93fe5a214b768cb7201e2f47a6073bdec0303c4cda4d1d0b739b124ba
11547
12094
  """Type checking stubs"""
11548
12095
  pass
11549
12096
 
12097
+ def _typecheckingstub__5b34e7436c5711c0e3c03f2d39f197fd5268605136341c021dfdb2f9be036a01(
12098
+ *,
12099
+ location_registration_exclude_s3_locations: typing.Optional[typing.Sequence[builtins.str]] = None,
12100
+ location_registration_role: typing.Optional[builtins.str] = None,
12101
+ ) -> None:
12102
+ """Type checking stubs"""
12103
+ pass
12104
+
12105
+ def _typecheckingstub__29b5e41d02462ac9818fbf0e54d1556527c5ab2ab685686237dee244c941e9bd(
12106
+ *,
12107
+ lake_formation_configuration: typing.Union[_IResolvable_da3f097b, typing.Union[CfnEnvironmentBlueprintConfiguration.LakeFormationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]],
12108
+ ) -> None:
12109
+ """Type checking stubs"""
12110
+ pass
12111
+
11550
12112
  def _typecheckingstub__563b6d6aa110d6b77fcca8e42c3020852fa0c12036e1ba7f6ee62b2ce30826ff(
11551
12113
  *,
11552
12114
  parameters: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
@@ -11560,7 +12122,9 @@ def _typecheckingstub__ca96f6fc24dc164f6fafb08d94645f48f6b4fc5c0a2ad8a3b95e17093
11560
12122
  domain_identifier: builtins.str,
11561
12123
  enabled_regions: typing.Sequence[builtins.str],
11562
12124
  environment_blueprint_identifier: builtins.str,
12125
+ environment_role_permission_boundary: typing.Optional[builtins.str] = None,
11563
12126
  manage_access_role_arn: typing.Optional[builtins.str] = None,
12127
+ provisioning_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEnvironmentBlueprintConfiguration.ProvisioningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
11564
12128
  provisioning_role_arn: typing.Optional[builtins.str] = None,
11565
12129
  regional_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEnvironmentBlueprintConfiguration.RegionalParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
11566
12130
  ) -> None:
@@ -11818,7 +12382,11 @@ def _typecheckingstub__2dd190e348e5421f499a11e44b2fb0c69295587e5e7717b13a56786a8
11818
12382
  domain_identifier: builtins.str,
11819
12383
  name: builtins.str,
11820
12384
  description: typing.Optional[builtins.str] = None,
12385
+ domain_unit_id: typing.Optional[builtins.str] = None,
11821
12386
  glossary_terms: typing.Optional[typing.Sequence[builtins.str]] = None,
12387
+ project_profile_id: typing.Optional[builtins.str] = None,
12388
+ project_profile_version: typing.Optional[builtins.str] = None,
12389
+ user_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProject.EnvironmentConfigurationUserParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
11822
12390
  ) -> None:
11823
12391
  """Type checking stubs"""
11824
12392
  pass
@@ -11853,12 +12421,53 @@ def _typecheckingstub__dbb0277c9bfd29282afdae45a284966770345575b2854ec5cd9e6c04d
11853
12421
  """Type checking stubs"""
11854
12422
  pass
11855
12423
 
12424
+ def _typecheckingstub__38159bc2eeb309ee419b2f700c1738155e88fd699cb77897bb1441e19caa9250(
12425
+ value: typing.Optional[builtins.str],
12426
+ ) -> None:
12427
+ """Type checking stubs"""
12428
+ pass
12429
+
11856
12430
  def _typecheckingstub__ed99a8f1a094dd4883e961330ac91acc714a4a5fd200b2d53a52d4113d5a34f8(
11857
12431
  value: typing.Optional[typing.List[builtins.str]],
11858
12432
  ) -> None:
11859
12433
  """Type checking stubs"""
11860
12434
  pass
11861
12435
 
12436
+ def _typecheckingstub__cd4329ffc5180ec3c489a9b9628b37fda4e7e56daeff4465877926e7905d64d8(
12437
+ value: typing.Optional[builtins.str],
12438
+ ) -> None:
12439
+ """Type checking stubs"""
12440
+ pass
12441
+
12442
+ def _typecheckingstub__5fea851298bf6dff2224e18bba1dcf8117578fd86b764925c8087d78e2917049(
12443
+ value: typing.Optional[builtins.str],
12444
+ ) -> None:
12445
+ """Type checking stubs"""
12446
+ pass
12447
+
12448
+ def _typecheckingstub__3a8a1e223cb296d2e10e4a3c700e7f0c868d2c481c6f8c40ddf1c6a06e86a604(
12449
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnProject.EnvironmentConfigurationUserParameterProperty]]]],
12450
+ ) -> None:
12451
+ """Type checking stubs"""
12452
+ pass
12453
+
12454
+ def _typecheckingstub__2e38660ae766630ccadf35e49b4f78a771668296fc64a72a9c1e9b3d3b1a16a1(
12455
+ *,
12456
+ environment_configuration_name: typing.Optional[builtins.str] = None,
12457
+ environment_id: typing.Optional[builtins.str] = None,
12458
+ environment_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProject.EnvironmentParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
12459
+ ) -> None:
12460
+ """Type checking stubs"""
12461
+ pass
12462
+
12463
+ def _typecheckingstub__4bfbfca939a617b6012dc8847e17b3567d673ec789228318c5d1c397165a7b9e(
12464
+ *,
12465
+ name: typing.Optional[builtins.str] = None,
12466
+ value: typing.Optional[builtins.str] = None,
12467
+ ) -> None:
12468
+ """Type checking stubs"""
12469
+ pass
12470
+
11862
12471
  def _typecheckingstub__227cc3d5649ee98fd5579f9e1870652d6de5250e0390e91fec524565dc07c0b9(
11863
12472
  scope: _constructs_77d1e7e8.Construct,
11864
12473
  id: builtins.str,
@@ -11930,7 +12539,11 @@ def _typecheckingstub__d519699f8d5d172880216006cab9e8c1595fc99339cf485d2be1f6c37
11930
12539
  domain_identifier: builtins.str,
11931
12540
  name: builtins.str,
11932
12541
  description: typing.Optional[builtins.str] = None,
12542
+ domain_unit_id: typing.Optional[builtins.str] = None,
11933
12543
  glossary_terms: typing.Optional[typing.Sequence[builtins.str]] = None,
12544
+ project_profile_id: typing.Optional[builtins.str] = None,
12545
+ project_profile_version: typing.Optional[builtins.str] = None,
12546
+ user_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnProject.EnvironmentConfigurationUserParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
11934
12547
  ) -> None:
11935
12548
  """Type checking stubs"""
11936
12549
  pass