interface SsoUserProfileDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnUserProfile.SsoUserProfileDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnUserProfile_SsoUserProfileDetailsProperty |
Java | software.amazon.awscdk.services.datazone.CfnUserProfile.SsoUserProfileDetailsProperty |
Python | aws_cdk.aws_datazone.CfnUserProfile.SsoUserProfileDetailsProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnUserProfile » SsoUserProfileDetailsProperty |
The details of the SSO User Profile.
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 ssoUserProfileDetailsProperty: datazone.CfnUserProfile.SsoUserProfileDetailsProperty = {
firstName: 'firstName',
lastName: 'lastName',
username: 'username',
};
Properties
| Name | Type | Description |
|---|---|---|
| first | string | The First Name of the IAM User Profile. |
| last | string | The Last Name of the IAM User Profile. |
| username? | string | The username of the SSO User Profile. |
firstName?
Type:
string
(optional)
The First Name of the IAM User Profile.
lastName?
Type:
string
(optional)
The Last Name of the IAM User Profile.
username?
Type:
string
(optional)
The username of the SSO User Profile.

.NET
Go
Java
Python
TypeScript