aws-cdk-lib 2.142.1__py3-none-any.whl → 2.143.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.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.142.1.jsii.tgz → aws-cdk-lib@2.143.0.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +12 -5
- aws_cdk/aws_backup/__init__.py +3 -3
- aws_cdk/aws_batch/__init__.py +237 -0
- aws_cdk/aws_bedrock/__init__.py +700 -16
- aws_cdk/aws_budgets/__init__.py +282 -3
- aws_cdk/aws_cloudtrail/__init__.py +12 -2
- aws_cdk/aws_codebuild/__init__.py +44 -0
- aws_cdk/aws_codepipeline/__init__.py +91 -4
- aws_cdk/aws_cognito/__init__.py +75 -0
- aws_cdk/aws_datazone/__init__.py +1743 -448
- aws_cdk/aws_dynamodb/__init__.py +60 -25
- aws_cdk/aws_ec2/__init__.py +112 -39
- aws_cdk/aws_ecs/__init__.py +3 -3
- aws_cdk/aws_ecs_patterns/__init__.py +106 -0
- aws_cdk/aws_eks/__init__.py +13 -10
- aws_cdk/aws_elasticache/__init__.py +9 -0
- aws_cdk/aws_events/__init__.py +219 -14
- aws_cdk/aws_events_targets/__init__.py +140 -3
- aws_cdk/aws_fms/__init__.py +42 -43
- aws_cdk/aws_fsx/__init__.py +3 -3
- aws_cdk/aws_identitystore/__init__.py +11 -11
- aws_cdk/aws_lambda/__init__.py +45 -0
- aws_cdk/aws_lambda_nodejs/__init__.py +16 -6
- aws_cdk/aws_lightsail/__init__.py +9 -0
- aws_cdk/aws_location/__init__.py +8 -4
- aws_cdk/aws_mediaconnect/__init__.py +1789 -39
- aws_cdk/aws_mediatailor/__init__.py +21 -1
- aws_cdk/aws_mwaa/__init__.py +82 -0
- aws_cdk/aws_neptune/__init__.py +374 -0
- aws_cdk/aws_personalize/__init__.py +9 -3
- aws_cdk/aws_pipes/__init__.py +7 -7
- aws_cdk/aws_quicksight/__init__.py +684 -156
- aws_cdk/aws_rds/__init__.py +88 -24
- aws_cdk/aws_redshift/__init__.py +0 -46
- aws_cdk/aws_route53resolver/__init__.py +23 -0
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_sagemaker/__init__.py +185 -4
- aws_cdk/aws_securityhub/__init__.py +387 -1
- aws_cdk/aws_ssm/__init__.py +14 -6
- aws_cdk/aws_sso/__init__.py +1243 -34
- aws_cdk/cx_api/__init__.py +16 -0
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.0.dist-info}/RECORD +49 -49
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_datazone/__init__.py
CHANGED
|
@@ -3828,17 +3828,17 @@ class CfnEnvironmentProps:
|
|
|
3828
3828
|
|
|
3829
3829
|
|
|
3830
3830
|
@jsii.implements(_IInspectable_c2943556)
|
|
3831
|
-
class
|
|
3831
|
+
class CfnGroupProfile(
|
|
3832
3832
|
_CfnResource_9df397a6,
|
|
3833
3833
|
metaclass=jsii.JSIIMeta,
|
|
3834
|
-
jsii_type="aws-cdk-lib.aws_datazone.
|
|
3834
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnGroupProfile",
|
|
3835
3835
|
):
|
|
3836
|
-
'''
|
|
3836
|
+
'''Group profiles represent groups of Amazon DataZone users.
|
|
3837
3837
|
|
|
3838
|
-
|
|
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.
|
|
3839
3839
|
|
|
3840
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-
|
|
3841
|
-
:cloudformationResource: AWS::DataZone::
|
|
3840
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html
|
|
3841
|
+
:cloudformationResource: AWS::DataZone::GroupProfile
|
|
3842
3842
|
:exampleMetadata: fixture=_generated
|
|
3843
3843
|
|
|
3844
3844
|
Example::
|
|
@@ -3847,13 +3847,12 @@ class CfnProject(
|
|
|
3847
3847
|
# The values are placeholders you should change.
|
|
3848
3848
|
from aws_cdk import aws_datazone as datazone
|
|
3849
3849
|
|
|
3850
|
-
|
|
3850
|
+
cfn_group_profile = datazone.CfnGroupProfile(self, "MyCfnGroupProfile",
|
|
3851
3851
|
domain_identifier="domainIdentifier",
|
|
3852
|
-
|
|
3852
|
+
group_identifier="groupIdentifier",
|
|
3853
3853
|
|
|
3854
3854
|
# the properties below are optional
|
|
3855
|
-
|
|
3856
|
-
glossary_terms=["glossaryTerms"]
|
|
3855
|
+
status="status"
|
|
3857
3856
|
)
|
|
3858
3857
|
'''
|
|
3859
3858
|
|
|
@@ -3863,27 +3862,24 @@ class CfnProject(
|
|
|
3863
3862
|
id: builtins.str,
|
|
3864
3863
|
*,
|
|
3865
3864
|
domain_identifier: builtins.str,
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
glossary_terms: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
3865
|
+
group_identifier: builtins.str,
|
|
3866
|
+
status: typing.Optional[builtins.str] = None,
|
|
3869
3867
|
) -> None:
|
|
3870
3868
|
'''
|
|
3871
3869
|
:param scope: Scope in which this resource is defined.
|
|
3872
3870
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
3873
|
-
:param domain_identifier: The identifier of
|
|
3874
|
-
:param
|
|
3875
|
-
:param
|
|
3876
|
-
:param glossary_terms: The glossary terms that can be used in this Amazon DataZone project.
|
|
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.
|
|
3877
3874
|
'''
|
|
3878
3875
|
if __debug__:
|
|
3879
|
-
type_hints = typing.get_type_hints(
|
|
3876
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6bccafb3ac5ccb0c73cc0aaea6cf365a78e841d8d731ffbfa84165d7f8100f7a)
|
|
3880
3877
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
3881
3878
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
3882
|
-
props =
|
|
3879
|
+
props = CfnGroupProfileProps(
|
|
3883
3880
|
domain_identifier=domain_identifier,
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
glossary_terms=glossary_terms,
|
|
3881
|
+
group_identifier=group_identifier,
|
|
3882
|
+
status=status,
|
|
3887
3883
|
)
|
|
3888
3884
|
|
|
3889
3885
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
@@ -3895,7 +3891,7 @@ class CfnProject(
|
|
|
3895
3891
|
:param inspector: tree inspector to collect and process attributes.
|
|
3896
3892
|
'''
|
|
3897
3893
|
if __debug__:
|
|
3898
|
-
type_hints = typing.get_type_hints(
|
|
3894
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3064788268855f6623aaf3b52a7be17022b3d0c8d206428bb22e10d7bd9791de)
|
|
3899
3895
|
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
3900
3896
|
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
3901
3897
|
|
|
@@ -3908,7 +3904,7 @@ class CfnProject(
|
|
|
3908
3904
|
:param props: -
|
|
3909
3905
|
'''
|
|
3910
3906
|
if __debug__:
|
|
3911
|
-
type_hints = typing.get_type_hints(
|
|
3907
|
+
type_hints = typing.get_type_hints(_typecheckingstub__66e617beac92ae83db2859cea30504a6e86d11714b8584d4212fe2f5634055e4)
|
|
3912
3908
|
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
3913
3909
|
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
3914
3910
|
|
|
@@ -3918,50 +3914,32 @@ class CfnProject(
|
|
|
3918
3914
|
'''The CloudFormation resource type name for this resource class.'''
|
|
3919
3915
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
3920
3916
|
|
|
3921
|
-
@builtins.property
|
|
3922
|
-
@jsii.member(jsii_name="attrCreatedAt")
|
|
3923
|
-
def attr_created_at(self) -> builtins.str:
|
|
3924
|
-
'''The timestamp of when a project was created.
|
|
3925
|
-
|
|
3926
|
-
:cloudformationAttribute: CreatedAt
|
|
3927
|
-
'''
|
|
3928
|
-
return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
|
|
3929
|
-
|
|
3930
|
-
@builtins.property
|
|
3931
|
-
@jsii.member(jsii_name="attrCreatedBy")
|
|
3932
|
-
def attr_created_by(self) -> builtins.str:
|
|
3933
|
-
'''The Amazon DataZone user who created the project.
|
|
3934
|
-
|
|
3935
|
-
:cloudformationAttribute: CreatedBy
|
|
3936
|
-
'''
|
|
3937
|
-
return typing.cast(builtins.str, jsii.get(self, "attrCreatedBy"))
|
|
3938
|
-
|
|
3939
3917
|
@builtins.property
|
|
3940
3918
|
@jsii.member(jsii_name="attrDomainId")
|
|
3941
3919
|
def attr_domain_id(self) -> builtins.str:
|
|
3942
|
-
'''The identifier of
|
|
3920
|
+
'''The identifier of the Amazon DataZone domain in which the group profile is created.
|
|
3943
3921
|
|
|
3944
3922
|
:cloudformationAttribute: DomainId
|
|
3945
3923
|
'''
|
|
3946
3924
|
return typing.cast(builtins.str, jsii.get(self, "attrDomainId"))
|
|
3947
3925
|
|
|
3948
3926
|
@builtins.property
|
|
3949
|
-
@jsii.member(jsii_name="
|
|
3950
|
-
def
|
|
3951
|
-
'''The
|
|
3927
|
+
@jsii.member(jsii_name="attrGroupName")
|
|
3928
|
+
def attr_group_name(self) -> builtins.str:
|
|
3929
|
+
'''The group-name of the Group Profile.
|
|
3952
3930
|
|
|
3953
|
-
:cloudformationAttribute:
|
|
3931
|
+
:cloudformationAttribute: GroupName
|
|
3954
3932
|
'''
|
|
3955
|
-
return typing.cast(builtins.str, jsii.get(self, "
|
|
3933
|
+
return typing.cast(builtins.str, jsii.get(self, "attrGroupName"))
|
|
3956
3934
|
|
|
3957
3935
|
@builtins.property
|
|
3958
|
-
@jsii.member(jsii_name="
|
|
3959
|
-
def
|
|
3960
|
-
'''The
|
|
3936
|
+
@jsii.member(jsii_name="attrId")
|
|
3937
|
+
def attr_id(self) -> builtins.str:
|
|
3938
|
+
'''The ID of the Amazon DataZone group profile.
|
|
3961
3939
|
|
|
3962
|
-
:cloudformationAttribute:
|
|
3940
|
+
:cloudformationAttribute: Id
|
|
3963
3941
|
'''
|
|
3964
|
-
return typing.cast(builtins.str, jsii.get(self, "
|
|
3942
|
+
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
3965
3943
|
|
|
3966
3944
|
@builtins.property
|
|
3967
3945
|
@jsii.member(jsii_name="cfnProperties")
|
|
@@ -3971,83 +3949,67 @@ class CfnProject(
|
|
|
3971
3949
|
@builtins.property
|
|
3972
3950
|
@jsii.member(jsii_name="domainIdentifier")
|
|
3973
3951
|
def domain_identifier(self) -> builtins.str:
|
|
3974
|
-
'''The identifier of
|
|
3952
|
+
'''The identifier of the Amazon DataZone domain in which the group profile would be created.'''
|
|
3975
3953
|
return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
|
|
3976
3954
|
|
|
3977
3955
|
@domain_identifier.setter
|
|
3978
3956
|
def domain_identifier(self, value: builtins.str) -> None:
|
|
3979
3957
|
if __debug__:
|
|
3980
|
-
type_hints = typing.get_type_hints(
|
|
3958
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3bfce5f937e19aa12105a026759b48056e8cb9facac990d4a84ae9ebf754349a)
|
|
3981
3959
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3982
3960
|
jsii.set(self, "domainIdentifier", value)
|
|
3983
3961
|
|
|
3984
3962
|
@builtins.property
|
|
3985
|
-
@jsii.member(jsii_name="
|
|
3986
|
-
def
|
|
3987
|
-
'''The
|
|
3988
|
-
return typing.cast(builtins.str, jsii.get(self, "
|
|
3989
|
-
|
|
3990
|
-
@name.setter
|
|
3991
|
-
def name(self, value: builtins.str) -> None:
|
|
3992
|
-
if __debug__:
|
|
3993
|
-
type_hints = typing.get_type_hints(_typecheckingstub__7972d56cc7ec2cdd1800b8f0d6a79f7b4ad88633cf64a2e04f072fab6c9454b3)
|
|
3994
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3995
|
-
jsii.set(self, "name", value)
|
|
3996
|
-
|
|
3997
|
-
@builtins.property
|
|
3998
|
-
@jsii.member(jsii_name="description")
|
|
3999
|
-
def description(self) -> typing.Optional[builtins.str]:
|
|
4000
|
-
'''The description of a project.'''
|
|
4001
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
3963
|
+
@jsii.member(jsii_name="groupIdentifier")
|
|
3964
|
+
def group_identifier(self) -> builtins.str:
|
|
3965
|
+
'''The ID of the group.'''
|
|
3966
|
+
return typing.cast(builtins.str, jsii.get(self, "groupIdentifier"))
|
|
4002
3967
|
|
|
4003
|
-
@
|
|
4004
|
-
def
|
|
3968
|
+
@group_identifier.setter
|
|
3969
|
+
def group_identifier(self, value: builtins.str) -> None:
|
|
4005
3970
|
if __debug__:
|
|
4006
|
-
type_hints = typing.get_type_hints(
|
|
3971
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c4cfe59401594c99ca6ed491e080ab3526afa6a5fbfa200d918455779f2c060f)
|
|
4007
3972
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4008
|
-
jsii.set(self, "
|
|
3973
|
+
jsii.set(self, "groupIdentifier", value)
|
|
4009
3974
|
|
|
4010
3975
|
@builtins.property
|
|
4011
|
-
@jsii.member(jsii_name="
|
|
4012
|
-
def
|
|
4013
|
-
'''The
|
|
4014
|
-
return typing.cast(typing.Optional[
|
|
3976
|
+
@jsii.member(jsii_name="status")
|
|
3977
|
+
def status(self) -> typing.Optional[builtins.str]:
|
|
3978
|
+
'''The status of the group profile.'''
|
|
3979
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "status"))
|
|
4015
3980
|
|
|
4016
|
-
@
|
|
4017
|
-
def
|
|
3981
|
+
@status.setter
|
|
3982
|
+
def status(self, value: typing.Optional[builtins.str]) -> None:
|
|
4018
3983
|
if __debug__:
|
|
4019
|
-
type_hints = typing.get_type_hints(
|
|
3984
|
+
type_hints = typing.get_type_hints(_typecheckingstub__489105c9239ff5a560f37a1c161dc9de12874e97ca98bb0ac4df8139e29b6727)
|
|
4020
3985
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4021
|
-
jsii.set(self, "
|
|
3986
|
+
jsii.set(self, "status", value)
|
|
4022
3987
|
|
|
4023
3988
|
|
|
4024
3989
|
@jsii.data_type(
|
|
4025
|
-
jsii_type="aws-cdk-lib.aws_datazone.
|
|
3990
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnGroupProfileProps",
|
|
4026
3991
|
jsii_struct_bases=[],
|
|
4027
3992
|
name_mapping={
|
|
4028
3993
|
"domain_identifier": "domainIdentifier",
|
|
4029
|
-
"
|
|
4030
|
-
"
|
|
4031
|
-
"glossary_terms": "glossaryTerms",
|
|
3994
|
+
"group_identifier": "groupIdentifier",
|
|
3995
|
+
"status": "status",
|
|
4032
3996
|
},
|
|
4033
3997
|
)
|
|
4034
|
-
class
|
|
3998
|
+
class CfnGroupProfileProps:
|
|
4035
3999
|
def __init__(
|
|
4036
4000
|
self,
|
|
4037
4001
|
*,
|
|
4038
4002
|
domain_identifier: builtins.str,
|
|
4039
|
-
|
|
4040
|
-
|
|
4041
|
-
glossary_terms: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4003
|
+
group_identifier: builtins.str,
|
|
4004
|
+
status: typing.Optional[builtins.str] = None,
|
|
4042
4005
|
) -> None:
|
|
4043
|
-
'''Properties for defining a ``
|
|
4006
|
+
'''Properties for defining a ``CfnGroupProfile``.
|
|
4044
4007
|
|
|
4045
|
-
:param domain_identifier: The identifier of
|
|
4046
|
-
:param
|
|
4047
|
-
:param
|
|
4048
|
-
:param glossary_terms: The glossary terms that can be used in this Amazon DataZone project.
|
|
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.
|
|
4049
4011
|
|
|
4050
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-
|
|
4012
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html
|
|
4051
4013
|
:exampleMetadata: fixture=_generated
|
|
4052
4014
|
|
|
4053
4015
|
Example::
|
|
@@ -4056,68 +4018,55 @@ class CfnProjectProps:
|
|
|
4056
4018
|
# The values are placeholders you should change.
|
|
4057
4019
|
from aws_cdk import aws_datazone as datazone
|
|
4058
4020
|
|
|
4059
|
-
|
|
4021
|
+
cfn_group_profile_props = datazone.CfnGroupProfileProps(
|
|
4060
4022
|
domain_identifier="domainIdentifier",
|
|
4061
|
-
|
|
4023
|
+
group_identifier="groupIdentifier",
|
|
4062
4024
|
|
|
4063
4025
|
# the properties below are optional
|
|
4064
|
-
|
|
4065
|
-
glossary_terms=["glossaryTerms"]
|
|
4026
|
+
status="status"
|
|
4066
4027
|
)
|
|
4067
4028
|
'''
|
|
4068
4029
|
if __debug__:
|
|
4069
|
-
type_hints = typing.get_type_hints(
|
|
4030
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4f4f2d05f4850cb07cd88e6e5af875d2c16fa3ae4bcbc384b9a51f7f0d0ca2e4)
|
|
4070
4031
|
check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
|
|
4071
|
-
check_type(argname="argument
|
|
4072
|
-
check_type(argname="argument
|
|
4073
|
-
check_type(argname="argument glossary_terms", value=glossary_terms, expected_type=type_hints["glossary_terms"])
|
|
4032
|
+
check_type(argname="argument group_identifier", value=group_identifier, expected_type=type_hints["group_identifier"])
|
|
4033
|
+
check_type(argname="argument status", value=status, expected_type=type_hints["status"])
|
|
4074
4034
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4075
4035
|
"domain_identifier": domain_identifier,
|
|
4076
|
-
"
|
|
4036
|
+
"group_identifier": group_identifier,
|
|
4077
4037
|
}
|
|
4078
|
-
if
|
|
4079
|
-
self._values["
|
|
4080
|
-
if glossary_terms is not None:
|
|
4081
|
-
self._values["glossary_terms"] = glossary_terms
|
|
4038
|
+
if status is not None:
|
|
4039
|
+
self._values["status"] = status
|
|
4082
4040
|
|
|
4083
4041
|
@builtins.property
|
|
4084
4042
|
def domain_identifier(self) -> builtins.str:
|
|
4085
|
-
'''The identifier of
|
|
4043
|
+
'''The identifier of the Amazon DataZone domain in which the group profile would be created.
|
|
4086
4044
|
|
|
4087
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-
|
|
4045
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-domainidentifier
|
|
4088
4046
|
'''
|
|
4089
4047
|
result = self._values.get("domain_identifier")
|
|
4090
4048
|
assert result is not None, "Required property 'domain_identifier' is missing"
|
|
4091
4049
|
return typing.cast(builtins.str, result)
|
|
4092
4050
|
|
|
4093
4051
|
@builtins.property
|
|
4094
|
-
def
|
|
4095
|
-
'''The
|
|
4052
|
+
def group_identifier(self) -> builtins.str:
|
|
4053
|
+
'''The ID of the group.
|
|
4096
4054
|
|
|
4097
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-
|
|
4055
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-groupidentifier
|
|
4098
4056
|
'''
|
|
4099
|
-
result = self._values.get("
|
|
4100
|
-
assert result is not None, "Required property '
|
|
4057
|
+
result = self._values.get("group_identifier")
|
|
4058
|
+
assert result is not None, "Required property 'group_identifier' is missing"
|
|
4101
4059
|
return typing.cast(builtins.str, result)
|
|
4102
4060
|
|
|
4103
4061
|
@builtins.property
|
|
4104
|
-
def
|
|
4105
|
-
'''The
|
|
4062
|
+
def status(self) -> typing.Optional[builtins.str]:
|
|
4063
|
+
'''The status of the group profile.
|
|
4106
4064
|
|
|
4107
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-
|
|
4065
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-status
|
|
4108
4066
|
'''
|
|
4109
|
-
result = self._values.get("
|
|
4067
|
+
result = self._values.get("status")
|
|
4110
4068
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
4111
4069
|
|
|
4112
|
-
@builtins.property
|
|
4113
|
-
def glossary_terms(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
4114
|
-
'''The glossary terms that can be used in this Amazon DataZone project.
|
|
4115
|
-
|
|
4116
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-glossaryterms
|
|
4117
|
-
'''
|
|
4118
|
-
result = self._values.get("glossary_terms")
|
|
4119
|
-
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
4120
|
-
|
|
4121
4070
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4122
4071
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4123
4072
|
|
|
@@ -4125,23 +4074,23 @@ class CfnProjectProps:
|
|
|
4125
4074
|
return not (rhs == self)
|
|
4126
4075
|
|
|
4127
4076
|
def __repr__(self) -> str:
|
|
4128
|
-
return "
|
|
4077
|
+
return "CfnGroupProfileProps(%s)" % ", ".join(
|
|
4129
4078
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
4130
4079
|
)
|
|
4131
4080
|
|
|
4132
4081
|
|
|
4133
4082
|
@jsii.implements(_IInspectable_c2943556)
|
|
4134
|
-
class
|
|
4083
|
+
class CfnProject(
|
|
4135
4084
|
_CfnResource_9df397a6,
|
|
4136
4085
|
metaclass=jsii.JSIIMeta,
|
|
4137
|
-
jsii_type="aws-cdk-lib.aws_datazone.
|
|
4086
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnProject",
|
|
4138
4087
|
):
|
|
4139
|
-
'''The ``AWS::DataZone::
|
|
4088
|
+
'''The ``AWS::DataZone::Project`` resource specifies an Amazon DataZone project.
|
|
4140
4089
|
|
|
4141
|
-
|
|
4090
|
+
Projects enable a group of users to collaborate on various business use cases that involve publishing, discovering, subscribing to, and consuming data in the Amazon DataZone catalog. Project members consume assets from the Amazon DataZone catalog and produce new assets using one or more analytical workflows.
|
|
4142
4091
|
|
|
4143
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-
|
|
4144
|
-
:cloudformationResource: AWS::DataZone::
|
|
4092
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html
|
|
4093
|
+
:cloudformationResource: AWS::DataZone::Project
|
|
4145
4094
|
:exampleMetadata: fixture=_generated
|
|
4146
4095
|
|
|
4147
4096
|
Example::
|
|
@@ -4150,21 +4099,13 @@ class CfnSubscriptionTarget(
|
|
|
4150
4099
|
# The values are placeholders you should change.
|
|
4151
4100
|
from aws_cdk import aws_datazone as datazone
|
|
4152
4101
|
|
|
4153
|
-
|
|
4154
|
-
applicable_asset_types=["applicableAssetTypes"],
|
|
4155
|
-
authorized_principals=["authorizedPrincipals"],
|
|
4102
|
+
cfn_project = datazone.CfnProject(self, "MyCfnProject",
|
|
4156
4103
|
domain_identifier="domainIdentifier",
|
|
4157
|
-
environment_identifier="environmentIdentifier",
|
|
4158
|
-
manage_access_role="manageAccessRole",
|
|
4159
4104
|
name="name",
|
|
4160
|
-
subscription_target_config=[datazone.CfnSubscriptionTarget.SubscriptionTargetFormProperty(
|
|
4161
|
-
content="content",
|
|
4162
|
-
form_name="formName"
|
|
4163
|
-
)],
|
|
4164
|
-
type="type",
|
|
4165
4105
|
|
|
4166
4106
|
# the properties below are optional
|
|
4167
|
-
|
|
4107
|
+
description="description",
|
|
4108
|
+
glossary_terms=["glossaryTerms"]
|
|
4168
4109
|
)
|
|
4169
4110
|
'''
|
|
4170
4111
|
|
|
@@ -4173,43 +4114,28 @@ class CfnSubscriptionTarget(
|
|
|
4173
4114
|
scope: _constructs_77d1e7e8.Construct,
|
|
4174
4115
|
id: builtins.str,
|
|
4175
4116
|
*,
|
|
4176
|
-
applicable_asset_types: typing.Sequence[builtins.str],
|
|
4177
|
-
authorized_principals: typing.Sequence[builtins.str],
|
|
4178
4117
|
domain_identifier: builtins.str,
|
|
4179
|
-
environment_identifier: builtins.str,
|
|
4180
|
-
manage_access_role: builtins.str,
|
|
4181
4118
|
name: builtins.str,
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
provider: typing.Optional[builtins.str] = None,
|
|
4119
|
+
description: typing.Optional[builtins.str] = None,
|
|
4120
|
+
glossary_terms: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4185
4121
|
) -> None:
|
|
4186
4122
|
'''
|
|
4187
4123
|
:param scope: Scope in which this resource is defined.
|
|
4188
4124
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
4189
|
-
:param
|
|
4190
|
-
:param
|
|
4191
|
-
:param
|
|
4192
|
-
:param
|
|
4193
|
-
:param manage_access_role: The manage access role that is used to create the subscription target.
|
|
4194
|
-
:param name: The name of the subscription target.
|
|
4195
|
-
:param subscription_target_config: The configuration of the subscription target.
|
|
4196
|
-
:param type: The type of the subscription target.
|
|
4197
|
-
:param provider: The provider of the subscription target.
|
|
4125
|
+
:param domain_identifier: The identifier of a Amazon DataZone domain where the project exists.
|
|
4126
|
+
:param name: The name of a project.
|
|
4127
|
+
:param description: The description of a project.
|
|
4128
|
+
:param glossary_terms: The glossary terms that can be used in this Amazon DataZone project.
|
|
4198
4129
|
'''
|
|
4199
4130
|
if __debug__:
|
|
4200
|
-
type_hints = typing.get_type_hints(
|
|
4131
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2dd190e348e5421f499a11e44b2fb0c69295587e5e7717b13a56786a897efe7f)
|
|
4201
4132
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
4202
4133
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
4203
|
-
props =
|
|
4204
|
-
applicable_asset_types=applicable_asset_types,
|
|
4205
|
-
authorized_principals=authorized_principals,
|
|
4134
|
+
props = CfnProjectProps(
|
|
4206
4135
|
domain_identifier=domain_identifier,
|
|
4207
|
-
environment_identifier=environment_identifier,
|
|
4208
|
-
manage_access_role=manage_access_role,
|
|
4209
4136
|
name=name,
|
|
4210
|
-
|
|
4211
|
-
|
|
4212
|
-
provider=provider,
|
|
4137
|
+
description=description,
|
|
4138
|
+
glossary_terms=glossary_terms,
|
|
4213
4139
|
)
|
|
4214
4140
|
|
|
4215
4141
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
@@ -4221,7 +4147,7 @@ class CfnSubscriptionTarget(
|
|
|
4221
4147
|
:param inspector: tree inspector to collect and process attributes.
|
|
4222
4148
|
'''
|
|
4223
4149
|
if __debug__:
|
|
4224
|
-
type_hints = typing.get_type_hints(
|
|
4150
|
+
type_hints = typing.get_type_hints(_typecheckingstub__dec99f127bfd691b7b1ab5260c233568e5b335a316a646dd759686435ab2eb32)
|
|
4225
4151
|
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
4226
4152
|
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
4227
4153
|
|
|
@@ -4234,7 +4160,7 @@ class CfnSubscriptionTarget(
|
|
|
4234
4160
|
:param props: -
|
|
4235
4161
|
'''
|
|
4236
4162
|
if __debug__:
|
|
4237
|
-
type_hints = typing.get_type_hints(
|
|
4163
|
+
type_hints = typing.get_type_hints(_typecheckingstub__81361e533bde98a7e424eedf14591a679c836493433a44301b63cbf3357e5369)
|
|
4238
4164
|
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
4239
4165
|
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
4240
4166
|
|
|
@@ -4247,7 +4173,7 @@ class CfnSubscriptionTarget(
|
|
|
4247
4173
|
@builtins.property
|
|
4248
4174
|
@jsii.member(jsii_name="attrCreatedAt")
|
|
4249
4175
|
def attr_created_at(self) -> builtins.str:
|
|
4250
|
-
'''The timestamp of when
|
|
4176
|
+
'''The timestamp of when a project was created.
|
|
4251
4177
|
|
|
4252
4178
|
:cloudformationAttribute: CreatedAt
|
|
4253
4179
|
'''
|
|
@@ -4256,7 +4182,7 @@ class CfnSubscriptionTarget(
|
|
|
4256
4182
|
@builtins.property
|
|
4257
4183
|
@jsii.member(jsii_name="attrCreatedBy")
|
|
4258
4184
|
def attr_created_by(self) -> builtins.str:
|
|
4259
|
-
'''The Amazon DataZone user who created the
|
|
4185
|
+
'''The Amazon DataZone user who created the project.
|
|
4260
4186
|
|
|
4261
4187
|
:cloudformationAttribute: CreatedBy
|
|
4262
4188
|
'''
|
|
@@ -4265,56 +4191,29 @@ class CfnSubscriptionTarget(
|
|
|
4265
4191
|
@builtins.property
|
|
4266
4192
|
@jsii.member(jsii_name="attrDomainId")
|
|
4267
4193
|
def attr_domain_id(self) -> builtins.str:
|
|
4268
|
-
'''The identifier of
|
|
4194
|
+
'''The identifier of a Amazon DataZone domain where the project exists.
|
|
4269
4195
|
|
|
4270
4196
|
:cloudformationAttribute: DomainId
|
|
4271
4197
|
'''
|
|
4272
4198
|
return typing.cast(builtins.str, jsii.get(self, "attrDomainId"))
|
|
4273
4199
|
|
|
4274
|
-
@builtins.property
|
|
4275
|
-
@jsii.member(jsii_name="attrEnvironmentId")
|
|
4276
|
-
def attr_environment_id(self) -> builtins.str:
|
|
4277
|
-
'''The identifier of the environment of the subscription target.
|
|
4278
|
-
|
|
4279
|
-
:cloudformationAttribute: EnvironmentId
|
|
4280
|
-
'''
|
|
4281
|
-
return typing.cast(builtins.str, jsii.get(self, "attrEnvironmentId"))
|
|
4282
|
-
|
|
4283
4200
|
@builtins.property
|
|
4284
4201
|
@jsii.member(jsii_name="attrId")
|
|
4285
4202
|
def attr_id(self) -> builtins.str:
|
|
4286
|
-
'''The identifier of
|
|
4203
|
+
'''The identifier of a project.
|
|
4287
4204
|
|
|
4288
4205
|
:cloudformationAttribute: Id
|
|
4289
4206
|
'''
|
|
4290
4207
|
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
4291
4208
|
|
|
4292
4209
|
@builtins.property
|
|
4293
|
-
@jsii.member(jsii_name="
|
|
4294
|
-
def
|
|
4295
|
-
'''The
|
|
4296
|
-
|
|
4297
|
-
:cloudformationAttribute: ProjectId
|
|
4298
|
-
'''
|
|
4299
|
-
return typing.cast(builtins.str, jsii.get(self, "attrProjectId"))
|
|
4300
|
-
|
|
4301
|
-
@builtins.property
|
|
4302
|
-
@jsii.member(jsii_name="attrUpdatedAt")
|
|
4303
|
-
def attr_updated_at(self) -> builtins.str:
|
|
4304
|
-
'''The timestamp of when the subscription target was updated.
|
|
4305
|
-
|
|
4306
|
-
:cloudformationAttribute: UpdatedAt
|
|
4307
|
-
'''
|
|
4308
|
-
return typing.cast(builtins.str, jsii.get(self, "attrUpdatedAt"))
|
|
4309
|
-
|
|
4310
|
-
@builtins.property
|
|
4311
|
-
@jsii.member(jsii_name="attrUpdatedBy")
|
|
4312
|
-
def attr_updated_by(self) -> builtins.str:
|
|
4313
|
-
'''The Amazon DataZone user who updated the subscription target.
|
|
4210
|
+
@jsii.member(jsii_name="attrLastUpdatedAt")
|
|
4211
|
+
def attr_last_updated_at(self) -> builtins.str:
|
|
4212
|
+
'''The timestamp of when the project was last updated.
|
|
4314
4213
|
|
|
4315
|
-
:cloudformationAttribute:
|
|
4214
|
+
:cloudformationAttribute: LastUpdatedAt
|
|
4316
4215
|
'''
|
|
4317
|
-
return typing.cast(builtins.str, jsii.get(self, "
|
|
4216
|
+
return typing.cast(builtins.str, jsii.get(self, "attrLastUpdatedAt"))
|
|
4318
4217
|
|
|
4319
4218
|
@builtins.property
|
|
4320
4219
|
@jsii.member(jsii_name="cfnProperties")
|
|
@@ -4322,140 +4221,226 @@ class CfnSubscriptionTarget(
|
|
|
4322
4221
|
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
4323
4222
|
|
|
4324
4223
|
@builtins.property
|
|
4325
|
-
@jsii.member(jsii_name="
|
|
4326
|
-
def
|
|
4327
|
-
'''The
|
|
4328
|
-
return typing.cast(
|
|
4224
|
+
@jsii.member(jsii_name="domainIdentifier")
|
|
4225
|
+
def domain_identifier(self) -> builtins.str:
|
|
4226
|
+
'''The identifier of a Amazon DataZone domain where the project exists.'''
|
|
4227
|
+
return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
|
|
4329
4228
|
|
|
4330
|
-
@
|
|
4331
|
-
def
|
|
4229
|
+
@domain_identifier.setter
|
|
4230
|
+
def domain_identifier(self, value: builtins.str) -> None:
|
|
4332
4231
|
if __debug__:
|
|
4333
|
-
type_hints = typing.get_type_hints(
|
|
4232
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1c4440504b53716f23143b92e80a5ea3dcfaddd707d93cad9b77c33e5e19e7a6)
|
|
4334
4233
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4335
|
-
jsii.set(self, "
|
|
4234
|
+
jsii.set(self, "domainIdentifier", value)
|
|
4336
4235
|
|
|
4337
4236
|
@builtins.property
|
|
4338
|
-
@jsii.member(jsii_name="
|
|
4339
|
-
def
|
|
4340
|
-
'''The
|
|
4341
|
-
return typing.cast(
|
|
4237
|
+
@jsii.member(jsii_name="name")
|
|
4238
|
+
def name(self) -> builtins.str:
|
|
4239
|
+
'''The name of a project.'''
|
|
4240
|
+
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
4342
4241
|
|
|
4343
|
-
@
|
|
4344
|
-
def
|
|
4242
|
+
@name.setter
|
|
4243
|
+
def name(self, value: builtins.str) -> None:
|
|
4345
4244
|
if __debug__:
|
|
4346
|
-
type_hints = typing.get_type_hints(
|
|
4245
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7972d56cc7ec2cdd1800b8f0d6a79f7b4ad88633cf64a2e04f072fab6c9454b3)
|
|
4347
4246
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4348
|
-
jsii.set(self, "
|
|
4247
|
+
jsii.set(self, "name", value)
|
|
4349
4248
|
|
|
4350
4249
|
@builtins.property
|
|
4351
|
-
@jsii.member(jsii_name="
|
|
4352
|
-
def
|
|
4353
|
-
'''The
|
|
4354
|
-
return typing.cast(builtins.str, jsii.get(self, "
|
|
4250
|
+
@jsii.member(jsii_name="description")
|
|
4251
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
4252
|
+
'''The description of a project.'''
|
|
4253
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
4355
4254
|
|
|
4356
|
-
@
|
|
4357
|
-
def
|
|
4255
|
+
@description.setter
|
|
4256
|
+
def description(self, value: typing.Optional[builtins.str]) -> None:
|
|
4358
4257
|
if __debug__:
|
|
4359
|
-
type_hints = typing.get_type_hints(
|
|
4258
|
+
type_hints = typing.get_type_hints(_typecheckingstub__dbb0277c9bfd29282afdae45a284966770345575b2854ec5cd9e6c04dffbac96)
|
|
4360
4259
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4361
|
-
jsii.set(self, "
|
|
4260
|
+
jsii.set(self, "description", value)
|
|
4362
4261
|
|
|
4363
4262
|
@builtins.property
|
|
4364
|
-
@jsii.member(jsii_name="
|
|
4365
|
-
def
|
|
4366
|
-
'''The
|
|
4367
|
-
return typing.cast(builtins.str, jsii.get(self, "
|
|
4263
|
+
@jsii.member(jsii_name="glossaryTerms")
|
|
4264
|
+
def glossary_terms(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
4265
|
+
'''The glossary terms that can be used in this Amazon DataZone project.'''
|
|
4266
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "glossaryTerms"))
|
|
4368
4267
|
|
|
4369
|
-
@
|
|
4370
|
-
def
|
|
4268
|
+
@glossary_terms.setter
|
|
4269
|
+
def glossary_terms(self, value: typing.Optional[typing.List[builtins.str]]) -> None:
|
|
4371
4270
|
if __debug__:
|
|
4372
|
-
type_hints = typing.get_type_hints(
|
|
4271
|
+
type_hints = typing.get_type_hints(_typecheckingstub__ed99a8f1a094dd4883e961330ac91acc714a4a5fd200b2d53a52d4113d5a34f8)
|
|
4373
4272
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4374
|
-
jsii.set(self, "
|
|
4273
|
+
jsii.set(self, "glossaryTerms", value)
|
|
4375
4274
|
|
|
4376
|
-
@builtins.property
|
|
4377
|
-
@jsii.member(jsii_name="manageAccessRole")
|
|
4378
|
-
def manage_access_role(self) -> builtins.str:
|
|
4379
|
-
'''The manage access role that is used to create the subscription target.'''
|
|
4380
|
-
return typing.cast(builtins.str, jsii.get(self, "manageAccessRole"))
|
|
4381
4275
|
|
|
4382
|
-
|
|
4383
|
-
|
|
4276
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
4277
|
+
class CfnProjectMembership(
|
|
4278
|
+
_CfnResource_9df397a6,
|
|
4279
|
+
metaclass=jsii.JSIIMeta,
|
|
4280
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnProjectMembership",
|
|
4281
|
+
):
|
|
4282
|
+
'''Definition of AWS::DataZone::ProjectMembership Resource Type.
|
|
4283
|
+
|
|
4284
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html
|
|
4285
|
+
:cloudformationResource: AWS::DataZone::ProjectMembership
|
|
4286
|
+
:exampleMetadata: fixture=_generated
|
|
4287
|
+
|
|
4288
|
+
Example::
|
|
4289
|
+
|
|
4290
|
+
# The code below shows an example of how to instantiate this type.
|
|
4291
|
+
# The values are placeholders you should change.
|
|
4292
|
+
from aws_cdk import aws_datazone as datazone
|
|
4293
|
+
|
|
4294
|
+
cfn_project_membership = datazone.CfnProjectMembership(self, "MyCfnProjectMembership",
|
|
4295
|
+
designation="designation",
|
|
4296
|
+
domain_identifier="domainIdentifier",
|
|
4297
|
+
member=datazone.CfnProjectMembership.MemberProperty(
|
|
4298
|
+
group_identifier="groupIdentifier",
|
|
4299
|
+
user_identifier="userIdentifier"
|
|
4300
|
+
),
|
|
4301
|
+
project_identifier="projectIdentifier"
|
|
4302
|
+
)
|
|
4303
|
+
'''
|
|
4304
|
+
|
|
4305
|
+
def __init__(
|
|
4306
|
+
self,
|
|
4307
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
4308
|
+
id: builtins.str,
|
|
4309
|
+
*,
|
|
4310
|
+
designation: builtins.str,
|
|
4311
|
+
domain_identifier: builtins.str,
|
|
4312
|
+
member: typing.Union[_IResolvable_da3f097b, typing.Union["CfnProjectMembership.MemberProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
4313
|
+
project_identifier: builtins.str,
|
|
4314
|
+
) -> None:
|
|
4315
|
+
'''
|
|
4316
|
+
:param scope: Scope in which this resource is defined.
|
|
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:
|
|
4322
|
+
'''
|
|
4384
4323
|
if __debug__:
|
|
4385
|
-
type_hints = typing.get_type_hints(
|
|
4386
|
-
check_type(argname="argument
|
|
4387
|
-
|
|
4324
|
+
type_hints = typing.get_type_hints(_typecheckingstub__227cc3d5649ee98fd5579f9e1870652d6de5250e0390e91fec524565dc07c0b9)
|
|
4325
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
4326
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
4327
|
+
props = CfnProjectMembershipProps(
|
|
4328
|
+
designation=designation,
|
|
4329
|
+
domain_identifier=domain_identifier,
|
|
4330
|
+
member=member,
|
|
4331
|
+
project_identifier=project_identifier,
|
|
4332
|
+
)
|
|
4333
|
+
|
|
4334
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
4335
|
+
|
|
4336
|
+
@jsii.member(jsii_name="inspect")
|
|
4337
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
4338
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
4339
|
+
|
|
4340
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
4341
|
+
'''
|
|
4342
|
+
if __debug__:
|
|
4343
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8e6a7791d79b9b8f15baba0f04bddbfa77afbfbdd8d2872a6e46acd2ccee79c4)
|
|
4344
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
4345
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
4346
|
+
|
|
4347
|
+
@jsii.member(jsii_name="renderProperties")
|
|
4348
|
+
def _render_properties(
|
|
4349
|
+
self,
|
|
4350
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
4351
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
4352
|
+
'''
|
|
4353
|
+
:param props: -
|
|
4354
|
+
'''
|
|
4355
|
+
if __debug__:
|
|
4356
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e37a11438611477027ae5dde4a091dc361c7dc56ba7538221e222ef9083be907)
|
|
4357
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
4358
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
4359
|
+
|
|
4360
|
+
@jsii.python.classproperty
|
|
4361
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
4362
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
4363
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
4364
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
4388
4365
|
|
|
4389
4366
|
@builtins.property
|
|
4390
|
-
@jsii.member(jsii_name="
|
|
4391
|
-
def
|
|
4392
|
-
|
|
4393
|
-
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
4367
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
4368
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
4369
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
4394
4370
|
|
|
4395
|
-
@
|
|
4396
|
-
|
|
4371
|
+
@builtins.property
|
|
4372
|
+
@jsii.member(jsii_name="designation")
|
|
4373
|
+
def designation(self) -> builtins.str:
|
|
4374
|
+
return typing.cast(builtins.str, jsii.get(self, "designation"))
|
|
4375
|
+
|
|
4376
|
+
@designation.setter
|
|
4377
|
+
def designation(self, value: builtins.str) -> None:
|
|
4397
4378
|
if __debug__:
|
|
4398
|
-
type_hints = typing.get_type_hints(
|
|
4379
|
+
type_hints = typing.get_type_hints(_typecheckingstub__71ec417c1a2abac8b6037b5bfedeb8520a3be4a0844d46c1862cb259465e45f7)
|
|
4399
4380
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4400
|
-
jsii.set(self, "
|
|
4381
|
+
jsii.set(self, "designation", value)
|
|
4401
4382
|
|
|
4402
4383
|
@builtins.property
|
|
4403
|
-
@jsii.member(jsii_name="
|
|
4404
|
-
def
|
|
4405
|
-
self,
|
|
4406
|
-
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnSubscriptionTarget.SubscriptionTargetFormProperty"]]]:
|
|
4407
|
-
'''The configuration of the subscription target.'''
|
|
4408
|
-
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnSubscriptionTarget.SubscriptionTargetFormProperty"]]], jsii.get(self, "subscriptionTargetConfig"))
|
|
4384
|
+
@jsii.member(jsii_name="domainIdentifier")
|
|
4385
|
+
def domain_identifier(self) -> builtins.str:
|
|
4386
|
+
return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
|
|
4409
4387
|
|
|
4410
|
-
@
|
|
4411
|
-
def
|
|
4412
|
-
self,
|
|
4413
|
-
value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnSubscriptionTarget.SubscriptionTargetFormProperty"]]],
|
|
4414
|
-
) -> None:
|
|
4388
|
+
@domain_identifier.setter
|
|
4389
|
+
def domain_identifier(self, value: builtins.str) -> None:
|
|
4415
4390
|
if __debug__:
|
|
4416
|
-
type_hints = typing.get_type_hints(
|
|
4391
|
+
type_hints = typing.get_type_hints(_typecheckingstub__66d809e4462dc85243bcc1ab3799cc4a5180f2f4119683718081fa5f79530ac7)
|
|
4417
4392
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4418
|
-
jsii.set(self, "
|
|
4393
|
+
jsii.set(self, "domainIdentifier", value)
|
|
4419
4394
|
|
|
4420
4395
|
@builtins.property
|
|
4421
|
-
@jsii.member(jsii_name="
|
|
4422
|
-
def
|
|
4423
|
-
|
|
4424
|
-
|
|
4396
|
+
@jsii.member(jsii_name="member")
|
|
4397
|
+
def member(
|
|
4398
|
+
self,
|
|
4399
|
+
) -> typing.Union[_IResolvable_da3f097b, "CfnProjectMembership.MemberProperty"]:
|
|
4400
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnProjectMembership.MemberProperty"], jsii.get(self, "member"))
|
|
4425
4401
|
|
|
4426
|
-
@
|
|
4427
|
-
def
|
|
4402
|
+
@member.setter
|
|
4403
|
+
def member(
|
|
4404
|
+
self,
|
|
4405
|
+
value: typing.Union[_IResolvable_da3f097b, "CfnProjectMembership.MemberProperty"],
|
|
4406
|
+
) -> None:
|
|
4428
4407
|
if __debug__:
|
|
4429
|
-
type_hints = typing.get_type_hints(
|
|
4408
|
+
type_hints = typing.get_type_hints(_typecheckingstub__50f6e6b64e6349a5c9d740955a9ccac88cf9da161bf02038bc9e12572958a93f)
|
|
4430
4409
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4431
|
-
jsii.set(self, "
|
|
4410
|
+
jsii.set(self, "member", value)
|
|
4432
4411
|
|
|
4433
4412
|
@builtins.property
|
|
4434
|
-
@jsii.member(jsii_name="
|
|
4435
|
-
def
|
|
4436
|
-
|
|
4437
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "provider"))
|
|
4413
|
+
@jsii.member(jsii_name="projectIdentifier")
|
|
4414
|
+
def project_identifier(self) -> builtins.str:
|
|
4415
|
+
return typing.cast(builtins.str, jsii.get(self, "projectIdentifier"))
|
|
4438
4416
|
|
|
4439
|
-
@
|
|
4440
|
-
def
|
|
4417
|
+
@project_identifier.setter
|
|
4418
|
+
def project_identifier(self, value: builtins.str) -> None:
|
|
4441
4419
|
if __debug__:
|
|
4442
|
-
type_hints = typing.get_type_hints(
|
|
4420
|
+
type_hints = typing.get_type_hints(_typecheckingstub__da845d5c47de18f48a6a2e21aa5b41e5193d4b3faad962602fc4d3b98d677eb8)
|
|
4443
4421
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4444
|
-
jsii.set(self, "
|
|
4422
|
+
jsii.set(self, "projectIdentifier", value)
|
|
4445
4423
|
|
|
4446
4424
|
@jsii.data_type(
|
|
4447
|
-
jsii_type="aws-cdk-lib.aws_datazone.
|
|
4425
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnProjectMembership.MemberProperty",
|
|
4448
4426
|
jsii_struct_bases=[],
|
|
4449
|
-
name_mapping={
|
|
4427
|
+
name_mapping={
|
|
4428
|
+
"group_identifier": "groupIdentifier",
|
|
4429
|
+
"user_identifier": "userIdentifier",
|
|
4430
|
+
},
|
|
4450
4431
|
)
|
|
4451
|
-
class
|
|
4452
|
-
def __init__(
|
|
4453
|
-
|
|
4454
|
-
|
|
4455
|
-
:
|
|
4456
|
-
:
|
|
4432
|
+
class MemberProperty:
|
|
4433
|
+
def __init__(
|
|
4434
|
+
self,
|
|
4435
|
+
*,
|
|
4436
|
+
group_identifier: typing.Optional[builtins.str] = None,
|
|
4437
|
+
user_identifier: typing.Optional[builtins.str] = None,
|
|
4438
|
+
) -> None:
|
|
4439
|
+
'''
|
|
4440
|
+
:param group_identifier:
|
|
4441
|
+
:param user_identifier:
|
|
4457
4442
|
|
|
4458
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-
|
|
4443
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-member.html
|
|
4459
4444
|
:exampleMetadata: fixture=_generated
|
|
4460
4445
|
|
|
4461
4446
|
Example::
|
|
@@ -4464,39 +4449,36 @@ class CfnSubscriptionTarget(
|
|
|
4464
4449
|
# The values are placeholders you should change.
|
|
4465
4450
|
from aws_cdk import aws_datazone as datazone
|
|
4466
4451
|
|
|
4467
|
-
|
|
4468
|
-
|
|
4469
|
-
|
|
4452
|
+
member_property = datazone.CfnProjectMembership.MemberProperty(
|
|
4453
|
+
group_identifier="groupIdentifier",
|
|
4454
|
+
user_identifier="userIdentifier"
|
|
4470
4455
|
)
|
|
4471
4456
|
'''
|
|
4472
4457
|
if __debug__:
|
|
4473
|
-
type_hints = typing.get_type_hints(
|
|
4474
|
-
check_type(argname="argument
|
|
4475
|
-
check_type(argname="argument
|
|
4476
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4477
|
-
|
|
4478
|
-
"
|
|
4479
|
-
|
|
4458
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2184a0c3aa18e8899e2cb70b944b79d781e689bd543ac2140e9176025c2fa864)
|
|
4459
|
+
check_type(argname="argument group_identifier", value=group_identifier, expected_type=type_hints["group_identifier"])
|
|
4460
|
+
check_type(argname="argument user_identifier", value=user_identifier, expected_type=type_hints["user_identifier"])
|
|
4461
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4462
|
+
if group_identifier is not None:
|
|
4463
|
+
self._values["group_identifier"] = group_identifier
|
|
4464
|
+
if user_identifier is not None:
|
|
4465
|
+
self._values["user_identifier"] = user_identifier
|
|
4480
4466
|
|
|
4481
4467
|
@builtins.property
|
|
4482
|
-
def
|
|
4483
|
-
'''The content of the subscription target configuration.
|
|
4484
|
-
|
|
4485
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-subscriptiontarget-subscriptiontargetform.html#cfn-datazone-subscriptiontarget-subscriptiontargetform-content
|
|
4468
|
+
def group_identifier(self) -> typing.Optional[builtins.str]:
|
|
4486
4469
|
'''
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
|
|
4470
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-member.html#cfn-datazone-projectmembership-member-groupidentifier
|
|
4471
|
+
'''
|
|
4472
|
+
result = self._values.get("group_identifier")
|
|
4473
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4490
4474
|
|
|
4491
4475
|
@builtins.property
|
|
4492
|
-
def
|
|
4493
|
-
'''The form name included in the subscription target configuration.
|
|
4494
|
-
|
|
4495
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-subscriptiontarget-subscriptiontargetform.html#cfn-datazone-subscriptiontarget-subscriptiontargetform-formname
|
|
4476
|
+
def user_identifier(self) -> typing.Optional[builtins.str]:
|
|
4496
4477
|
'''
|
|
4497
|
-
|
|
4498
|
-
|
|
4499
|
-
|
|
4478
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-member.html#cfn-datazone-projectmembership-member-useridentifier
|
|
4479
|
+
'''
|
|
4480
|
+
result = self._values.get("user_identifier")
|
|
4481
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4500
4482
|
|
|
4501
4483
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4502
4484
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -4505,53 +4487,1232 @@ class CfnSubscriptionTarget(
|
|
|
4505
4487
|
return not (rhs == self)
|
|
4506
4488
|
|
|
4507
4489
|
def __repr__(self) -> str:
|
|
4508
|
-
return "
|
|
4490
|
+
return "MemberProperty(%s)" % ", ".join(
|
|
4509
4491
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
4510
4492
|
)
|
|
4511
4493
|
|
|
4512
4494
|
|
|
4513
4495
|
@jsii.data_type(
|
|
4514
|
-
jsii_type="aws-cdk-lib.aws_datazone.
|
|
4496
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnProjectMembershipProps",
|
|
4515
4497
|
jsii_struct_bases=[],
|
|
4516
4498
|
name_mapping={
|
|
4517
|
-
"
|
|
4518
|
-
"authorized_principals": "authorizedPrincipals",
|
|
4499
|
+
"designation": "designation",
|
|
4519
4500
|
"domain_identifier": "domainIdentifier",
|
|
4520
|
-
"
|
|
4521
|
-
"
|
|
4522
|
-
"name": "name",
|
|
4523
|
-
"subscription_target_config": "subscriptionTargetConfig",
|
|
4524
|
-
"type": "type",
|
|
4525
|
-
"provider": "provider",
|
|
4501
|
+
"member": "member",
|
|
4502
|
+
"project_identifier": "projectIdentifier",
|
|
4526
4503
|
},
|
|
4527
4504
|
)
|
|
4528
|
-
class
|
|
4505
|
+
class CfnProjectMembershipProps:
|
|
4529
4506
|
def __init__(
|
|
4530
4507
|
self,
|
|
4531
4508
|
*,
|
|
4532
|
-
|
|
4533
|
-
authorized_principals: typing.Sequence[builtins.str],
|
|
4509
|
+
designation: builtins.str,
|
|
4534
4510
|
domain_identifier: builtins.str,
|
|
4535
|
-
|
|
4536
|
-
|
|
4537
|
-
name: builtins.str,
|
|
4538
|
-
subscription_target_config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSubscriptionTarget.SubscriptionTargetFormProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
4539
|
-
type: builtins.str,
|
|
4540
|
-
provider: typing.Optional[builtins.str] = None,
|
|
4511
|
+
member: typing.Union[_IResolvable_da3f097b, typing.Union[CfnProjectMembership.MemberProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
4512
|
+
project_identifier: builtins.str,
|
|
4541
4513
|
) -> None:
|
|
4542
|
-
'''Properties for defining a ``
|
|
4514
|
+
'''Properties for defining a ``CfnProjectMembership``.
|
|
4543
4515
|
|
|
4544
|
-
:param
|
|
4545
|
-
:param
|
|
4546
|
-
:param
|
|
4516
|
+
:param designation:
|
|
4517
|
+
:param domain_identifier:
|
|
4518
|
+
:param member:
|
|
4519
|
+
:param project_identifier:
|
|
4520
|
+
|
|
4521
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html
|
|
4522
|
+
:exampleMetadata: fixture=_generated
|
|
4523
|
+
|
|
4524
|
+
Example::
|
|
4525
|
+
|
|
4526
|
+
# The code below shows an example of how to instantiate this type.
|
|
4527
|
+
# The values are placeholders you should change.
|
|
4528
|
+
from aws_cdk import aws_datazone as datazone
|
|
4529
|
+
|
|
4530
|
+
cfn_project_membership_props = datazone.CfnProjectMembershipProps(
|
|
4531
|
+
designation="designation",
|
|
4532
|
+
domain_identifier="domainIdentifier",
|
|
4533
|
+
member=datazone.CfnProjectMembership.MemberProperty(
|
|
4534
|
+
group_identifier="groupIdentifier",
|
|
4535
|
+
user_identifier="userIdentifier"
|
|
4536
|
+
),
|
|
4537
|
+
project_identifier="projectIdentifier"
|
|
4538
|
+
)
|
|
4539
|
+
'''
|
|
4540
|
+
if __debug__:
|
|
4541
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b25f4db16efa2b368a4cf197bdf102ccdf0c613db5654c1186f9404f9259e4d7)
|
|
4542
|
+
check_type(argname="argument designation", value=designation, expected_type=type_hints["designation"])
|
|
4543
|
+
check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
|
|
4544
|
+
check_type(argname="argument member", value=member, expected_type=type_hints["member"])
|
|
4545
|
+
check_type(argname="argument project_identifier", value=project_identifier, expected_type=type_hints["project_identifier"])
|
|
4546
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4547
|
+
"designation": designation,
|
|
4548
|
+
"domain_identifier": domain_identifier,
|
|
4549
|
+
"member": member,
|
|
4550
|
+
"project_identifier": project_identifier,
|
|
4551
|
+
}
|
|
4552
|
+
|
|
4553
|
+
@builtins.property
|
|
4554
|
+
def designation(self) -> builtins.str:
|
|
4555
|
+
'''
|
|
4556
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html#cfn-datazone-projectmembership-designation
|
|
4557
|
+
'''
|
|
4558
|
+
result = self._values.get("designation")
|
|
4559
|
+
assert result is not None, "Required property 'designation' is missing"
|
|
4560
|
+
return typing.cast(builtins.str, result)
|
|
4561
|
+
|
|
4562
|
+
@builtins.property
|
|
4563
|
+
def domain_identifier(self) -> builtins.str:
|
|
4564
|
+
'''
|
|
4565
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html#cfn-datazone-projectmembership-domainidentifier
|
|
4566
|
+
'''
|
|
4567
|
+
result = self._values.get("domain_identifier")
|
|
4568
|
+
assert result is not None, "Required property 'domain_identifier' is missing"
|
|
4569
|
+
return typing.cast(builtins.str, result)
|
|
4570
|
+
|
|
4571
|
+
@builtins.property
|
|
4572
|
+
def member(
|
|
4573
|
+
self,
|
|
4574
|
+
) -> typing.Union[_IResolvable_da3f097b, CfnProjectMembership.MemberProperty]:
|
|
4575
|
+
'''
|
|
4576
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html#cfn-datazone-projectmembership-member
|
|
4577
|
+
'''
|
|
4578
|
+
result = self._values.get("member")
|
|
4579
|
+
assert result is not None, "Required property 'member' is missing"
|
|
4580
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, CfnProjectMembership.MemberProperty], result)
|
|
4581
|
+
|
|
4582
|
+
@builtins.property
|
|
4583
|
+
def project_identifier(self) -> builtins.str:
|
|
4584
|
+
'''
|
|
4585
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html#cfn-datazone-projectmembership-projectidentifier
|
|
4586
|
+
'''
|
|
4587
|
+
result = self._values.get("project_identifier")
|
|
4588
|
+
assert result is not None, "Required property 'project_identifier' is missing"
|
|
4589
|
+
return typing.cast(builtins.str, result)
|
|
4590
|
+
|
|
4591
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4592
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4593
|
+
|
|
4594
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4595
|
+
return not (rhs == self)
|
|
4596
|
+
|
|
4597
|
+
def __repr__(self) -> str:
|
|
4598
|
+
return "CfnProjectMembershipProps(%s)" % ", ".join(
|
|
4599
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4600
|
+
)
|
|
4601
|
+
|
|
4602
|
+
|
|
4603
|
+
@jsii.data_type(
|
|
4604
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnProjectProps",
|
|
4605
|
+
jsii_struct_bases=[],
|
|
4606
|
+
name_mapping={
|
|
4607
|
+
"domain_identifier": "domainIdentifier",
|
|
4608
|
+
"name": "name",
|
|
4609
|
+
"description": "description",
|
|
4610
|
+
"glossary_terms": "glossaryTerms",
|
|
4611
|
+
},
|
|
4612
|
+
)
|
|
4613
|
+
class CfnProjectProps:
|
|
4614
|
+
def __init__(
|
|
4615
|
+
self,
|
|
4616
|
+
*,
|
|
4617
|
+
domain_identifier: builtins.str,
|
|
4618
|
+
name: builtins.str,
|
|
4619
|
+
description: typing.Optional[builtins.str] = None,
|
|
4620
|
+
glossary_terms: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4621
|
+
) -> None:
|
|
4622
|
+
'''Properties for defining a ``CfnProject``.
|
|
4623
|
+
|
|
4624
|
+
:param domain_identifier: The identifier of a Amazon DataZone domain where the project exists.
|
|
4625
|
+
:param name: The name of a project.
|
|
4626
|
+
:param description: The description of a project.
|
|
4627
|
+
:param glossary_terms: The glossary terms that can be used in this Amazon DataZone project.
|
|
4628
|
+
|
|
4629
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html
|
|
4630
|
+
:exampleMetadata: fixture=_generated
|
|
4631
|
+
|
|
4632
|
+
Example::
|
|
4633
|
+
|
|
4634
|
+
# The code below shows an example of how to instantiate this type.
|
|
4635
|
+
# The values are placeholders you should change.
|
|
4636
|
+
from aws_cdk import aws_datazone as datazone
|
|
4637
|
+
|
|
4638
|
+
cfn_project_props = datazone.CfnProjectProps(
|
|
4639
|
+
domain_identifier="domainIdentifier",
|
|
4640
|
+
name="name",
|
|
4641
|
+
|
|
4642
|
+
# the properties below are optional
|
|
4643
|
+
description="description",
|
|
4644
|
+
glossary_terms=["glossaryTerms"]
|
|
4645
|
+
)
|
|
4646
|
+
'''
|
|
4647
|
+
if __debug__:
|
|
4648
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d519699f8d5d172880216006cab9e8c1595fc99339cf485d2be1f6c37bbc5a4c)
|
|
4649
|
+
check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
|
|
4650
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
4651
|
+
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
4652
|
+
check_type(argname="argument glossary_terms", value=glossary_terms, expected_type=type_hints["glossary_terms"])
|
|
4653
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4654
|
+
"domain_identifier": domain_identifier,
|
|
4655
|
+
"name": name,
|
|
4656
|
+
}
|
|
4657
|
+
if description is not None:
|
|
4658
|
+
self._values["description"] = description
|
|
4659
|
+
if glossary_terms is not None:
|
|
4660
|
+
self._values["glossary_terms"] = glossary_terms
|
|
4661
|
+
|
|
4662
|
+
@builtins.property
|
|
4663
|
+
def domain_identifier(self) -> builtins.str:
|
|
4664
|
+
'''The identifier of a Amazon DataZone domain where the project exists.
|
|
4665
|
+
|
|
4666
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-domainidentifier
|
|
4667
|
+
'''
|
|
4668
|
+
result = self._values.get("domain_identifier")
|
|
4669
|
+
assert result is not None, "Required property 'domain_identifier' is missing"
|
|
4670
|
+
return typing.cast(builtins.str, result)
|
|
4671
|
+
|
|
4672
|
+
@builtins.property
|
|
4673
|
+
def name(self) -> builtins.str:
|
|
4674
|
+
'''The name of a project.
|
|
4675
|
+
|
|
4676
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-name
|
|
4677
|
+
'''
|
|
4678
|
+
result = self._values.get("name")
|
|
4679
|
+
assert result is not None, "Required property 'name' is missing"
|
|
4680
|
+
return typing.cast(builtins.str, result)
|
|
4681
|
+
|
|
4682
|
+
@builtins.property
|
|
4683
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
4684
|
+
'''The description of a project.
|
|
4685
|
+
|
|
4686
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-description
|
|
4687
|
+
'''
|
|
4688
|
+
result = self._values.get("description")
|
|
4689
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4690
|
+
|
|
4691
|
+
@builtins.property
|
|
4692
|
+
def glossary_terms(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
4693
|
+
'''The glossary terms that can be used in this Amazon DataZone project.
|
|
4694
|
+
|
|
4695
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-glossaryterms
|
|
4696
|
+
'''
|
|
4697
|
+
result = self._values.get("glossary_terms")
|
|
4698
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
4699
|
+
|
|
4700
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4701
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4702
|
+
|
|
4703
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4704
|
+
return not (rhs == self)
|
|
4705
|
+
|
|
4706
|
+
def __repr__(self) -> str:
|
|
4707
|
+
return "CfnProjectProps(%s)" % ", ".join(
|
|
4708
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4709
|
+
)
|
|
4710
|
+
|
|
4711
|
+
|
|
4712
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
4713
|
+
class CfnSubscriptionTarget(
|
|
4714
|
+
_CfnResource_9df397a6,
|
|
4715
|
+
metaclass=jsii.JSIIMeta,
|
|
4716
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnSubscriptionTarget",
|
|
4717
|
+
):
|
|
4718
|
+
'''The ``AWS::DataZone::SubscriptionTarget`` resource specifies an Amazon DataZone subscription target.
|
|
4719
|
+
|
|
4720
|
+
Subscription targets enable you to access the data to which you have subscribed in your projects. A subscription target specifies the location (for example, a database or a schema) and the required permissions (for example, an IAM role) that Amazon DataZone can use to establish a connection with the source data and to create the necessary grants so that members of the Amazon DataZone project can start querying the data to which they have subscribed.
|
|
4721
|
+
|
|
4722
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html
|
|
4723
|
+
:cloudformationResource: AWS::DataZone::SubscriptionTarget
|
|
4724
|
+
:exampleMetadata: fixture=_generated
|
|
4725
|
+
|
|
4726
|
+
Example::
|
|
4727
|
+
|
|
4728
|
+
# The code below shows an example of how to instantiate this type.
|
|
4729
|
+
# The values are placeholders you should change.
|
|
4730
|
+
from aws_cdk import aws_datazone as datazone
|
|
4731
|
+
|
|
4732
|
+
cfn_subscription_target = datazone.CfnSubscriptionTarget(self, "MyCfnSubscriptionTarget",
|
|
4733
|
+
applicable_asset_types=["applicableAssetTypes"],
|
|
4734
|
+
authorized_principals=["authorizedPrincipals"],
|
|
4735
|
+
domain_identifier="domainIdentifier",
|
|
4736
|
+
environment_identifier="environmentIdentifier",
|
|
4737
|
+
manage_access_role="manageAccessRole",
|
|
4738
|
+
name="name",
|
|
4739
|
+
subscription_target_config=[datazone.CfnSubscriptionTarget.SubscriptionTargetFormProperty(
|
|
4740
|
+
content="content",
|
|
4741
|
+
form_name="formName"
|
|
4742
|
+
)],
|
|
4743
|
+
type="type",
|
|
4744
|
+
|
|
4745
|
+
# the properties below are optional
|
|
4746
|
+
provider="provider"
|
|
4747
|
+
)
|
|
4748
|
+
'''
|
|
4749
|
+
|
|
4750
|
+
def __init__(
|
|
4751
|
+
self,
|
|
4752
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
4753
|
+
id: builtins.str,
|
|
4754
|
+
*,
|
|
4755
|
+
applicable_asset_types: typing.Sequence[builtins.str],
|
|
4756
|
+
authorized_principals: typing.Sequence[builtins.str],
|
|
4757
|
+
domain_identifier: builtins.str,
|
|
4758
|
+
environment_identifier: builtins.str,
|
|
4759
|
+
manage_access_role: builtins.str,
|
|
4760
|
+
name: builtins.str,
|
|
4761
|
+
subscription_target_config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnSubscriptionTarget.SubscriptionTargetFormProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
4762
|
+
type: builtins.str,
|
|
4763
|
+
provider: typing.Optional[builtins.str] = None,
|
|
4764
|
+
) -> None:
|
|
4765
|
+
'''
|
|
4766
|
+
:param scope: Scope in which this resource is defined.
|
|
4767
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
4768
|
+
:param applicable_asset_types: The asset types included in the subscription target.
|
|
4769
|
+
:param authorized_principals: The authorized principals included in the subscription target.
|
|
4770
|
+
:param domain_identifier: The ID of the Amazon DataZone domain in which subscription target is created.
|
|
4547
4771
|
:param environment_identifier: The ID of the environment in which subscription target is created.
|
|
4548
4772
|
:param manage_access_role: The manage access role that is used to create the subscription target.
|
|
4549
4773
|
:param name: The name of the subscription target.
|
|
4550
4774
|
:param subscription_target_config: The configuration of the subscription target.
|
|
4551
4775
|
:param type: The type of the subscription target.
|
|
4552
4776
|
:param provider: The provider of the subscription target.
|
|
4777
|
+
'''
|
|
4778
|
+
if __debug__:
|
|
4779
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c61b5cfe149791a4c62bad0056737a365bdf72f7f99e6e72c71be1058e91604d)
|
|
4780
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
4781
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
4782
|
+
props = CfnSubscriptionTargetProps(
|
|
4783
|
+
applicable_asset_types=applicable_asset_types,
|
|
4784
|
+
authorized_principals=authorized_principals,
|
|
4785
|
+
domain_identifier=domain_identifier,
|
|
4786
|
+
environment_identifier=environment_identifier,
|
|
4787
|
+
manage_access_role=manage_access_role,
|
|
4788
|
+
name=name,
|
|
4789
|
+
subscription_target_config=subscription_target_config,
|
|
4790
|
+
type=type,
|
|
4791
|
+
provider=provider,
|
|
4792
|
+
)
|
|
4793
|
+
|
|
4794
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
4795
|
+
|
|
4796
|
+
@jsii.member(jsii_name="inspect")
|
|
4797
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
4798
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
4799
|
+
|
|
4800
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
4801
|
+
'''
|
|
4802
|
+
if __debug__:
|
|
4803
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b1ffb846a6baf7f8d43c947f31440c264738eb11477a914e6234e72e512226a7)
|
|
4804
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
4805
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
4806
|
+
|
|
4807
|
+
@jsii.member(jsii_name="renderProperties")
|
|
4808
|
+
def _render_properties(
|
|
4809
|
+
self,
|
|
4810
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
4811
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
4812
|
+
'''
|
|
4813
|
+
:param props: -
|
|
4814
|
+
'''
|
|
4815
|
+
if __debug__:
|
|
4816
|
+
type_hints = typing.get_type_hints(_typecheckingstub__867dc79750bd91424b54ba2d5f7eca4a8d13f7f3c9f4ffc4effe5dae834ed869)
|
|
4817
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
4818
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
4819
|
+
|
|
4820
|
+
@jsii.python.classproperty
|
|
4821
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
4822
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
4823
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
4824
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
4825
|
+
|
|
4826
|
+
@builtins.property
|
|
4827
|
+
@jsii.member(jsii_name="attrCreatedAt")
|
|
4828
|
+
def attr_created_at(self) -> builtins.str:
|
|
4829
|
+
'''The timestamp of when the subscription target was created.
|
|
4830
|
+
|
|
4831
|
+
:cloudformationAttribute: CreatedAt
|
|
4832
|
+
'''
|
|
4833
|
+
return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
|
|
4834
|
+
|
|
4835
|
+
@builtins.property
|
|
4836
|
+
@jsii.member(jsii_name="attrCreatedBy")
|
|
4837
|
+
def attr_created_by(self) -> builtins.str:
|
|
4838
|
+
'''The Amazon DataZone user who created the subscription target.
|
|
4839
|
+
|
|
4840
|
+
:cloudformationAttribute: CreatedBy
|
|
4841
|
+
'''
|
|
4842
|
+
return typing.cast(builtins.str, jsii.get(self, "attrCreatedBy"))
|
|
4843
|
+
|
|
4844
|
+
@builtins.property
|
|
4845
|
+
@jsii.member(jsii_name="attrDomainId")
|
|
4846
|
+
def attr_domain_id(self) -> builtins.str:
|
|
4847
|
+
'''The identifier of the Amazon DataZone domain in which the subscription target exists.
|
|
4848
|
+
|
|
4849
|
+
:cloudformationAttribute: DomainId
|
|
4850
|
+
'''
|
|
4851
|
+
return typing.cast(builtins.str, jsii.get(self, "attrDomainId"))
|
|
4852
|
+
|
|
4853
|
+
@builtins.property
|
|
4854
|
+
@jsii.member(jsii_name="attrEnvironmentId")
|
|
4855
|
+
def attr_environment_id(self) -> builtins.str:
|
|
4856
|
+
'''The identifier of the environment of the subscription target.
|
|
4857
|
+
|
|
4858
|
+
:cloudformationAttribute: EnvironmentId
|
|
4859
|
+
'''
|
|
4860
|
+
return typing.cast(builtins.str, jsii.get(self, "attrEnvironmentId"))
|
|
4861
|
+
|
|
4862
|
+
@builtins.property
|
|
4863
|
+
@jsii.member(jsii_name="attrId")
|
|
4864
|
+
def attr_id(self) -> builtins.str:
|
|
4865
|
+
'''The identifier of the subscription target.
|
|
4866
|
+
|
|
4867
|
+
:cloudformationAttribute: Id
|
|
4868
|
+
'''
|
|
4869
|
+
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
4870
|
+
|
|
4871
|
+
@builtins.property
|
|
4872
|
+
@jsii.member(jsii_name="attrProjectId")
|
|
4873
|
+
def attr_project_id(self) -> builtins.str:
|
|
4874
|
+
'''The identifier of the project specified in the subscription target.
|
|
4875
|
+
|
|
4876
|
+
:cloudformationAttribute: ProjectId
|
|
4877
|
+
'''
|
|
4878
|
+
return typing.cast(builtins.str, jsii.get(self, "attrProjectId"))
|
|
4879
|
+
|
|
4880
|
+
@builtins.property
|
|
4881
|
+
@jsii.member(jsii_name="attrUpdatedAt")
|
|
4882
|
+
def attr_updated_at(self) -> builtins.str:
|
|
4883
|
+
'''The timestamp of when the subscription target was updated.
|
|
4884
|
+
|
|
4885
|
+
:cloudformationAttribute: UpdatedAt
|
|
4886
|
+
'''
|
|
4887
|
+
return typing.cast(builtins.str, jsii.get(self, "attrUpdatedAt"))
|
|
4888
|
+
|
|
4889
|
+
@builtins.property
|
|
4890
|
+
@jsii.member(jsii_name="attrUpdatedBy")
|
|
4891
|
+
def attr_updated_by(self) -> builtins.str:
|
|
4892
|
+
'''The Amazon DataZone user who updated the subscription target.
|
|
4893
|
+
|
|
4894
|
+
:cloudformationAttribute: UpdatedBy
|
|
4895
|
+
'''
|
|
4896
|
+
return typing.cast(builtins.str, jsii.get(self, "attrUpdatedBy"))
|
|
4897
|
+
|
|
4898
|
+
@builtins.property
|
|
4899
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
4900
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
4901
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
4902
|
+
|
|
4903
|
+
@builtins.property
|
|
4904
|
+
@jsii.member(jsii_name="applicableAssetTypes")
|
|
4905
|
+
def applicable_asset_types(self) -> typing.List[builtins.str]:
|
|
4906
|
+
'''The asset types included in the subscription target.'''
|
|
4907
|
+
return typing.cast(typing.List[builtins.str], jsii.get(self, "applicableAssetTypes"))
|
|
4908
|
+
|
|
4909
|
+
@applicable_asset_types.setter
|
|
4910
|
+
def applicable_asset_types(self, value: typing.List[builtins.str]) -> None:
|
|
4911
|
+
if __debug__:
|
|
4912
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6db9fad0cfe2726fd2714cfa52499e265af46d2cacf4be9daa6378bd8c673b5a)
|
|
4913
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4914
|
+
jsii.set(self, "applicableAssetTypes", value)
|
|
4915
|
+
|
|
4916
|
+
@builtins.property
|
|
4917
|
+
@jsii.member(jsii_name="authorizedPrincipals")
|
|
4918
|
+
def authorized_principals(self) -> typing.List[builtins.str]:
|
|
4919
|
+
'''The authorized principals included in the subscription target.'''
|
|
4920
|
+
return typing.cast(typing.List[builtins.str], jsii.get(self, "authorizedPrincipals"))
|
|
4921
|
+
|
|
4922
|
+
@authorized_principals.setter
|
|
4923
|
+
def authorized_principals(self, value: typing.List[builtins.str]) -> None:
|
|
4924
|
+
if __debug__:
|
|
4925
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3ec38d6c0d885e0ae64427a2407f691f11cd764f198652ece23783772c2611fb)
|
|
4926
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4927
|
+
jsii.set(self, "authorizedPrincipals", value)
|
|
4928
|
+
|
|
4929
|
+
@builtins.property
|
|
4930
|
+
@jsii.member(jsii_name="domainIdentifier")
|
|
4931
|
+
def domain_identifier(self) -> builtins.str:
|
|
4932
|
+
'''The ID of the Amazon DataZone domain in which subscription target is created.'''
|
|
4933
|
+
return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
|
|
4934
|
+
|
|
4935
|
+
@domain_identifier.setter
|
|
4936
|
+
def domain_identifier(self, value: builtins.str) -> None:
|
|
4937
|
+
if __debug__:
|
|
4938
|
+
type_hints = typing.get_type_hints(_typecheckingstub__77bccb41f1eb7b5a32710e03ae6cfec74eb17bf3129bd372a11c92f7f67f5dc0)
|
|
4939
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4940
|
+
jsii.set(self, "domainIdentifier", value)
|
|
4941
|
+
|
|
4942
|
+
@builtins.property
|
|
4943
|
+
@jsii.member(jsii_name="environmentIdentifier")
|
|
4944
|
+
def environment_identifier(self) -> builtins.str:
|
|
4945
|
+
'''The ID of the environment in which subscription target is created.'''
|
|
4946
|
+
return typing.cast(builtins.str, jsii.get(self, "environmentIdentifier"))
|
|
4947
|
+
|
|
4948
|
+
@environment_identifier.setter
|
|
4949
|
+
def environment_identifier(self, value: builtins.str) -> None:
|
|
4950
|
+
if __debug__:
|
|
4951
|
+
type_hints = typing.get_type_hints(_typecheckingstub__20ed34c3b416019570831200db233eb4c407b91b53464c36e9fbdbdcd4a6da82)
|
|
4952
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4953
|
+
jsii.set(self, "environmentIdentifier", value)
|
|
4954
|
+
|
|
4955
|
+
@builtins.property
|
|
4956
|
+
@jsii.member(jsii_name="manageAccessRole")
|
|
4957
|
+
def manage_access_role(self) -> builtins.str:
|
|
4958
|
+
'''The manage access role that is used to create the subscription target.'''
|
|
4959
|
+
return typing.cast(builtins.str, jsii.get(self, "manageAccessRole"))
|
|
4960
|
+
|
|
4961
|
+
@manage_access_role.setter
|
|
4962
|
+
def manage_access_role(self, value: builtins.str) -> None:
|
|
4963
|
+
if __debug__:
|
|
4964
|
+
type_hints = typing.get_type_hints(_typecheckingstub__83f19af57790aab3ddc6c4e1f64e1f68cf69073e46da8ac997fc9f0c83e93198)
|
|
4965
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4966
|
+
jsii.set(self, "manageAccessRole", value)
|
|
4967
|
+
|
|
4968
|
+
@builtins.property
|
|
4969
|
+
@jsii.member(jsii_name="name")
|
|
4970
|
+
def name(self) -> builtins.str:
|
|
4971
|
+
'''The name of the subscription target.'''
|
|
4972
|
+
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
4973
|
+
|
|
4974
|
+
@name.setter
|
|
4975
|
+
def name(self, value: builtins.str) -> None:
|
|
4976
|
+
if __debug__:
|
|
4977
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bc691c403b67912db7216c5f5fddda4101316ca719bd90e37c92640197c61004)
|
|
4978
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4979
|
+
jsii.set(self, "name", value)
|
|
4980
|
+
|
|
4981
|
+
@builtins.property
|
|
4982
|
+
@jsii.member(jsii_name="subscriptionTargetConfig")
|
|
4983
|
+
def subscription_target_config(
|
|
4984
|
+
self,
|
|
4985
|
+
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnSubscriptionTarget.SubscriptionTargetFormProperty"]]]:
|
|
4986
|
+
'''The configuration of the subscription target.'''
|
|
4987
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnSubscriptionTarget.SubscriptionTargetFormProperty"]]], jsii.get(self, "subscriptionTargetConfig"))
|
|
4988
|
+
|
|
4989
|
+
@subscription_target_config.setter
|
|
4990
|
+
def subscription_target_config(
|
|
4991
|
+
self,
|
|
4992
|
+
value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnSubscriptionTarget.SubscriptionTargetFormProperty"]]],
|
|
4993
|
+
) -> None:
|
|
4994
|
+
if __debug__:
|
|
4995
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a19c0f2213973750a6cc503429c6ef8619a3d0885a2df0f54aad48a00a3c6f46)
|
|
4996
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4997
|
+
jsii.set(self, "subscriptionTargetConfig", value)
|
|
4998
|
+
|
|
4999
|
+
@builtins.property
|
|
5000
|
+
@jsii.member(jsii_name="type")
|
|
5001
|
+
def type(self) -> builtins.str:
|
|
5002
|
+
'''The type of the subscription target.'''
|
|
5003
|
+
return typing.cast(builtins.str, jsii.get(self, "type"))
|
|
5004
|
+
|
|
5005
|
+
@type.setter
|
|
5006
|
+
def type(self, value: builtins.str) -> None:
|
|
5007
|
+
if __debug__:
|
|
5008
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8961cb77429dad851472db6b14a76c77606d0bffdc98a0cbb3cffd227c3ec500)
|
|
5009
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5010
|
+
jsii.set(self, "type", value)
|
|
5011
|
+
|
|
5012
|
+
@builtins.property
|
|
5013
|
+
@jsii.member(jsii_name="provider")
|
|
5014
|
+
def provider(self) -> typing.Optional[builtins.str]:
|
|
5015
|
+
'''The provider of the subscription target.'''
|
|
5016
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "provider"))
|
|
5017
|
+
|
|
5018
|
+
@provider.setter
|
|
5019
|
+
def provider(self, value: typing.Optional[builtins.str]) -> None:
|
|
5020
|
+
if __debug__:
|
|
5021
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a4526f8f71696c8c7bf040cd042cda55182de538f2ebf276253751b5a497c037)
|
|
5022
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5023
|
+
jsii.set(self, "provider", value)
|
|
5024
|
+
|
|
5025
|
+
@jsii.data_type(
|
|
5026
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnSubscriptionTarget.SubscriptionTargetFormProperty",
|
|
5027
|
+
jsii_struct_bases=[],
|
|
5028
|
+
name_mapping={"content": "content", "form_name": "formName"},
|
|
5029
|
+
)
|
|
5030
|
+
class SubscriptionTargetFormProperty:
|
|
5031
|
+
def __init__(self, *, content: builtins.str, form_name: builtins.str) -> None:
|
|
5032
|
+
'''The details of the subscription target configuration.
|
|
5033
|
+
|
|
5034
|
+
:param content: The content of the subscription target configuration.
|
|
5035
|
+
:param form_name: The form name included in the subscription target configuration.
|
|
5036
|
+
|
|
5037
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-subscriptiontarget-subscriptiontargetform.html
|
|
5038
|
+
:exampleMetadata: fixture=_generated
|
|
5039
|
+
|
|
5040
|
+
Example::
|
|
5041
|
+
|
|
5042
|
+
# The code below shows an example of how to instantiate this type.
|
|
5043
|
+
# The values are placeholders you should change.
|
|
5044
|
+
from aws_cdk import aws_datazone as datazone
|
|
5045
|
+
|
|
5046
|
+
subscription_target_form_property = datazone.CfnSubscriptionTarget.SubscriptionTargetFormProperty(
|
|
5047
|
+
content="content",
|
|
5048
|
+
form_name="formName"
|
|
5049
|
+
)
|
|
5050
|
+
'''
|
|
5051
|
+
if __debug__:
|
|
5052
|
+
type_hints = typing.get_type_hints(_typecheckingstub__720cbd7aa436c84d94877993fe56ec1a54389edd9936074e71ebf65a3caffa9b)
|
|
5053
|
+
check_type(argname="argument content", value=content, expected_type=type_hints["content"])
|
|
5054
|
+
check_type(argname="argument form_name", value=form_name, expected_type=type_hints["form_name"])
|
|
5055
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
5056
|
+
"content": content,
|
|
5057
|
+
"form_name": form_name,
|
|
5058
|
+
}
|
|
5059
|
+
|
|
5060
|
+
@builtins.property
|
|
5061
|
+
def content(self) -> builtins.str:
|
|
5062
|
+
'''The content of the subscription target configuration.
|
|
5063
|
+
|
|
5064
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-subscriptiontarget-subscriptiontargetform.html#cfn-datazone-subscriptiontarget-subscriptiontargetform-content
|
|
5065
|
+
'''
|
|
5066
|
+
result = self._values.get("content")
|
|
5067
|
+
assert result is not None, "Required property 'content' is missing"
|
|
5068
|
+
return typing.cast(builtins.str, result)
|
|
5069
|
+
|
|
5070
|
+
@builtins.property
|
|
5071
|
+
def form_name(self) -> builtins.str:
|
|
5072
|
+
'''The form name included in the subscription target configuration.
|
|
5073
|
+
|
|
5074
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-subscriptiontarget-subscriptiontargetform.html#cfn-datazone-subscriptiontarget-subscriptiontargetform-formname
|
|
5075
|
+
'''
|
|
5076
|
+
result = self._values.get("form_name")
|
|
5077
|
+
assert result is not None, "Required property 'form_name' is missing"
|
|
5078
|
+
return typing.cast(builtins.str, result)
|
|
5079
|
+
|
|
5080
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5081
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5082
|
+
|
|
5083
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5084
|
+
return not (rhs == self)
|
|
5085
|
+
|
|
5086
|
+
def __repr__(self) -> str:
|
|
5087
|
+
return "SubscriptionTargetFormProperty(%s)" % ", ".join(
|
|
5088
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5089
|
+
)
|
|
5090
|
+
|
|
5091
|
+
|
|
5092
|
+
@jsii.data_type(
|
|
5093
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnSubscriptionTargetProps",
|
|
5094
|
+
jsii_struct_bases=[],
|
|
5095
|
+
name_mapping={
|
|
5096
|
+
"applicable_asset_types": "applicableAssetTypes",
|
|
5097
|
+
"authorized_principals": "authorizedPrincipals",
|
|
5098
|
+
"domain_identifier": "domainIdentifier",
|
|
5099
|
+
"environment_identifier": "environmentIdentifier",
|
|
5100
|
+
"manage_access_role": "manageAccessRole",
|
|
5101
|
+
"name": "name",
|
|
5102
|
+
"subscription_target_config": "subscriptionTargetConfig",
|
|
5103
|
+
"type": "type",
|
|
5104
|
+
"provider": "provider",
|
|
5105
|
+
},
|
|
5106
|
+
)
|
|
5107
|
+
class CfnSubscriptionTargetProps:
|
|
5108
|
+
def __init__(
|
|
5109
|
+
self,
|
|
5110
|
+
*,
|
|
5111
|
+
applicable_asset_types: typing.Sequence[builtins.str],
|
|
5112
|
+
authorized_principals: typing.Sequence[builtins.str],
|
|
5113
|
+
domain_identifier: builtins.str,
|
|
5114
|
+
environment_identifier: builtins.str,
|
|
5115
|
+
manage_access_role: builtins.str,
|
|
5116
|
+
name: builtins.str,
|
|
5117
|
+
subscription_target_config: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnSubscriptionTarget.SubscriptionTargetFormProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
5118
|
+
type: builtins.str,
|
|
5119
|
+
provider: typing.Optional[builtins.str] = None,
|
|
5120
|
+
) -> None:
|
|
5121
|
+
'''Properties for defining a ``CfnSubscriptionTarget``.
|
|
5122
|
+
|
|
5123
|
+
:param applicable_asset_types: The asset types included in the subscription target.
|
|
5124
|
+
:param authorized_principals: The authorized principals included in the subscription target.
|
|
5125
|
+
:param domain_identifier: The ID of the Amazon DataZone domain in which subscription target is created.
|
|
5126
|
+
:param environment_identifier: The ID of the environment in which subscription target is created.
|
|
5127
|
+
:param manage_access_role: The manage access role that is used to create the subscription target.
|
|
5128
|
+
:param name: The name of the subscription target.
|
|
5129
|
+
:param subscription_target_config: The configuration of the subscription target.
|
|
5130
|
+
:param type: The type of the subscription target.
|
|
5131
|
+
:param provider: The provider of the subscription target.
|
|
5132
|
+
|
|
5133
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html
|
|
5134
|
+
:exampleMetadata: fixture=_generated
|
|
5135
|
+
|
|
5136
|
+
Example::
|
|
5137
|
+
|
|
5138
|
+
# The code below shows an example of how to instantiate this type.
|
|
5139
|
+
# The values are placeholders you should change.
|
|
5140
|
+
from aws_cdk import aws_datazone as datazone
|
|
5141
|
+
|
|
5142
|
+
cfn_subscription_target_props = datazone.CfnSubscriptionTargetProps(
|
|
5143
|
+
applicable_asset_types=["applicableAssetTypes"],
|
|
5144
|
+
authorized_principals=["authorizedPrincipals"],
|
|
5145
|
+
domain_identifier="domainIdentifier",
|
|
5146
|
+
environment_identifier="environmentIdentifier",
|
|
5147
|
+
manage_access_role="manageAccessRole",
|
|
5148
|
+
name="name",
|
|
5149
|
+
subscription_target_config=[datazone.CfnSubscriptionTarget.SubscriptionTargetFormProperty(
|
|
5150
|
+
content="content",
|
|
5151
|
+
form_name="formName"
|
|
5152
|
+
)],
|
|
5153
|
+
type="type",
|
|
5154
|
+
|
|
5155
|
+
# the properties below are optional
|
|
5156
|
+
provider="provider"
|
|
5157
|
+
)
|
|
5158
|
+
'''
|
|
5159
|
+
if __debug__:
|
|
5160
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0b970b38bc2b99a7ed3ef3830dfa5721ecc9ee442e5d627e01abfdcb22600151)
|
|
5161
|
+
check_type(argname="argument applicable_asset_types", value=applicable_asset_types, expected_type=type_hints["applicable_asset_types"])
|
|
5162
|
+
check_type(argname="argument authorized_principals", value=authorized_principals, expected_type=type_hints["authorized_principals"])
|
|
5163
|
+
check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
|
|
5164
|
+
check_type(argname="argument environment_identifier", value=environment_identifier, expected_type=type_hints["environment_identifier"])
|
|
5165
|
+
check_type(argname="argument manage_access_role", value=manage_access_role, expected_type=type_hints["manage_access_role"])
|
|
5166
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
5167
|
+
check_type(argname="argument subscription_target_config", value=subscription_target_config, expected_type=type_hints["subscription_target_config"])
|
|
5168
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
5169
|
+
check_type(argname="argument provider", value=provider, expected_type=type_hints["provider"])
|
|
5170
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
5171
|
+
"applicable_asset_types": applicable_asset_types,
|
|
5172
|
+
"authorized_principals": authorized_principals,
|
|
5173
|
+
"domain_identifier": domain_identifier,
|
|
5174
|
+
"environment_identifier": environment_identifier,
|
|
5175
|
+
"manage_access_role": manage_access_role,
|
|
5176
|
+
"name": name,
|
|
5177
|
+
"subscription_target_config": subscription_target_config,
|
|
5178
|
+
"type": type,
|
|
5179
|
+
}
|
|
5180
|
+
if provider is not None:
|
|
5181
|
+
self._values["provider"] = provider
|
|
5182
|
+
|
|
5183
|
+
@builtins.property
|
|
5184
|
+
def applicable_asset_types(self) -> typing.List[builtins.str]:
|
|
5185
|
+
'''The asset types included in the subscription target.
|
|
5186
|
+
|
|
5187
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-applicableassettypes
|
|
5188
|
+
'''
|
|
5189
|
+
result = self._values.get("applicable_asset_types")
|
|
5190
|
+
assert result is not None, "Required property 'applicable_asset_types' is missing"
|
|
5191
|
+
return typing.cast(typing.List[builtins.str], result)
|
|
5192
|
+
|
|
5193
|
+
@builtins.property
|
|
5194
|
+
def authorized_principals(self) -> typing.List[builtins.str]:
|
|
5195
|
+
'''The authorized principals included in the subscription target.
|
|
5196
|
+
|
|
5197
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-authorizedprincipals
|
|
5198
|
+
'''
|
|
5199
|
+
result = self._values.get("authorized_principals")
|
|
5200
|
+
assert result is not None, "Required property 'authorized_principals' is missing"
|
|
5201
|
+
return typing.cast(typing.List[builtins.str], result)
|
|
5202
|
+
|
|
5203
|
+
@builtins.property
|
|
5204
|
+
def domain_identifier(self) -> builtins.str:
|
|
5205
|
+
'''The ID of the Amazon DataZone domain in which subscription target is created.
|
|
5206
|
+
|
|
5207
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-domainidentifier
|
|
5208
|
+
'''
|
|
5209
|
+
result = self._values.get("domain_identifier")
|
|
5210
|
+
assert result is not None, "Required property 'domain_identifier' is missing"
|
|
5211
|
+
return typing.cast(builtins.str, result)
|
|
5212
|
+
|
|
5213
|
+
@builtins.property
|
|
5214
|
+
def environment_identifier(self) -> builtins.str:
|
|
5215
|
+
'''The ID of the environment in which subscription target is created.
|
|
5216
|
+
|
|
5217
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-environmentidentifier
|
|
5218
|
+
'''
|
|
5219
|
+
result = self._values.get("environment_identifier")
|
|
5220
|
+
assert result is not None, "Required property 'environment_identifier' is missing"
|
|
5221
|
+
return typing.cast(builtins.str, result)
|
|
5222
|
+
|
|
5223
|
+
@builtins.property
|
|
5224
|
+
def manage_access_role(self) -> builtins.str:
|
|
5225
|
+
'''The manage access role that is used to create the subscription target.
|
|
5226
|
+
|
|
5227
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-manageaccessrole
|
|
5228
|
+
'''
|
|
5229
|
+
result = self._values.get("manage_access_role")
|
|
5230
|
+
assert result is not None, "Required property 'manage_access_role' is missing"
|
|
5231
|
+
return typing.cast(builtins.str, result)
|
|
5232
|
+
|
|
5233
|
+
@builtins.property
|
|
5234
|
+
def name(self) -> builtins.str:
|
|
5235
|
+
'''The name of the subscription target.
|
|
5236
|
+
|
|
5237
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-name
|
|
5238
|
+
'''
|
|
5239
|
+
result = self._values.get("name")
|
|
5240
|
+
assert result is not None, "Required property 'name' is missing"
|
|
5241
|
+
return typing.cast(builtins.str, result)
|
|
5242
|
+
|
|
5243
|
+
@builtins.property
|
|
5244
|
+
def subscription_target_config(
|
|
5245
|
+
self,
|
|
5246
|
+
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnSubscriptionTarget.SubscriptionTargetFormProperty]]]:
|
|
5247
|
+
'''The configuration of the subscription target.
|
|
5248
|
+
|
|
5249
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-subscriptiontargetconfig
|
|
5250
|
+
'''
|
|
5251
|
+
result = self._values.get("subscription_target_config")
|
|
5252
|
+
assert result is not None, "Required property 'subscription_target_config' is missing"
|
|
5253
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnSubscriptionTarget.SubscriptionTargetFormProperty]]], result)
|
|
5254
|
+
|
|
5255
|
+
@builtins.property
|
|
5256
|
+
def type(self) -> builtins.str:
|
|
5257
|
+
'''The type of the subscription target.
|
|
5258
|
+
|
|
5259
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-type
|
|
5260
|
+
'''
|
|
5261
|
+
result = self._values.get("type")
|
|
5262
|
+
assert result is not None, "Required property 'type' is missing"
|
|
5263
|
+
return typing.cast(builtins.str, result)
|
|
5264
|
+
|
|
5265
|
+
@builtins.property
|
|
5266
|
+
def provider(self) -> typing.Optional[builtins.str]:
|
|
5267
|
+
'''The provider of the subscription target.
|
|
5268
|
+
|
|
5269
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-provider
|
|
5270
|
+
'''
|
|
5271
|
+
result = self._values.get("provider")
|
|
5272
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5273
|
+
|
|
5274
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5275
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5276
|
+
|
|
5277
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5278
|
+
return not (rhs == self)
|
|
5279
|
+
|
|
5280
|
+
def __repr__(self) -> str:
|
|
5281
|
+
return "CfnSubscriptionTargetProps(%s)" % ", ".join(
|
|
5282
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5283
|
+
)
|
|
5284
|
+
|
|
5285
|
+
|
|
5286
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
5287
|
+
class CfnUserProfile(
|
|
5288
|
+
_CfnResource_9df397a6,
|
|
5289
|
+
metaclass=jsii.JSIIMeta,
|
|
5290
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnUserProfile",
|
|
5291
|
+
):
|
|
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.
|
|
5295
|
+
|
|
5296
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html
|
|
5297
|
+
:cloudformationResource: AWS::DataZone::UserProfile
|
|
5298
|
+
:exampleMetadata: fixture=_generated
|
|
5299
|
+
|
|
5300
|
+
Example::
|
|
5301
|
+
|
|
5302
|
+
# The code below shows an example of how to instantiate this type.
|
|
5303
|
+
# The values are placeholders you should change.
|
|
5304
|
+
from aws_cdk import aws_datazone as datazone
|
|
5305
|
+
|
|
5306
|
+
cfn_user_profile = datazone.CfnUserProfile(self, "MyCfnUserProfile",
|
|
5307
|
+
domain_identifier="domainIdentifier",
|
|
5308
|
+
user_identifier="userIdentifier",
|
|
5309
|
+
|
|
5310
|
+
# the properties below are optional
|
|
5311
|
+
status="status",
|
|
5312
|
+
user_type="userType"
|
|
5313
|
+
)
|
|
5314
|
+
'''
|
|
5315
|
+
|
|
5316
|
+
def __init__(
|
|
5317
|
+
self,
|
|
5318
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
5319
|
+
id: builtins.str,
|
|
5320
|
+
*,
|
|
5321
|
+
domain_identifier: builtins.str,
|
|
5322
|
+
user_identifier: builtins.str,
|
|
5323
|
+
status: typing.Optional[builtins.str] = None,
|
|
5324
|
+
user_type: typing.Optional[builtins.str] = None,
|
|
5325
|
+
) -> None:
|
|
5326
|
+
'''
|
|
5327
|
+
:param scope: Scope in which this resource is defined.
|
|
5328
|
+
: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.
|
|
5331
|
+
:param status: The status of the user profile.
|
|
5332
|
+
:param user_type: The type of the user.
|
|
5333
|
+
'''
|
|
5334
|
+
if __debug__:
|
|
5335
|
+
type_hints = typing.get_type_hints(_typecheckingstub__43948fd61004932aa31394de53e9c49e34aa425f3682404de5d5f6a249734d82)
|
|
5336
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
5337
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
5338
|
+
props = CfnUserProfileProps(
|
|
5339
|
+
domain_identifier=domain_identifier,
|
|
5340
|
+
user_identifier=user_identifier,
|
|
5341
|
+
status=status,
|
|
5342
|
+
user_type=user_type,
|
|
5343
|
+
)
|
|
5344
|
+
|
|
5345
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
5346
|
+
|
|
5347
|
+
@jsii.member(jsii_name="inspect")
|
|
5348
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
5349
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
5350
|
+
|
|
5351
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
5352
|
+
'''
|
|
5353
|
+
if __debug__:
|
|
5354
|
+
type_hints = typing.get_type_hints(_typecheckingstub__62409db933bd1f83a26e4a296f90a5aa33de9e2cd9f82db4084d8f1cb0f382e4)
|
|
5355
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
5356
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
5357
|
+
|
|
5358
|
+
@jsii.member(jsii_name="renderProperties")
|
|
5359
|
+
def _render_properties(
|
|
5360
|
+
self,
|
|
5361
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
5362
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
5363
|
+
'''
|
|
5364
|
+
:param props: -
|
|
5365
|
+
'''
|
|
5366
|
+
if __debug__:
|
|
5367
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bac3d345ed2cf85373ed12e71655921f20ce2575e0f95a05a3dd29cfa7e804e0)
|
|
5368
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
5369
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
5370
|
+
|
|
5371
|
+
@jsii.python.classproperty
|
|
5372
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
5373
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
5374
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
5375
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
5376
|
+
|
|
5377
|
+
@builtins.property
|
|
5378
|
+
@jsii.member(jsii_name="attrDetails")
|
|
5379
|
+
def attr_details(self) -> _IResolvable_da3f097b:
|
|
5380
|
+
'''
|
|
5381
|
+
:cloudformationAttribute: Details
|
|
5382
|
+
'''
|
|
5383
|
+
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrDetails"))
|
|
5384
|
+
|
|
5385
|
+
@builtins.property
|
|
5386
|
+
@jsii.member(jsii_name="attrDomainId")
|
|
5387
|
+
def attr_domain_id(self) -> builtins.str:
|
|
5388
|
+
'''The identifier of the Amazon DataZone domain in which the user profile is created.
|
|
5389
|
+
|
|
5390
|
+
:cloudformationAttribute: DomainId
|
|
5391
|
+
'''
|
|
5392
|
+
return typing.cast(builtins.str, jsii.get(self, "attrDomainId"))
|
|
5393
|
+
|
|
5394
|
+
@builtins.property
|
|
5395
|
+
@jsii.member(jsii_name="attrId")
|
|
5396
|
+
def attr_id(self) -> builtins.str:
|
|
5397
|
+
'''The ID of the Amazon DataZone user profile.
|
|
5398
|
+
|
|
5399
|
+
:cloudformationAttribute: Id
|
|
5400
|
+
'''
|
|
5401
|
+
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
5402
|
+
|
|
5403
|
+
@builtins.property
|
|
5404
|
+
@jsii.member(jsii_name="attrType")
|
|
5405
|
+
def attr_type(self) -> builtins.str:
|
|
5406
|
+
'''The type of the user profile.
|
|
5407
|
+
|
|
5408
|
+
:cloudformationAttribute: Type
|
|
5409
|
+
'''
|
|
5410
|
+
return typing.cast(builtins.str, jsii.get(self, "attrType"))
|
|
5411
|
+
|
|
5412
|
+
@builtins.property
|
|
5413
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
5414
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
5415
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
5416
|
+
|
|
5417
|
+
@builtins.property
|
|
5418
|
+
@jsii.member(jsii_name="domainIdentifier")
|
|
5419
|
+
def domain_identifier(self) -> builtins.str:
|
|
5420
|
+
'''The identifier of the Amazon DataZone domain in which the user profile would be created.'''
|
|
5421
|
+
return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
|
|
5422
|
+
|
|
5423
|
+
@domain_identifier.setter
|
|
5424
|
+
def domain_identifier(self, value: builtins.str) -> None:
|
|
5425
|
+
if __debug__:
|
|
5426
|
+
type_hints = typing.get_type_hints(_typecheckingstub__57dc87f9b5d4209a76a54e631bab548eddbecf73d3a0cb39b30030a99c20dbb8)
|
|
5427
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5428
|
+
jsii.set(self, "domainIdentifier", value)
|
|
5429
|
+
|
|
5430
|
+
@builtins.property
|
|
5431
|
+
@jsii.member(jsii_name="userIdentifier")
|
|
5432
|
+
def user_identifier(self) -> builtins.str:
|
|
5433
|
+
'''The ID of the user.'''
|
|
5434
|
+
return typing.cast(builtins.str, jsii.get(self, "userIdentifier"))
|
|
5435
|
+
|
|
5436
|
+
@user_identifier.setter
|
|
5437
|
+
def user_identifier(self, value: builtins.str) -> None:
|
|
5438
|
+
if __debug__:
|
|
5439
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5bc695cbd1d290ebde7514044903060b533b99cd4f724f387512ffb614625693)
|
|
5440
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5441
|
+
jsii.set(self, "userIdentifier", value)
|
|
5442
|
+
|
|
5443
|
+
@builtins.property
|
|
5444
|
+
@jsii.member(jsii_name="status")
|
|
5445
|
+
def status(self) -> typing.Optional[builtins.str]:
|
|
5446
|
+
'''The status of the user profile.'''
|
|
5447
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "status"))
|
|
5448
|
+
|
|
5449
|
+
@status.setter
|
|
5450
|
+
def status(self, value: typing.Optional[builtins.str]) -> None:
|
|
5451
|
+
if __debug__:
|
|
5452
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f391a63fdbc6b7a8aefbb3664fddfe91481bce941965f274ecad0166152935ce)
|
|
5453
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5454
|
+
jsii.set(self, "status", value)
|
|
5455
|
+
|
|
5456
|
+
@builtins.property
|
|
5457
|
+
@jsii.member(jsii_name="userType")
|
|
5458
|
+
def user_type(self) -> typing.Optional[builtins.str]:
|
|
5459
|
+
'''The type of the user.'''
|
|
5460
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "userType"))
|
|
5461
|
+
|
|
5462
|
+
@user_type.setter
|
|
5463
|
+
def user_type(self, value: typing.Optional[builtins.str]) -> None:
|
|
5464
|
+
if __debug__:
|
|
5465
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9b560448b79c8df59777bf516743c73a776fe419d2c08183dd62546f1fc65ae4)
|
|
5466
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5467
|
+
jsii.set(self, "userType", value)
|
|
5468
|
+
|
|
5469
|
+
@jsii.data_type(
|
|
5470
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnUserProfile.IamUserProfileDetailsProperty",
|
|
5471
|
+
jsii_struct_bases=[],
|
|
5472
|
+
name_mapping={"arn": "arn"},
|
|
5473
|
+
)
|
|
5474
|
+
class IamUserProfileDetailsProperty:
|
|
5475
|
+
def __init__(self, *, arn: typing.Optional[builtins.str] = None) -> None:
|
|
5476
|
+
'''The details of the IAM User Profile.
|
|
5477
|
+
|
|
5478
|
+
:param arn: The ARN of the IAM User Profile.
|
|
5479
|
+
|
|
5480
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-iamuserprofiledetails.html
|
|
5481
|
+
:exampleMetadata: fixture=_generated
|
|
5482
|
+
|
|
5483
|
+
Example::
|
|
5484
|
+
|
|
5485
|
+
# The code below shows an example of how to instantiate this type.
|
|
5486
|
+
# The values are placeholders you should change.
|
|
5487
|
+
from aws_cdk import aws_datazone as datazone
|
|
5488
|
+
|
|
5489
|
+
iam_user_profile_details_property = datazone.CfnUserProfile.IamUserProfileDetailsProperty(
|
|
5490
|
+
arn="arn"
|
|
5491
|
+
)
|
|
5492
|
+
'''
|
|
5493
|
+
if __debug__:
|
|
5494
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3fd3b9b642370fd3593445a459418ba3df5f97586bee6446bed499fa533a4022)
|
|
5495
|
+
check_type(argname="argument arn", value=arn, expected_type=type_hints["arn"])
|
|
5496
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
5497
|
+
if arn is not None:
|
|
5498
|
+
self._values["arn"] = arn
|
|
5499
|
+
|
|
5500
|
+
@builtins.property
|
|
5501
|
+
def arn(self) -> typing.Optional[builtins.str]:
|
|
5502
|
+
'''The ARN of the IAM User Profile.
|
|
5503
|
+
|
|
5504
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-iamuserprofiledetails.html#cfn-datazone-userprofile-iamuserprofiledetails-arn
|
|
5505
|
+
'''
|
|
5506
|
+
result = self._values.get("arn")
|
|
5507
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5508
|
+
|
|
5509
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5510
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5511
|
+
|
|
5512
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5513
|
+
return not (rhs == self)
|
|
5514
|
+
|
|
5515
|
+
def __repr__(self) -> str:
|
|
5516
|
+
return "IamUserProfileDetailsProperty(%s)" % ", ".join(
|
|
5517
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5518
|
+
)
|
|
5519
|
+
|
|
5520
|
+
@jsii.data_type(
|
|
5521
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnUserProfile.SsoUserProfileDetailsProperty",
|
|
5522
|
+
jsii_struct_bases=[],
|
|
5523
|
+
name_mapping={
|
|
5524
|
+
"first_name": "firstName",
|
|
5525
|
+
"last_name": "lastName",
|
|
5526
|
+
"username": "username",
|
|
5527
|
+
},
|
|
5528
|
+
)
|
|
5529
|
+
class SsoUserProfileDetailsProperty:
|
|
5530
|
+
def __init__(
|
|
5531
|
+
self,
|
|
5532
|
+
*,
|
|
5533
|
+
first_name: typing.Optional[builtins.str] = None,
|
|
5534
|
+
last_name: typing.Optional[builtins.str] = None,
|
|
5535
|
+
username: typing.Optional[builtins.str] = None,
|
|
5536
|
+
) -> None:
|
|
5537
|
+
'''The details of the SSO User Profile.
|
|
5538
|
+
|
|
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.
|
|
5542
|
+
|
|
5543
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-ssouserprofiledetails.html
|
|
5544
|
+
:exampleMetadata: fixture=_generated
|
|
5545
|
+
|
|
5546
|
+
Example::
|
|
5547
|
+
|
|
5548
|
+
# The code below shows an example of how to instantiate this type.
|
|
5549
|
+
# The values are placeholders you should change.
|
|
5550
|
+
from aws_cdk import aws_datazone as datazone
|
|
5551
|
+
|
|
5552
|
+
sso_user_profile_details_property = datazone.CfnUserProfile.SsoUserProfileDetailsProperty(
|
|
5553
|
+
first_name="firstName",
|
|
5554
|
+
last_name="lastName",
|
|
5555
|
+
username="username"
|
|
5556
|
+
)
|
|
5557
|
+
'''
|
|
5558
|
+
if __debug__:
|
|
5559
|
+
type_hints = typing.get_type_hints(_typecheckingstub__07963e9a65d43152452195ee221d80669fe4707d48ffd231ffc947c240448dbd)
|
|
5560
|
+
check_type(argname="argument first_name", value=first_name, expected_type=type_hints["first_name"])
|
|
5561
|
+
check_type(argname="argument last_name", value=last_name, expected_type=type_hints["last_name"])
|
|
5562
|
+
check_type(argname="argument username", value=username, expected_type=type_hints["username"])
|
|
5563
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
5564
|
+
if first_name is not None:
|
|
5565
|
+
self._values["first_name"] = first_name
|
|
5566
|
+
if last_name is not None:
|
|
5567
|
+
self._values["last_name"] = last_name
|
|
5568
|
+
if username is not None:
|
|
5569
|
+
self._values["username"] = username
|
|
5570
|
+
|
|
5571
|
+
@builtins.property
|
|
5572
|
+
def first_name(self) -> typing.Optional[builtins.str]:
|
|
5573
|
+
'''The First Name of the IAM User Profile.
|
|
5574
|
+
|
|
5575
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-ssouserprofiledetails.html#cfn-datazone-userprofile-ssouserprofiledetails-firstname
|
|
5576
|
+
'''
|
|
5577
|
+
result = self._values.get("first_name")
|
|
5578
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5579
|
+
|
|
5580
|
+
@builtins.property
|
|
5581
|
+
def last_name(self) -> typing.Optional[builtins.str]:
|
|
5582
|
+
'''The Last Name of the IAM User Profile.
|
|
5583
|
+
|
|
5584
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-ssouserprofiledetails.html#cfn-datazone-userprofile-ssouserprofiledetails-lastname
|
|
5585
|
+
'''
|
|
5586
|
+
result = self._values.get("last_name")
|
|
5587
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5588
|
+
|
|
5589
|
+
@builtins.property
|
|
5590
|
+
def username(self) -> typing.Optional[builtins.str]:
|
|
5591
|
+
'''The username of the SSO User Profile.
|
|
5592
|
+
|
|
5593
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-ssouserprofiledetails.html#cfn-datazone-userprofile-ssouserprofiledetails-username
|
|
5594
|
+
'''
|
|
5595
|
+
result = self._values.get("username")
|
|
5596
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5597
|
+
|
|
5598
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5599
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5600
|
+
|
|
5601
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5602
|
+
return not (rhs == self)
|
|
5603
|
+
|
|
5604
|
+
def __repr__(self) -> str:
|
|
5605
|
+
return "SsoUserProfileDetailsProperty(%s)" % ", ".join(
|
|
5606
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5607
|
+
)
|
|
5608
|
+
|
|
5609
|
+
@jsii.data_type(
|
|
5610
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnUserProfile.UserProfileDetailsProperty",
|
|
5611
|
+
jsii_struct_bases=[],
|
|
5612
|
+
name_mapping={"iam": "iam", "sso": "sso"},
|
|
5613
|
+
)
|
|
5614
|
+
class UserProfileDetailsProperty:
|
|
5615
|
+
def __init__(
|
|
5616
|
+
self,
|
|
5617
|
+
*,
|
|
5618
|
+
iam: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnUserProfile.IamUserProfileDetailsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5619
|
+
sso: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnUserProfile.SsoUserProfileDetailsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5620
|
+
) -> None:
|
|
5621
|
+
'''
|
|
5622
|
+
:param iam: The details of the IAM User Profile.
|
|
5623
|
+
:param sso: The details of the SSO User Profile.
|
|
5624
|
+
|
|
5625
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.html
|
|
5626
|
+
:exampleMetadata: fixture=_generated
|
|
5627
|
+
|
|
5628
|
+
Example::
|
|
5629
|
+
|
|
5630
|
+
# The code below shows an example of how to instantiate this type.
|
|
5631
|
+
# The values are placeholders you should change.
|
|
5632
|
+
from aws_cdk import aws_datazone as datazone
|
|
5633
|
+
|
|
5634
|
+
user_profile_details_property = datazone.CfnUserProfile.UserProfileDetailsProperty(
|
|
5635
|
+
iam=datazone.CfnUserProfile.IamUserProfileDetailsProperty(
|
|
5636
|
+
arn="arn"
|
|
5637
|
+
),
|
|
5638
|
+
sso=datazone.CfnUserProfile.SsoUserProfileDetailsProperty(
|
|
5639
|
+
first_name="firstName",
|
|
5640
|
+
last_name="lastName",
|
|
5641
|
+
username="username"
|
|
5642
|
+
)
|
|
5643
|
+
)
|
|
5644
|
+
'''
|
|
5645
|
+
if __debug__:
|
|
5646
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1a1351a79d8a8cf0246c7e7591c1c0736de90dfd896392c833f9cb3530c63997)
|
|
5647
|
+
check_type(argname="argument iam", value=iam, expected_type=type_hints["iam"])
|
|
5648
|
+
check_type(argname="argument sso", value=sso, expected_type=type_hints["sso"])
|
|
5649
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
5650
|
+
if iam is not None:
|
|
5651
|
+
self._values["iam"] = iam
|
|
5652
|
+
if sso is not None:
|
|
5653
|
+
self._values["sso"] = sso
|
|
5654
|
+
|
|
5655
|
+
@builtins.property
|
|
5656
|
+
def iam(
|
|
5657
|
+
self,
|
|
5658
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUserProfile.IamUserProfileDetailsProperty"]]:
|
|
5659
|
+
'''The details of the IAM User Profile.
|
|
5660
|
+
|
|
5661
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.html#cfn-datazone-userprofile-userprofiledetails-iam
|
|
5662
|
+
'''
|
|
5663
|
+
result = self._values.get("iam")
|
|
5664
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUserProfile.IamUserProfileDetailsProperty"]], result)
|
|
5665
|
+
|
|
5666
|
+
@builtins.property
|
|
5667
|
+
def sso(
|
|
5668
|
+
self,
|
|
5669
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUserProfile.SsoUserProfileDetailsProperty"]]:
|
|
5670
|
+
'''The details of the SSO User Profile.
|
|
5671
|
+
|
|
5672
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.html#cfn-datazone-userprofile-userprofiledetails-sso
|
|
5673
|
+
'''
|
|
5674
|
+
result = self._values.get("sso")
|
|
5675
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnUserProfile.SsoUserProfileDetailsProperty"]], result)
|
|
5676
|
+
|
|
5677
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5678
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5679
|
+
|
|
5680
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5681
|
+
return not (rhs == self)
|
|
5682
|
+
|
|
5683
|
+
def __repr__(self) -> str:
|
|
5684
|
+
return "UserProfileDetailsProperty(%s)" % ", ".join(
|
|
5685
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5686
|
+
)
|
|
5687
|
+
|
|
5688
|
+
|
|
5689
|
+
@jsii.data_type(
|
|
5690
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnUserProfileProps",
|
|
5691
|
+
jsii_struct_bases=[],
|
|
5692
|
+
name_mapping={
|
|
5693
|
+
"domain_identifier": "domainIdentifier",
|
|
5694
|
+
"user_identifier": "userIdentifier",
|
|
5695
|
+
"status": "status",
|
|
5696
|
+
"user_type": "userType",
|
|
5697
|
+
},
|
|
5698
|
+
)
|
|
5699
|
+
class CfnUserProfileProps:
|
|
5700
|
+
def __init__(
|
|
5701
|
+
self,
|
|
5702
|
+
*,
|
|
5703
|
+
domain_identifier: builtins.str,
|
|
5704
|
+
user_identifier: builtins.str,
|
|
5705
|
+
status: typing.Optional[builtins.str] = None,
|
|
5706
|
+
user_type: typing.Optional[builtins.str] = None,
|
|
5707
|
+
) -> None:
|
|
5708
|
+
'''Properties for defining a ``CfnUserProfile``.
|
|
4553
5709
|
|
|
4554
|
-
:
|
|
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.
|
|
5712
|
+
:param status: The status of the user profile.
|
|
5713
|
+
:param user_type: The type of the user.
|
|
5714
|
+
|
|
5715
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html
|
|
4555
5716
|
:exampleMetadata: fixture=_generated
|
|
4556
5717
|
|
|
4557
5718
|
Example::
|
|
@@ -4560,136 +5721,66 @@ class CfnSubscriptionTargetProps:
|
|
|
4560
5721
|
# The values are placeholders you should change.
|
|
4561
5722
|
from aws_cdk import aws_datazone as datazone
|
|
4562
5723
|
|
|
4563
|
-
|
|
4564
|
-
applicable_asset_types=["applicableAssetTypes"],
|
|
4565
|
-
authorized_principals=["authorizedPrincipals"],
|
|
5724
|
+
cfn_user_profile_props = datazone.CfnUserProfileProps(
|
|
4566
5725
|
domain_identifier="domainIdentifier",
|
|
4567
|
-
|
|
4568
|
-
manage_access_role="manageAccessRole",
|
|
4569
|
-
name="name",
|
|
4570
|
-
subscription_target_config=[datazone.CfnSubscriptionTarget.SubscriptionTargetFormProperty(
|
|
4571
|
-
content="content",
|
|
4572
|
-
form_name="formName"
|
|
4573
|
-
)],
|
|
4574
|
-
type="type",
|
|
5726
|
+
user_identifier="userIdentifier",
|
|
4575
5727
|
|
|
4576
5728
|
# the properties below are optional
|
|
4577
|
-
|
|
5729
|
+
status="status",
|
|
5730
|
+
user_type="userType"
|
|
4578
5731
|
)
|
|
4579
5732
|
'''
|
|
4580
5733
|
if __debug__:
|
|
4581
|
-
type_hints = typing.get_type_hints(
|
|
4582
|
-
check_type(argname="argument applicable_asset_types", value=applicable_asset_types, expected_type=type_hints["applicable_asset_types"])
|
|
4583
|
-
check_type(argname="argument authorized_principals", value=authorized_principals, expected_type=type_hints["authorized_principals"])
|
|
5734
|
+
type_hints = typing.get_type_hints(_typecheckingstub__431134ef647ba94f8eb72ef3985b514bb86c42b53ca933a9fd51ea529bd0fec8)
|
|
4584
5735
|
check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
|
|
4585
|
-
check_type(argname="argument
|
|
4586
|
-
check_type(argname="argument
|
|
4587
|
-
check_type(argname="argument
|
|
4588
|
-
check_type(argname="argument subscription_target_config", value=subscription_target_config, expected_type=type_hints["subscription_target_config"])
|
|
4589
|
-
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
4590
|
-
check_type(argname="argument provider", value=provider, expected_type=type_hints["provider"])
|
|
5736
|
+
check_type(argname="argument user_identifier", value=user_identifier, expected_type=type_hints["user_identifier"])
|
|
5737
|
+
check_type(argname="argument status", value=status, expected_type=type_hints["status"])
|
|
5738
|
+
check_type(argname="argument user_type", value=user_type, expected_type=type_hints["user_type"])
|
|
4591
5739
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4592
|
-
"applicable_asset_types": applicable_asset_types,
|
|
4593
|
-
"authorized_principals": authorized_principals,
|
|
4594
5740
|
"domain_identifier": domain_identifier,
|
|
4595
|
-
"
|
|
4596
|
-
"manage_access_role": manage_access_role,
|
|
4597
|
-
"name": name,
|
|
4598
|
-
"subscription_target_config": subscription_target_config,
|
|
4599
|
-
"type": type,
|
|
5741
|
+
"user_identifier": user_identifier,
|
|
4600
5742
|
}
|
|
4601
|
-
if
|
|
4602
|
-
self._values["
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
def applicable_asset_types(self) -> typing.List[builtins.str]:
|
|
4606
|
-
'''The asset types included in the subscription target.
|
|
4607
|
-
|
|
4608
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-applicableassettypes
|
|
4609
|
-
'''
|
|
4610
|
-
result = self._values.get("applicable_asset_types")
|
|
4611
|
-
assert result is not None, "Required property 'applicable_asset_types' is missing"
|
|
4612
|
-
return typing.cast(typing.List[builtins.str], result)
|
|
4613
|
-
|
|
4614
|
-
@builtins.property
|
|
4615
|
-
def authorized_principals(self) -> typing.List[builtins.str]:
|
|
4616
|
-
'''The authorized principals included in the subscription target.
|
|
4617
|
-
|
|
4618
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-authorizedprincipals
|
|
4619
|
-
'''
|
|
4620
|
-
result = self._values.get("authorized_principals")
|
|
4621
|
-
assert result is not None, "Required property 'authorized_principals' is missing"
|
|
4622
|
-
return typing.cast(typing.List[builtins.str], result)
|
|
5743
|
+
if status is not None:
|
|
5744
|
+
self._values["status"] = status
|
|
5745
|
+
if user_type is not None:
|
|
5746
|
+
self._values["user_type"] = user_type
|
|
4623
5747
|
|
|
4624
5748
|
@builtins.property
|
|
4625
5749
|
def domain_identifier(self) -> builtins.str:
|
|
4626
|
-
'''The
|
|
5750
|
+
'''The identifier of the Amazon DataZone domain in which the user profile would be created.
|
|
4627
5751
|
|
|
4628
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-
|
|
5752
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html#cfn-datazone-userprofile-domainidentifier
|
|
4629
5753
|
'''
|
|
4630
5754
|
result = self._values.get("domain_identifier")
|
|
4631
5755
|
assert result is not None, "Required property 'domain_identifier' is missing"
|
|
4632
5756
|
return typing.cast(builtins.str, result)
|
|
4633
5757
|
|
|
4634
5758
|
@builtins.property
|
|
4635
|
-
def
|
|
4636
|
-
'''The ID of the
|
|
4637
|
-
|
|
4638
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-environmentidentifier
|
|
4639
|
-
'''
|
|
4640
|
-
result = self._values.get("environment_identifier")
|
|
4641
|
-
assert result is not None, "Required property 'environment_identifier' is missing"
|
|
4642
|
-
return typing.cast(builtins.str, result)
|
|
4643
|
-
|
|
4644
|
-
@builtins.property
|
|
4645
|
-
def manage_access_role(self) -> builtins.str:
|
|
4646
|
-
'''The manage access role that is used to create the subscription target.
|
|
4647
|
-
|
|
4648
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-manageaccessrole
|
|
4649
|
-
'''
|
|
4650
|
-
result = self._values.get("manage_access_role")
|
|
4651
|
-
assert result is not None, "Required property 'manage_access_role' is missing"
|
|
4652
|
-
return typing.cast(builtins.str, result)
|
|
4653
|
-
|
|
4654
|
-
@builtins.property
|
|
4655
|
-
def name(self) -> builtins.str:
|
|
4656
|
-
'''The name of the subscription target.
|
|
5759
|
+
def user_identifier(self) -> builtins.str:
|
|
5760
|
+
'''The ID of the user.
|
|
4657
5761
|
|
|
4658
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-
|
|
5762
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html#cfn-datazone-userprofile-useridentifier
|
|
4659
5763
|
'''
|
|
4660
|
-
result = self._values.get("
|
|
4661
|
-
assert result is not None, "Required property '
|
|
5764
|
+
result = self._values.get("user_identifier")
|
|
5765
|
+
assert result is not None, "Required property 'user_identifier' is missing"
|
|
4662
5766
|
return typing.cast(builtins.str, result)
|
|
4663
5767
|
|
|
4664
5768
|
@builtins.property
|
|
4665
|
-
def
|
|
4666
|
-
|
|
4667
|
-
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnSubscriptionTarget.SubscriptionTargetFormProperty]]]:
|
|
4668
|
-
'''The configuration of the subscription target.
|
|
4669
|
-
|
|
4670
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#cfn-datazone-subscriptiontarget-subscriptiontargetconfig
|
|
4671
|
-
'''
|
|
4672
|
-
result = self._values.get("subscription_target_config")
|
|
4673
|
-
assert result is not None, "Required property 'subscription_target_config' is missing"
|
|
4674
|
-
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnSubscriptionTarget.SubscriptionTargetFormProperty]]], result)
|
|
4675
|
-
|
|
4676
|
-
@builtins.property
|
|
4677
|
-
def type(self) -> builtins.str:
|
|
4678
|
-
'''The type of the subscription target.
|
|
5769
|
+
def status(self) -> typing.Optional[builtins.str]:
|
|
5770
|
+
'''The status of the user profile.
|
|
4679
5771
|
|
|
4680
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-
|
|
5772
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html#cfn-datazone-userprofile-status
|
|
4681
5773
|
'''
|
|
4682
|
-
result = self._values.get("
|
|
4683
|
-
|
|
4684
|
-
return typing.cast(builtins.str, result)
|
|
5774
|
+
result = self._values.get("status")
|
|
5775
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4685
5776
|
|
|
4686
5777
|
@builtins.property
|
|
4687
|
-
def
|
|
4688
|
-
'''The
|
|
5778
|
+
def user_type(self) -> typing.Optional[builtins.str]:
|
|
5779
|
+
'''The type of the user.
|
|
4689
5780
|
|
|
4690
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-
|
|
5781
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html#cfn-datazone-userprofile-usertype
|
|
4691
5782
|
'''
|
|
4692
|
-
result = self._values.get("
|
|
5783
|
+
result = self._values.get("user_type")
|
|
4693
5784
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
4694
5785
|
|
|
4695
5786
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
@@ -4699,7 +5790,7 @@ class CfnSubscriptionTargetProps:
|
|
|
4699
5790
|
return not (rhs == self)
|
|
4700
5791
|
|
|
4701
5792
|
def __repr__(self) -> str:
|
|
4702
|
-
return "
|
|
5793
|
+
return "CfnUserProfileProps(%s)" % ", ".join(
|
|
4703
5794
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
4704
5795
|
)
|
|
4705
5796
|
|
|
@@ -4715,10 +5806,16 @@ __all__ = [
|
|
|
4715
5806
|
"CfnEnvironmentProfile",
|
|
4716
5807
|
"CfnEnvironmentProfileProps",
|
|
4717
5808
|
"CfnEnvironmentProps",
|
|
5809
|
+
"CfnGroupProfile",
|
|
5810
|
+
"CfnGroupProfileProps",
|
|
4718
5811
|
"CfnProject",
|
|
5812
|
+
"CfnProjectMembership",
|
|
5813
|
+
"CfnProjectMembershipProps",
|
|
4719
5814
|
"CfnProjectProps",
|
|
4720
5815
|
"CfnSubscriptionTarget",
|
|
4721
5816
|
"CfnSubscriptionTargetProps",
|
|
5817
|
+
"CfnUserProfile",
|
|
5818
|
+
"CfnUserProfileProps",
|
|
4722
5819
|
]
|
|
4723
5820
|
|
|
4724
5821
|
publication.publish()
|
|
@@ -5295,6 +6392,56 @@ def _typecheckingstub__52cb17aae6cf0b0cbeef010a71f7f53573517f0a8e973b5881ae34c16
|
|
|
5295
6392
|
"""Type checking stubs"""
|
|
5296
6393
|
pass
|
|
5297
6394
|
|
|
6395
|
+
def _typecheckingstub__6bccafb3ac5ccb0c73cc0aaea6cf365a78e841d8d731ffbfa84165d7f8100f7a(
|
|
6396
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
6397
|
+
id: builtins.str,
|
|
6398
|
+
*,
|
|
6399
|
+
domain_identifier: builtins.str,
|
|
6400
|
+
group_identifier: builtins.str,
|
|
6401
|
+
status: typing.Optional[builtins.str] = None,
|
|
6402
|
+
) -> None:
|
|
6403
|
+
"""Type checking stubs"""
|
|
6404
|
+
pass
|
|
6405
|
+
|
|
6406
|
+
def _typecheckingstub__3064788268855f6623aaf3b52a7be17022b3d0c8d206428bb22e10d7bd9791de(
|
|
6407
|
+
inspector: _TreeInspector_488e0dd5,
|
|
6408
|
+
) -> None:
|
|
6409
|
+
"""Type checking stubs"""
|
|
6410
|
+
pass
|
|
6411
|
+
|
|
6412
|
+
def _typecheckingstub__66e617beac92ae83db2859cea30504a6e86d11714b8584d4212fe2f5634055e4(
|
|
6413
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
6414
|
+
) -> None:
|
|
6415
|
+
"""Type checking stubs"""
|
|
6416
|
+
pass
|
|
6417
|
+
|
|
6418
|
+
def _typecheckingstub__3bfce5f937e19aa12105a026759b48056e8cb9facac990d4a84ae9ebf754349a(
|
|
6419
|
+
value: builtins.str,
|
|
6420
|
+
) -> None:
|
|
6421
|
+
"""Type checking stubs"""
|
|
6422
|
+
pass
|
|
6423
|
+
|
|
6424
|
+
def _typecheckingstub__c4cfe59401594c99ca6ed491e080ab3526afa6a5fbfa200d918455779f2c060f(
|
|
6425
|
+
value: builtins.str,
|
|
6426
|
+
) -> None:
|
|
6427
|
+
"""Type checking stubs"""
|
|
6428
|
+
pass
|
|
6429
|
+
|
|
6430
|
+
def _typecheckingstub__489105c9239ff5a560f37a1c161dc9de12874e97ca98bb0ac4df8139e29b6727(
|
|
6431
|
+
value: typing.Optional[builtins.str],
|
|
6432
|
+
) -> None:
|
|
6433
|
+
"""Type checking stubs"""
|
|
6434
|
+
pass
|
|
6435
|
+
|
|
6436
|
+
def _typecheckingstub__4f4f2d05f4850cb07cd88e6e5af875d2c16fa3ae4bcbc384b9a51f7f0d0ca2e4(
|
|
6437
|
+
*,
|
|
6438
|
+
domain_identifier: builtins.str,
|
|
6439
|
+
group_identifier: builtins.str,
|
|
6440
|
+
status: typing.Optional[builtins.str] = None,
|
|
6441
|
+
) -> None:
|
|
6442
|
+
"""Type checking stubs"""
|
|
6443
|
+
pass
|
|
6444
|
+
|
|
5298
6445
|
def _typecheckingstub__2dd190e348e5421f499a11e44b2fb0c69295587e5e7717b13a56786a897efe7f(
|
|
5299
6446
|
scope: _constructs_77d1e7e8.Construct,
|
|
5300
6447
|
id: builtins.str,
|
|
@@ -5343,6 +6490,72 @@ def _typecheckingstub__ed99a8f1a094dd4883e961330ac91acc714a4a5fd200b2d53a52d4113
|
|
|
5343
6490
|
"""Type checking stubs"""
|
|
5344
6491
|
pass
|
|
5345
6492
|
|
|
6493
|
+
def _typecheckingstub__227cc3d5649ee98fd5579f9e1870652d6de5250e0390e91fec524565dc07c0b9(
|
|
6494
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
6495
|
+
id: builtins.str,
|
|
6496
|
+
*,
|
|
6497
|
+
designation: builtins.str,
|
|
6498
|
+
domain_identifier: builtins.str,
|
|
6499
|
+
member: typing.Union[_IResolvable_da3f097b, typing.Union[CfnProjectMembership.MemberProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
6500
|
+
project_identifier: builtins.str,
|
|
6501
|
+
) -> None:
|
|
6502
|
+
"""Type checking stubs"""
|
|
6503
|
+
pass
|
|
6504
|
+
|
|
6505
|
+
def _typecheckingstub__8e6a7791d79b9b8f15baba0f04bddbfa77afbfbdd8d2872a6e46acd2ccee79c4(
|
|
6506
|
+
inspector: _TreeInspector_488e0dd5,
|
|
6507
|
+
) -> None:
|
|
6508
|
+
"""Type checking stubs"""
|
|
6509
|
+
pass
|
|
6510
|
+
|
|
6511
|
+
def _typecheckingstub__e37a11438611477027ae5dde4a091dc361c7dc56ba7538221e222ef9083be907(
|
|
6512
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
6513
|
+
) -> None:
|
|
6514
|
+
"""Type checking stubs"""
|
|
6515
|
+
pass
|
|
6516
|
+
|
|
6517
|
+
def _typecheckingstub__71ec417c1a2abac8b6037b5bfedeb8520a3be4a0844d46c1862cb259465e45f7(
|
|
6518
|
+
value: builtins.str,
|
|
6519
|
+
) -> None:
|
|
6520
|
+
"""Type checking stubs"""
|
|
6521
|
+
pass
|
|
6522
|
+
|
|
6523
|
+
def _typecheckingstub__66d809e4462dc85243bcc1ab3799cc4a5180f2f4119683718081fa5f79530ac7(
|
|
6524
|
+
value: builtins.str,
|
|
6525
|
+
) -> None:
|
|
6526
|
+
"""Type checking stubs"""
|
|
6527
|
+
pass
|
|
6528
|
+
|
|
6529
|
+
def _typecheckingstub__50f6e6b64e6349a5c9d740955a9ccac88cf9da161bf02038bc9e12572958a93f(
|
|
6530
|
+
value: typing.Union[_IResolvable_da3f097b, CfnProjectMembership.MemberProperty],
|
|
6531
|
+
) -> None:
|
|
6532
|
+
"""Type checking stubs"""
|
|
6533
|
+
pass
|
|
6534
|
+
|
|
6535
|
+
def _typecheckingstub__da845d5c47de18f48a6a2e21aa5b41e5193d4b3faad962602fc4d3b98d677eb8(
|
|
6536
|
+
value: builtins.str,
|
|
6537
|
+
) -> None:
|
|
6538
|
+
"""Type checking stubs"""
|
|
6539
|
+
pass
|
|
6540
|
+
|
|
6541
|
+
def _typecheckingstub__2184a0c3aa18e8899e2cb70b944b79d781e689bd543ac2140e9176025c2fa864(
|
|
6542
|
+
*,
|
|
6543
|
+
group_identifier: typing.Optional[builtins.str] = None,
|
|
6544
|
+
user_identifier: typing.Optional[builtins.str] = None,
|
|
6545
|
+
) -> None:
|
|
6546
|
+
"""Type checking stubs"""
|
|
6547
|
+
pass
|
|
6548
|
+
|
|
6549
|
+
def _typecheckingstub__b25f4db16efa2b368a4cf197bdf102ccdf0c613db5654c1186f9404f9259e4d7(
|
|
6550
|
+
*,
|
|
6551
|
+
designation: builtins.str,
|
|
6552
|
+
domain_identifier: builtins.str,
|
|
6553
|
+
member: typing.Union[_IResolvable_da3f097b, typing.Union[CfnProjectMembership.MemberProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
6554
|
+
project_identifier: builtins.str,
|
|
6555
|
+
) -> None:
|
|
6556
|
+
"""Type checking stubs"""
|
|
6557
|
+
pass
|
|
6558
|
+
|
|
5346
6559
|
def _typecheckingstub__d519699f8d5d172880216006cab9e8c1595fc99339cf485d2be1f6c37bbc5a4c(
|
|
5347
6560
|
*,
|
|
5348
6561
|
domain_identifier: builtins.str,
|
|
@@ -5458,3 +6671,85 @@ def _typecheckingstub__0b970b38bc2b99a7ed3ef3830dfa5721ecc9ee442e5d627e01abfdcb2
|
|
|
5458
6671
|
) -> None:
|
|
5459
6672
|
"""Type checking stubs"""
|
|
5460
6673
|
pass
|
|
6674
|
+
|
|
6675
|
+
def _typecheckingstub__43948fd61004932aa31394de53e9c49e34aa425f3682404de5d5f6a249734d82(
|
|
6676
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
6677
|
+
id: builtins.str,
|
|
6678
|
+
*,
|
|
6679
|
+
domain_identifier: builtins.str,
|
|
6680
|
+
user_identifier: builtins.str,
|
|
6681
|
+
status: typing.Optional[builtins.str] = None,
|
|
6682
|
+
user_type: typing.Optional[builtins.str] = None,
|
|
6683
|
+
) -> None:
|
|
6684
|
+
"""Type checking stubs"""
|
|
6685
|
+
pass
|
|
6686
|
+
|
|
6687
|
+
def _typecheckingstub__62409db933bd1f83a26e4a296f90a5aa33de9e2cd9f82db4084d8f1cb0f382e4(
|
|
6688
|
+
inspector: _TreeInspector_488e0dd5,
|
|
6689
|
+
) -> None:
|
|
6690
|
+
"""Type checking stubs"""
|
|
6691
|
+
pass
|
|
6692
|
+
|
|
6693
|
+
def _typecheckingstub__bac3d345ed2cf85373ed12e71655921f20ce2575e0f95a05a3dd29cfa7e804e0(
|
|
6694
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
6695
|
+
) -> None:
|
|
6696
|
+
"""Type checking stubs"""
|
|
6697
|
+
pass
|
|
6698
|
+
|
|
6699
|
+
def _typecheckingstub__57dc87f9b5d4209a76a54e631bab548eddbecf73d3a0cb39b30030a99c20dbb8(
|
|
6700
|
+
value: builtins.str,
|
|
6701
|
+
) -> None:
|
|
6702
|
+
"""Type checking stubs"""
|
|
6703
|
+
pass
|
|
6704
|
+
|
|
6705
|
+
def _typecheckingstub__5bc695cbd1d290ebde7514044903060b533b99cd4f724f387512ffb614625693(
|
|
6706
|
+
value: builtins.str,
|
|
6707
|
+
) -> None:
|
|
6708
|
+
"""Type checking stubs"""
|
|
6709
|
+
pass
|
|
6710
|
+
|
|
6711
|
+
def _typecheckingstub__f391a63fdbc6b7a8aefbb3664fddfe91481bce941965f274ecad0166152935ce(
|
|
6712
|
+
value: typing.Optional[builtins.str],
|
|
6713
|
+
) -> None:
|
|
6714
|
+
"""Type checking stubs"""
|
|
6715
|
+
pass
|
|
6716
|
+
|
|
6717
|
+
def _typecheckingstub__9b560448b79c8df59777bf516743c73a776fe419d2c08183dd62546f1fc65ae4(
|
|
6718
|
+
value: typing.Optional[builtins.str],
|
|
6719
|
+
) -> None:
|
|
6720
|
+
"""Type checking stubs"""
|
|
6721
|
+
pass
|
|
6722
|
+
|
|
6723
|
+
def _typecheckingstub__3fd3b9b642370fd3593445a459418ba3df5f97586bee6446bed499fa533a4022(
|
|
6724
|
+
*,
|
|
6725
|
+
arn: typing.Optional[builtins.str] = None,
|
|
6726
|
+
) -> None:
|
|
6727
|
+
"""Type checking stubs"""
|
|
6728
|
+
pass
|
|
6729
|
+
|
|
6730
|
+
def _typecheckingstub__07963e9a65d43152452195ee221d80669fe4707d48ffd231ffc947c240448dbd(
|
|
6731
|
+
*,
|
|
6732
|
+
first_name: typing.Optional[builtins.str] = None,
|
|
6733
|
+
last_name: typing.Optional[builtins.str] = None,
|
|
6734
|
+
username: typing.Optional[builtins.str] = None,
|
|
6735
|
+
) -> None:
|
|
6736
|
+
"""Type checking stubs"""
|
|
6737
|
+
pass
|
|
6738
|
+
|
|
6739
|
+
def _typecheckingstub__1a1351a79d8a8cf0246c7e7591c1c0736de90dfd896392c833f9cb3530c63997(
|
|
6740
|
+
*,
|
|
6741
|
+
iam: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnUserProfile.IamUserProfileDetailsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6742
|
+
sso: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnUserProfile.SsoUserProfileDetailsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6743
|
+
) -> None:
|
|
6744
|
+
"""Type checking stubs"""
|
|
6745
|
+
pass
|
|
6746
|
+
|
|
6747
|
+
def _typecheckingstub__431134ef647ba94f8eb72ef3985b514bb86c42b53ca933a9fd51ea529bd0fec8(
|
|
6748
|
+
*,
|
|
6749
|
+
domain_identifier: builtins.str,
|
|
6750
|
+
user_identifier: builtins.str,
|
|
6751
|
+
status: typing.Optional[builtins.str] = None,
|
|
6752
|
+
user_type: typing.Optional[builtins.str] = None,
|
|
6753
|
+
) -> None:
|
|
6754
|
+
"""Type checking stubs"""
|
|
6755
|
+
pass
|