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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUser.NamePropertystatic final classAn implementation forCfnUser.NameProperty -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnUser.NameProperty.Builderbuilder()default StringThe family name of the user.default StringA string containing a formatted version of the name for display.default StringThe given name of the user.default StringThe honorific prefix of the user.default StringThe honorific suffix of the user.default StringThe middle name of the user.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFamilyName
The family name of the user.- See Also:
-
getFormatted
A string containing a formatted version of the name for display.- See Also:
-
getGivenName
The given name of the user.- See Also:
-
getHonorificPrefix
The honorific prefix of the user.- See Also:
-
getHonorificSuffix
The honorific suffix of the user.- See Also:
-
getMiddleName
The middle name of the user.- See Also:
-
builder
- Returns:
- a
CfnUser.NameProperty.BuilderofCfnUser.NameProperty
-