CfnUserProfilePropsMixin

class aws_cdk.mixins_preview.aws_datazone.mixins.CfnUserProfilePropsMixin(props, *, strategy=None)

Bases: Mixin

The 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:

IConstruct

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 x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental

IamUserProfileDetailsProperty

class CfnUserProfilePropsMixin.IamUserProfileDetailsProperty(*, arn=None)

Bases: object

The details of the IAM User Profile.

Parameters:

arn (Optional[str]) – The ARN of the IAM User Profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-iamuserprofiledetails.html

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

arn

The ARN of the IAM User Profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-iamuserprofiledetails.html#cfn-datazone-userprofile-iamuserprofiledetails-arn

SsoUserProfileDetailsProperty

class CfnUserProfilePropsMixin.SsoUserProfileDetailsProperty(*, first_name=None, last_name=None, username=None)

Bases: object

The 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-ssouserprofiledetails.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-ssouserprofiledetails.html#cfn-datazone-userprofile-ssouserprofiledetails-firstname

last_name

The Last Name of the IAM User Profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-ssouserprofiledetails.html#cfn-datazone-userprofile-ssouserprofiledetails-lastname

username

The username of the SSO User Profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-ssouserprofiledetails.html#cfn-datazone-userprofile-ssouserprofiledetails-username

UserProfileDetailsProperty

class CfnUserProfilePropsMixin.UserProfileDetailsProperty(*, iam=None, sso=None)

Bases: object

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.html#cfn-datazone-userprofile-userprofiledetails-iam

sso

The details of the SSO User Profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.html#cfn-datazone-userprofile-userprofiledetails-sso