interface NameProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IdentityStore.CfnUserPropsMixin.NameProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsidentitystore#CfnUserPropsMixin_NameProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.identitystore.CfnUserPropsMixin.NameProperty |
Python | aws_cdk.cfn_property_mixins.aws_identitystore.CfnUserPropsMixin.NameProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_identitystore » CfnUserPropsMixin » 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/cfn-property-mixins';
const nameProperty: identitystore.CfnUserPropsMixin.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