aws-cdk-lib 2.145.0__py3-none-any.whl → 2.147.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 (71) hide show
  1. aws_cdk/__init__.py +12 -11
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.145.0.jsii.tgz → aws-cdk-lib@2.147.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +32 -12
  5. aws_cdk/aws_apigatewayv2/__init__.py +48 -2
  6. aws_cdk/aws_apigatewayv2_integrations/__init__.py +142 -4
  7. aws_cdk/aws_appconfig/__init__.py +8 -4
  8. aws_cdk/aws_applicationsignals/__init__.py +1766 -0
  9. aws_cdk/aws_appsync/__init__.py +62 -0
  10. aws_cdk/aws_auditmanager/__init__.py +5 -1
  11. aws_cdk/aws_autoscaling/__init__.py +457 -56
  12. aws_cdk/aws_batch/__init__.py +215 -0
  13. aws_cdk/aws_bedrock/__init__.py +272 -103
  14. aws_cdk/aws_cloudformation/__init__.py +5 -11
  15. aws_cdk/aws_cloudfront/__init__.py +10 -3
  16. aws_cdk/aws_cloudtrail/__init__.py +56 -2
  17. aws_cdk/aws_codebuild/__init__.py +85 -32
  18. aws_cdk/aws_codepipeline/__init__.py +10 -5
  19. aws_cdk/aws_connect/__init__.py +86 -0
  20. aws_cdk/aws_datazone/__init__.py +80 -68
  21. aws_cdk/aws_deadline/__init__.py +603 -17
  22. aws_cdk/aws_ec2/__init__.py +237 -112
  23. aws_cdk/aws_ecs/__init__.py +123 -12
  24. aws_cdk/aws_eks/__init__.py +1335 -50
  25. aws_cdk/aws_elasticloadbalancingv2/__init__.py +11 -5
  26. aws_cdk/aws_emrserverless/__init__.py +5 -5
  27. aws_cdk/aws_events/__init__.py +36 -16
  28. aws_cdk/aws_fsx/__init__.py +126 -21
  29. aws_cdk/aws_globalaccelerator/__init__.py +2 -1
  30. aws_cdk/aws_globalaccelerator_endpoints/__init__.py +35 -4
  31. aws_cdk/aws_glue/__init__.py +26 -0
  32. aws_cdk/aws_grafana/__init__.py +4 -4
  33. aws_cdk/aws_groundstation/__init__.py +55 -35
  34. aws_cdk/aws_guardduty/__init__.py +826 -0
  35. aws_cdk/aws_iam/__init__.py +13 -8
  36. aws_cdk/aws_iot/__init__.py +3 -3
  37. aws_cdk/aws_lambda/__init__.py +7 -5
  38. aws_cdk/aws_lightsail/__init__.py +1 -1
  39. aws_cdk/aws_location/__init__.py +10 -11
  40. aws_cdk/aws_mediapackagev2/__init__.py +38 -20
  41. aws_cdk/aws_mediatailor/__init__.py +2 -2
  42. aws_cdk/aws_msk/__init__.py +4 -4
  43. aws_cdk/aws_mwaa/__init__.py +16 -8
  44. aws_cdk/aws_nimblestudio/__init__.py +9 -9
  45. aws_cdk/aws_opensearchservice/__init__.py +11 -4
  46. aws_cdk/aws_opsworks/__init__.py +3 -3
  47. aws_cdk/aws_osis/__init__.py +33 -4
  48. aws_cdk/aws_pipes/__init__.py +691 -0
  49. aws_cdk/aws_quicksight/__init__.py +23 -21
  50. aws_cdk/aws_rds/__init__.py +55 -11
  51. aws_cdk/aws_refactorspaces/__init__.py +3 -3
  52. aws_cdk/aws_rolesanywhere/__init__.py +206 -3
  53. aws_cdk/aws_sagemaker/__init__.py +5 -2
  54. aws_cdk/aws_securityhub/__init__.py +163 -78
  55. aws_cdk/aws_securitylake/__init__.py +7 -5
  56. aws_cdk/aws_ses/__init__.py +117 -0
  57. aws_cdk/aws_simspaceweaver/__init__.py +2 -2
  58. aws_cdk/aws_sns/__init__.py +67 -13
  59. aws_cdk/aws_sqs/__init__.py +3 -3
  60. aws_cdk/aws_stepfunctions/__init__.py +51 -28
  61. aws_cdk/aws_stepfunctions_tasks/__init__.py +59 -5
  62. aws_cdk/aws_transfer/__init__.py +8 -2
  63. aws_cdk/aws_wafv2/__init__.py +10 -10
  64. aws_cdk/aws_workspacesweb/__init__.py +8 -8
  65. aws_cdk/region_info/__init__.py +6 -0
  66. {aws_cdk_lib-2.145.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/METADATA +2 -2
  67. {aws_cdk_lib-2.145.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/NOTICE +0 -35
  68. {aws_cdk_lib-2.145.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/RECORD +71 -70
  69. {aws_cdk_lib-2.145.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/LICENSE +0 -0
  70. {aws_cdk_lib-2.145.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/WHEEL +0 -0
  71. {aws_cdk_lib-2.145.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/top_level.txt +0 -0
@@ -3833,9 +3833,7 @@ class CfnGroupProfile(
3833
3833
  metaclass=jsii.JSIIMeta,
3834
3834
  jsii_type="aws-cdk-lib.aws_datazone.CfnGroupProfile",
3835
3835
  ):
3836
- '''Group profiles represent groups of Amazon DataZone users.
3837
-
3838
- Groups can be manually created, or mapped to Active Directory groups of enterprise customers. In Amazon DataZone, groups serve two purposes. First, a group can map to a team of users in the organizational chart, and thus reduce the administrative work of a Amazon DataZone project owner when there are new employees joining or leaving a team. Second, corporate administrators use Active Directory groups to manage and update user statuses and so Amazon DataZone domain administrators can use these group memberships to implement Amazon DataZone domain policies.
3836
+ '''The details of a group profile in Amazon DataZone.
3839
3837
 
3840
3838
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html
3841
3839
  :cloudformationResource: AWS::DataZone::GroupProfile
@@ -3868,9 +3866,9 @@ class CfnGroupProfile(
3868
3866
  '''
3869
3867
  :param scope: Scope in which this resource is defined.
3870
3868
  :param id: Construct identifier for this resource (unique in its scope).
3871
- :param domain_identifier: The identifier of the Amazon DataZone domain in which the group profile would be created.
3872
- :param group_identifier: The ID of the group.
3873
- :param status: The status of the group profile.
3869
+ :param domain_identifier: The identifier of the Amazon DataZone domain in which a group profile exists.
3870
+ :param group_identifier: The ID of the group of a project member.
3871
+ :param status: The status of a group profile.
3874
3872
  '''
3875
3873
  if __debug__:
3876
3874
  type_hints = typing.get_type_hints(_typecheckingstub__6bccafb3ac5ccb0c73cc0aaea6cf365a78e841d8d731ffbfa84165d7f8100f7a)
@@ -3917,7 +3915,7 @@ class CfnGroupProfile(
3917
3915
  @builtins.property
3918
3916
  @jsii.member(jsii_name="attrDomainId")
3919
3917
  def attr_domain_id(self) -> builtins.str:
3920
- '''The identifier of the Amazon DataZone domain in which the group profile is created.
3918
+ '''The identifier of the Amazon DataZone domain in which a group profile exists.
3921
3919
 
3922
3920
  :cloudformationAttribute: DomainId
3923
3921
  '''
@@ -3926,7 +3924,7 @@ class CfnGroupProfile(
3926
3924
  @builtins.property
3927
3925
  @jsii.member(jsii_name="attrGroupName")
3928
3926
  def attr_group_name(self) -> builtins.str:
3929
- '''The group-name of the Group Profile.
3927
+ '''The name of a group profile.
3930
3928
 
3931
3929
  :cloudformationAttribute: GroupName
3932
3930
  '''
@@ -3935,7 +3933,7 @@ class CfnGroupProfile(
3935
3933
  @builtins.property
3936
3934
  @jsii.member(jsii_name="attrId")
3937
3935
  def attr_id(self) -> builtins.str:
3938
- '''The ID of the Amazon DataZone group profile.
3936
+ '''The ID of a group profile.
3939
3937
 
3940
3938
  :cloudformationAttribute: Id
3941
3939
  '''
@@ -3949,7 +3947,7 @@ class CfnGroupProfile(
3949
3947
  @builtins.property
3950
3948
  @jsii.member(jsii_name="domainIdentifier")
3951
3949
  def domain_identifier(self) -> builtins.str:
3952
- '''The identifier of the Amazon DataZone domain in which the group profile would be created.'''
3950
+ '''The identifier of the Amazon DataZone domain in which a group profile exists.'''
3953
3951
  return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
3954
3952
 
3955
3953
  @domain_identifier.setter
@@ -3962,7 +3960,7 @@ class CfnGroupProfile(
3962
3960
  @builtins.property
3963
3961
  @jsii.member(jsii_name="groupIdentifier")
3964
3962
  def group_identifier(self) -> builtins.str:
3965
- '''The ID of the group.'''
3963
+ '''The ID of the group of a project member.'''
3966
3964
  return typing.cast(builtins.str, jsii.get(self, "groupIdentifier"))
3967
3965
 
3968
3966
  @group_identifier.setter
@@ -3975,7 +3973,7 @@ class CfnGroupProfile(
3975
3973
  @builtins.property
3976
3974
  @jsii.member(jsii_name="status")
3977
3975
  def status(self) -> typing.Optional[builtins.str]:
3978
- '''The status of the group profile.'''
3976
+ '''The status of a group profile.'''
3979
3977
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "status"))
3980
3978
 
3981
3979
  @status.setter
@@ -4005,9 +4003,9 @@ class CfnGroupProfileProps:
4005
4003
  ) -> None:
4006
4004
  '''Properties for defining a ``CfnGroupProfile``.
4007
4005
 
4008
- :param domain_identifier: The identifier of the Amazon DataZone domain in which the group profile would be created.
4009
- :param group_identifier: The ID of the group.
4010
- :param status: The status of the group profile.
4006
+ :param domain_identifier: The identifier of the Amazon DataZone domain in which a group profile exists.
4007
+ :param group_identifier: The ID of the group of a project member.
4008
+ :param status: The status of a group profile.
4011
4009
 
4012
4010
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html
4013
4011
  :exampleMetadata: fixture=_generated
@@ -4040,7 +4038,7 @@ class CfnGroupProfileProps:
4040
4038
 
4041
4039
  @builtins.property
4042
4040
  def domain_identifier(self) -> builtins.str:
4043
- '''The identifier of the Amazon DataZone domain in which the group profile would be created.
4041
+ '''The identifier of the Amazon DataZone domain in which a group profile exists.
4044
4042
 
4045
4043
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-domainidentifier
4046
4044
  '''
@@ -4050,7 +4048,7 @@ class CfnGroupProfileProps:
4050
4048
 
4051
4049
  @builtins.property
4052
4050
  def group_identifier(self) -> builtins.str:
4053
- '''The ID of the group.
4051
+ '''The ID of the group of a project member.
4054
4052
 
4055
4053
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-groupidentifier
4056
4054
  '''
@@ -4060,7 +4058,7 @@ class CfnGroupProfileProps:
4060
4058
 
4061
4059
  @builtins.property
4062
4060
  def status(self) -> typing.Optional[builtins.str]:
4063
- '''The status of the group profile.
4061
+ '''The status of a group profile.
4064
4062
 
4065
4063
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-status
4066
4064
  '''
@@ -4279,7 +4277,9 @@ class CfnProjectMembership(
4279
4277
  metaclass=jsii.JSIIMeta,
4280
4278
  jsii_type="aws-cdk-lib.aws_datazone.CfnProjectMembership",
4281
4279
  ):
4282
- '''Definition of AWS::DataZone::ProjectMembership Resource Type.
4280
+ '''The ``AWS::DataZone::ProjectMembership`` resource adds a member to an Amazon DataZone project.
4281
+
4282
+ Project members consume assets from the Amazon DataZone catalog and produce new assets using one or more analytical workflows.
4283
4283
 
4284
4284
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html
4285
4285
  :cloudformationResource: AWS::DataZone::ProjectMembership
@@ -4315,10 +4315,10 @@ class CfnProjectMembership(
4315
4315
  '''
4316
4316
  :param scope: Scope in which this resource is defined.
4317
4317
  :param id: Construct identifier for this resource (unique in its scope).
4318
- :param designation:
4319
- :param domain_identifier:
4320
- :param member:
4321
- :param project_identifier:
4318
+ :param designation: The designated role of a project member.
4319
+ :param domain_identifier: The ID of the Amazon DataZone domain in which project membership is created.
4320
+ :param member: The details about a project member.
4321
+ :param project_identifier: The ID of the project for which this project membership was created.
4322
4322
  '''
4323
4323
  if __debug__:
4324
4324
  type_hints = typing.get_type_hints(_typecheckingstub__227cc3d5649ee98fd5579f9e1870652d6de5250e0390e91fec524565dc07c0b9)
@@ -4371,6 +4371,7 @@ class CfnProjectMembership(
4371
4371
  @builtins.property
4372
4372
  @jsii.member(jsii_name="designation")
4373
4373
  def designation(self) -> builtins.str:
4374
+ '''The designated role of a project member.'''
4374
4375
  return typing.cast(builtins.str, jsii.get(self, "designation"))
4375
4376
 
4376
4377
  @designation.setter
@@ -4383,6 +4384,7 @@ class CfnProjectMembership(
4383
4384
  @builtins.property
4384
4385
  @jsii.member(jsii_name="domainIdentifier")
4385
4386
  def domain_identifier(self) -> builtins.str:
4387
+ '''The ID of the Amazon DataZone domain in which project membership is created.'''
4386
4388
  return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
4387
4389
 
4388
4390
  @domain_identifier.setter
@@ -4397,6 +4399,7 @@ class CfnProjectMembership(
4397
4399
  def member(
4398
4400
  self,
4399
4401
  ) -> typing.Union[_IResolvable_da3f097b, "CfnProjectMembership.MemberProperty"]:
4402
+ '''The details about a project member.'''
4400
4403
  return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnProjectMembership.MemberProperty"], jsii.get(self, "member"))
4401
4404
 
4402
4405
  @member.setter
@@ -4412,6 +4415,7 @@ class CfnProjectMembership(
4412
4415
  @builtins.property
4413
4416
  @jsii.member(jsii_name="projectIdentifier")
4414
4417
  def project_identifier(self) -> builtins.str:
4418
+ '''The ID of the project for which this project membership was created.'''
4415
4419
  return typing.cast(builtins.str, jsii.get(self, "projectIdentifier"))
4416
4420
 
4417
4421
  @project_identifier.setter
@@ -4436,9 +4440,12 @@ class CfnProjectMembership(
4436
4440
  group_identifier: typing.Optional[builtins.str] = None,
4437
4441
  user_identifier: typing.Optional[builtins.str] = None,
4438
4442
  ) -> None:
4439
- '''
4440
- :param group_identifier:
4441
- :param user_identifier:
4443
+ '''The details about a project member.
4444
+
4445
+ Important - this data type is a UNION, so only one of the following members can be specified when used or returned.
4446
+
4447
+ :param group_identifier: The ID of the group of a project member.
4448
+ :param user_identifier: The user ID of a project member.
4442
4449
 
4443
4450
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-member.html
4444
4451
  :exampleMetadata: fixture=_generated
@@ -4466,7 +4473,8 @@ class CfnProjectMembership(
4466
4473
 
4467
4474
  @builtins.property
4468
4475
  def group_identifier(self) -> typing.Optional[builtins.str]:
4469
- '''
4476
+ '''The ID of the group of a project member.
4477
+
4470
4478
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-member.html#cfn-datazone-projectmembership-member-groupidentifier
4471
4479
  '''
4472
4480
  result = self._values.get("group_identifier")
@@ -4474,7 +4482,8 @@ class CfnProjectMembership(
4474
4482
 
4475
4483
  @builtins.property
4476
4484
  def user_identifier(self) -> typing.Optional[builtins.str]:
4477
- '''
4485
+ '''The user ID of a project member.
4486
+
4478
4487
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-member.html#cfn-datazone-projectmembership-member-useridentifier
4479
4488
  '''
4480
4489
  result = self._values.get("user_identifier")
@@ -4513,10 +4522,10 @@ class CfnProjectMembershipProps:
4513
4522
  ) -> None:
4514
4523
  '''Properties for defining a ``CfnProjectMembership``.
4515
4524
 
4516
- :param designation:
4517
- :param domain_identifier:
4518
- :param member:
4519
- :param project_identifier:
4525
+ :param designation: The designated role of a project member.
4526
+ :param domain_identifier: The ID of the Amazon DataZone domain in which project membership is created.
4527
+ :param member: The details about a project member.
4528
+ :param project_identifier: The ID of the project for which this project membership was created.
4520
4529
 
4521
4530
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html
4522
4531
  :exampleMetadata: fixture=_generated
@@ -4552,7 +4561,8 @@ class CfnProjectMembershipProps:
4552
4561
 
4553
4562
  @builtins.property
4554
4563
  def designation(self) -> builtins.str:
4555
- '''
4564
+ '''The designated role of a project member.
4565
+
4556
4566
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html#cfn-datazone-projectmembership-designation
4557
4567
  '''
4558
4568
  result = self._values.get("designation")
@@ -4561,7 +4571,8 @@ class CfnProjectMembershipProps:
4561
4571
 
4562
4572
  @builtins.property
4563
4573
  def domain_identifier(self) -> builtins.str:
4564
- '''
4574
+ '''The ID of the Amazon DataZone domain in which project membership is created.
4575
+
4565
4576
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html#cfn-datazone-projectmembership-domainidentifier
4566
4577
  '''
4567
4578
  result = self._values.get("domain_identifier")
@@ -4572,7 +4583,8 @@ class CfnProjectMembershipProps:
4572
4583
  def member(
4573
4584
  self,
4574
4585
  ) -> typing.Union[_IResolvable_da3f097b, CfnProjectMembership.MemberProperty]:
4575
- '''
4586
+ '''The details about a project member.
4587
+
4576
4588
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html#cfn-datazone-projectmembership-member
4577
4589
  '''
4578
4590
  result = self._values.get("member")
@@ -4581,7 +4593,8 @@ class CfnProjectMembershipProps:
4581
4593
 
4582
4594
  @builtins.property
4583
4595
  def project_identifier(self) -> builtins.str:
4584
- '''
4596
+ '''The ID of the project for which this project membership was created.
4597
+
4585
4598
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html#cfn-datazone-projectmembership-projectidentifier
4586
4599
  '''
4587
4600
  result = self._values.get("project_identifier")
@@ -5289,9 +5302,7 @@ class CfnUserProfile(
5289
5302
  metaclass=jsii.JSIIMeta,
5290
5303
  jsii_type="aws-cdk-lib.aws_datazone.CfnUserProfile",
5291
5304
  ):
5292
- '''A user profile represents Amazon DataZone users.
5293
-
5294
- Amazon DataZone supports both IAM roles and SSO identities to interact with the Amazon DataZone Management Console and the data portal for different purposes. Domain administrators use IAM roles to perform the initial administrative domain-related work in the Amazon DataZone Management Console, including creating new Amazon DataZone domains, configuring metadata form types, and implementing policies. Data workers use their SSO corporate identities via Identity Center to log into the Amazon DataZone Data Portal and access projects where they have memberships.
5305
+ '''The user type of the user for which the user profile is created.
5295
5306
 
5296
5307
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html
5297
5308
  :cloudformationResource: AWS::DataZone::UserProfile
@@ -5326,10 +5337,10 @@ class CfnUserProfile(
5326
5337
  '''
5327
5338
  :param scope: Scope in which this resource is defined.
5328
5339
  :param id: Construct identifier for this resource (unique in its scope).
5329
- :param domain_identifier: The identifier of the Amazon DataZone domain in which the user profile would be created.
5330
- :param user_identifier: The ID of the user.
5340
+ :param domain_identifier: The identifier of a Amazon DataZone domain in which a user profile exists.
5341
+ :param user_identifier: The identifier of the user for which the user profile is created.
5331
5342
  :param status: The status of the user profile.
5332
- :param user_type: The type of the user.
5343
+ :param user_type: The user type of the user for which the user profile is created.
5333
5344
  '''
5334
5345
  if __debug__:
5335
5346
  type_hints = typing.get_type_hints(_typecheckingstub__43948fd61004932aa31394de53e9c49e34aa425f3682404de5d5f6a249734d82)
@@ -5385,7 +5396,7 @@ class CfnUserProfile(
5385
5396
  @builtins.property
5386
5397
  @jsii.member(jsii_name="attrDomainId")
5387
5398
  def attr_domain_id(self) -> builtins.str:
5388
- '''The identifier of the Amazon DataZone domain in which the user profile is created.
5399
+ '''The identifier of a Amazon DataZone domain in which a user profile exists.
5389
5400
 
5390
5401
  :cloudformationAttribute: DomainId
5391
5402
  '''
@@ -5394,7 +5405,7 @@ class CfnUserProfile(
5394
5405
  @builtins.property
5395
5406
  @jsii.member(jsii_name="attrId")
5396
5407
  def attr_id(self) -> builtins.str:
5397
- '''The ID of the Amazon DataZone user profile.
5408
+ '''The ID of the user profile.
5398
5409
 
5399
5410
  :cloudformationAttribute: Id
5400
5411
  '''
@@ -5417,7 +5428,7 @@ class CfnUserProfile(
5417
5428
  @builtins.property
5418
5429
  @jsii.member(jsii_name="domainIdentifier")
5419
5430
  def domain_identifier(self) -> builtins.str:
5420
- '''The identifier of the Amazon DataZone domain in which the user profile would be created.'''
5431
+ '''The identifier of a Amazon DataZone domain in which a user profile exists.'''
5421
5432
  return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
5422
5433
 
5423
5434
  @domain_identifier.setter
@@ -5430,7 +5441,7 @@ class CfnUserProfile(
5430
5441
  @builtins.property
5431
5442
  @jsii.member(jsii_name="userIdentifier")
5432
5443
  def user_identifier(self) -> builtins.str:
5433
- '''The ID of the user.'''
5444
+ '''The identifier of the user for which the user profile is created.'''
5434
5445
  return typing.cast(builtins.str, jsii.get(self, "userIdentifier"))
5435
5446
 
5436
5447
  @user_identifier.setter
@@ -5456,7 +5467,7 @@ class CfnUserProfile(
5456
5467
  @builtins.property
5457
5468
  @jsii.member(jsii_name="userType")
5458
5469
  def user_type(self) -> typing.Optional[builtins.str]:
5459
- '''The type of the user.'''
5470
+ '''The user type of the user for which the user profile is created.'''
5460
5471
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "userType"))
5461
5472
 
5462
5473
  @user_type.setter
@@ -5473,9 +5484,9 @@ class CfnUserProfile(
5473
5484
  )
5474
5485
  class IamUserProfileDetailsProperty:
5475
5486
  def __init__(self, *, arn: typing.Optional[builtins.str] = None) -> None:
5476
- '''The details of the IAM User Profile.
5487
+ '''The details of an IAM user profile in Amazon DataZone.
5477
5488
 
5478
- :param arn: The ARN of the IAM User Profile.
5489
+ :param arn: The ARN of an IAM user profile in Amazon DataZone.
5479
5490
 
5480
5491
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-iamuserprofiledetails.html
5481
5492
  :exampleMetadata: fixture=_generated
@@ -5499,7 +5510,7 @@ class CfnUserProfile(
5499
5510
 
5500
5511
  @builtins.property
5501
5512
  def arn(self) -> typing.Optional[builtins.str]:
5502
- '''The ARN of the IAM User Profile.
5513
+ '''The ARN of an IAM user profile in Amazon DataZone.
5503
5514
 
5504
5515
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-iamuserprofiledetails.html#cfn-datazone-userprofile-iamuserprofiledetails-arn
5505
5516
  '''
@@ -5534,11 +5545,11 @@ class CfnUserProfile(
5534
5545
  last_name: typing.Optional[builtins.str] = None,
5535
5546
  username: typing.Optional[builtins.str] = None,
5536
5547
  ) -> None:
5537
- '''The details of the SSO User Profile.
5548
+ '''The single sign-on details of the user profile.
5538
5549
 
5539
- :param first_name: The First Name of the IAM User Profile.
5540
- :param last_name: The Last Name of the IAM User Profile.
5541
- :param username: The username of the SSO User Profile.
5550
+ :param first_name: The first name included in the single sign-on details of the user profile.
5551
+ :param last_name: The last name included in the single sign-on details of the user profile.
5552
+ :param username: The username included in the single sign-on details of the user profile.
5542
5553
 
5543
5554
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-ssouserprofiledetails.html
5544
5555
  :exampleMetadata: fixture=_generated
@@ -5570,7 +5581,7 @@ class CfnUserProfile(
5570
5581
 
5571
5582
  @builtins.property
5572
5583
  def first_name(self) -> typing.Optional[builtins.str]:
5573
- '''The First Name of the IAM User Profile.
5584
+ '''The first name included in the single sign-on details of the user profile.
5574
5585
 
5575
5586
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-ssouserprofiledetails.html#cfn-datazone-userprofile-ssouserprofiledetails-firstname
5576
5587
  '''
@@ -5579,7 +5590,7 @@ class CfnUserProfile(
5579
5590
 
5580
5591
  @builtins.property
5581
5592
  def last_name(self) -> typing.Optional[builtins.str]:
5582
- '''The Last Name of the IAM User Profile.
5593
+ '''The last name included in the single sign-on details of the user profile.
5583
5594
 
5584
5595
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-ssouserprofiledetails.html#cfn-datazone-userprofile-ssouserprofiledetails-lastname
5585
5596
  '''
@@ -5588,7 +5599,7 @@ class CfnUserProfile(
5588
5599
 
5589
5600
  @builtins.property
5590
5601
  def username(self) -> typing.Optional[builtins.str]:
5591
- '''The username of the SSO User Profile.
5602
+ '''The username included in the single sign-on details of the user profile.
5592
5603
 
5593
5604
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-ssouserprofiledetails.html#cfn-datazone-userprofile-ssouserprofiledetails-username
5594
5605
  '''
@@ -5618,9 +5629,10 @@ class CfnUserProfile(
5618
5629
  iam: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnUserProfile.IamUserProfileDetailsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5619
5630
  sso: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnUserProfile.SsoUserProfileDetailsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5620
5631
  ) -> None:
5621
- '''
5622
- :param iam: The details of the IAM User Profile.
5623
- :param sso: The details of the SSO User Profile.
5632
+ '''The details of the user profile in Amazon DataZone.
5633
+
5634
+ :param iam: The IAM details included in the user profile details.
5635
+ :param sso: The single sign-on details included in the user profile details.
5624
5636
 
5625
5637
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.html
5626
5638
  :exampleMetadata: fixture=_generated
@@ -5656,7 +5668,7 @@ class CfnUserProfile(
5656
5668
  def iam(
5657
5669
  self,
5658
5670
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUserProfile.IamUserProfileDetailsProperty"]]:
5659
- '''The details of the IAM User Profile.
5671
+ '''The IAM details included in the user profile details.
5660
5672
 
5661
5673
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.html#cfn-datazone-userprofile-userprofiledetails-iam
5662
5674
  '''
@@ -5667,7 +5679,7 @@ class CfnUserProfile(
5667
5679
  def sso(
5668
5680
  self,
5669
5681
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUserProfile.SsoUserProfileDetailsProperty"]]:
5670
- '''The details of the SSO User Profile.
5682
+ '''The single sign-on details included in the user profile details.
5671
5683
 
5672
5684
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.html#cfn-datazone-userprofile-userprofiledetails-sso
5673
5685
  '''
@@ -5707,10 +5719,10 @@ class CfnUserProfileProps:
5707
5719
  ) -> None:
5708
5720
  '''Properties for defining a ``CfnUserProfile``.
5709
5721
 
5710
- :param domain_identifier: The identifier of the Amazon DataZone domain in which the user profile would be created.
5711
- :param user_identifier: The ID of the user.
5722
+ :param domain_identifier: The identifier of a Amazon DataZone domain in which a user profile exists.
5723
+ :param user_identifier: The identifier of the user for which the user profile is created.
5712
5724
  :param status: The status of the user profile.
5713
- :param user_type: The type of the user.
5725
+ :param user_type: The user type of the user for which the user profile is created.
5714
5726
 
5715
5727
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html
5716
5728
  :exampleMetadata: fixture=_generated
@@ -5747,7 +5759,7 @@ class CfnUserProfileProps:
5747
5759
 
5748
5760
  @builtins.property
5749
5761
  def domain_identifier(self) -> builtins.str:
5750
- '''The identifier of the Amazon DataZone domain in which the user profile would be created.
5762
+ '''The identifier of a Amazon DataZone domain in which a user profile exists.
5751
5763
 
5752
5764
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html#cfn-datazone-userprofile-domainidentifier
5753
5765
  '''
@@ -5757,7 +5769,7 @@ class CfnUserProfileProps:
5757
5769
 
5758
5770
  @builtins.property
5759
5771
  def user_identifier(self) -> builtins.str:
5760
- '''The ID of the user.
5772
+ '''The identifier of the user for which the user profile is created.
5761
5773
 
5762
5774
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html#cfn-datazone-userprofile-useridentifier
5763
5775
  '''
@@ -5776,7 +5788,7 @@ class CfnUserProfileProps:
5776
5788
 
5777
5789
  @builtins.property
5778
5790
  def user_type(self) -> typing.Optional[builtins.str]:
5779
- '''The type of the user.
5791
+ '''The user type of the user for which the user profile is created.
5780
5792
 
5781
5793
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html#cfn-datazone-userprofile-usertype
5782
5794
  '''