interface NameProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IdentityStore.CfnUser.NameProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsidentitystore#CfnUser_NameProperty |
Java | software.amazon.awscdk.services.identitystore.CfnUser.NameProperty |
Python | aws_cdk.aws_identitystore.CfnUser.NameProperty |
TypeScript | aws-cdk-lib » aws_identitystore » CfnUser » NameProperty |
The name of the user.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_identitystore as identitystore } from 'aws-cdk-lib';
const nameProperty: identitystore.CfnUser.NameProperty = {
familyName: 'familyName',
formatted: 'formatted',
givenName: 'givenName',
honorificPrefix: 'honorificPrefix',
honorificSuffix: 'honorificSuffix',
middleName: 'middleName',
};
Properties
| Name | Type | Description |
|---|---|---|
| family | string | The family name of the user. |
| formatted? | string | A string containing a formatted version of the name for display. |
| given | string | The given name of the user. |
| honorific | string | The honorific prefix of the user. |
| honorific | string | The honorific suffix of the user. |
| middle | string | The middle name of the user. |
familyName?
Type:
string
(optional)
The family name of the user.
formatted?
Type:
string
(optional)
A string containing a formatted version of the name for display.
givenName?
Type:
string
(optional)
The given name of the user.
honorificPrefix?
Type:
string
(optional)
The honorific prefix of the user.
honorificSuffix?
Type:
string
(optional)
The honorific suffix of the user.
middleName?
Type:
string
(optional)
The middle name of the user.

.NET
Go
Java
Python
TypeScript