Interface CfnUser.NameProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUser.NameProperty.Jsii$Proxy
Enclosing class:
CfnUser

@Stability(Stable) public static interface CfnUser.NameProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.identitystore.*;
 NameProperty nameProperty = NameProperty.builder()
         .familyName("familyName")
         .formatted("formatted")
         .givenName("givenName")
         .honorificPrefix("honorificPrefix")
         .honorificSuffix("honorificSuffix")
         .middleName("middleName")
         .build();
 

See Also: