interface SsoUserProfileDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnUserProfilePropsMixin.SsoUserProfileDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnUserProfilePropsMixin_SsoUserProfileDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnUserProfilePropsMixin.SsoUserProfileDetailsProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnUserProfilePropsMixin.SsoUserProfileDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnUserProfilePropsMixin » 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 { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const ssoUserProfileDetailsProperty: datazone_mixins.CfnUserProfilePropsMixin.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