CfnUserProfilePropsMixin
- class aws_cdk.mixins_preview.aws_datazone.mixins.CfnUserProfilePropsMixin(props, *, strategy=None)
Bases:
MixinThe user type of the user for which the user profile is created.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html
- CloudformationResource:
AWS::DataZone::UserProfile
- Mixin:
true
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview import mixins from aws_cdk.mixins_preview.aws_datazone import mixins as datazone_mixins cfn_user_profile_props_mixin = datazone_mixins.CfnUserProfilePropsMixin(datazone_mixins.CfnUserProfileMixinProps( domain_identifier="domainIdentifier", status="status", user_identifier="userIdentifier", user_type="userType" ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::DataZone::UserProfile.- Parameters:
props (
Union[CfnUserProfileMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['domainIdentifier', 'status', 'userIdentifier', 'userType']
Static Methods
- classmethod is_mixin(x)
(experimental) Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
IamUserProfileDetailsProperty
- class CfnUserProfilePropsMixin.IamUserProfileDetailsProperty(*, arn=None)
Bases:
objectThe details of the IAM User Profile.
- Parameters:
arn (
Optional[str]) – The ARN of the IAM User Profile.- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_datazone import mixins as datazone_mixins iam_user_profile_details_property = datazone_mixins.CfnUserProfilePropsMixin.IamUserProfileDetailsProperty( arn="arn" )
Attributes
SsoUserProfileDetailsProperty
- class CfnUserProfilePropsMixin.SsoUserProfileDetailsProperty(*, first_name=None, last_name=None, username=None)
Bases:
objectThe details of the SSO User Profile.
- Parameters:
first_name (
Optional[str]) – The First Name of the IAM User Profile.last_name (
Optional[str]) – The Last Name of the IAM User Profile.username (
Optional[str]) – The username of the SSO User Profile.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_datazone import mixins as datazone_mixins sso_user_profile_details_property = datazone_mixins.CfnUserProfilePropsMixin.SsoUserProfileDetailsProperty( first_name="firstName", last_name="lastName", username="username" )
Attributes
- first_name
The First Name of the IAM User Profile.
- last_name
The Last Name of the IAM User Profile.
- username
The username of the SSO User Profile.
UserProfileDetailsProperty
- class CfnUserProfilePropsMixin.UserProfileDetailsProperty(*, iam=None, sso=None)
Bases:
object- Parameters:
iam (
Union[IResolvable,IamUserProfileDetailsProperty,Dict[str,Any],None]) – The details of the IAM User Profile.sso (
Union[IResolvable,SsoUserProfileDetailsProperty,Dict[str,Any],None]) – The details of the SSO User Profile.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_datazone import mixins as datazone_mixins user_profile_details_property = datazone_mixins.CfnUserProfilePropsMixin.UserProfileDetailsProperty( iam=datazone_mixins.CfnUserProfilePropsMixin.IamUserProfileDetailsProperty( arn="arn" ), sso=datazone_mixins.CfnUserProfilePropsMixin.SsoUserProfileDetailsProperty( first_name="firstName", last_name="lastName", username="username" ) )
Attributes
- iam
The details of the IAM User Profile.
- sso
The details of the SSO User Profile.