interface UserProfileDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnUserProfile.UserProfileDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnUserProfile_UserProfileDetailsProperty |
Java | software.amazon.awscdk.services.datazone.CfnUserProfile.UserProfileDetailsProperty |
Python | aws_cdk.aws_datazone.CfnUserProfile.UserProfileDetailsProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnUserProfile » UserProfileDetailsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from 'aws-cdk-lib';
const userProfileDetailsProperty: datazone.CfnUserProfile.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