interface UserProfileDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnUserProfilePropsMixin.UserProfileDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnUserProfilePropsMixin_UserProfileDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnUserProfilePropsMixin.UserProfileDetailsProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnUserProfilePropsMixin.UserProfileDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnUserProfilePropsMixin » UserProfileDetailsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const userProfileDetailsProperty: datazone_mixins.CfnUserProfilePropsMixin.UserProfileDetailsProperty = {
iam: {
arn: 'arn',
},
sso: {
firstName: 'firstName',
lastName: 'lastName',
username: 'username',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| iam? | IResolvable | Iam | The details of the IAM User Profile. |
| sso? | IResolvable | Sso | The details of the SSO User Profile. |
iam?
Type:
IResolvable | Iam
(optional)
The details of the IAM User Profile.
sso?
Type:
IResolvable | Sso
(optional)
The details of the SSO User Profile.

.NET
Go
Java
Python
TypeScript