public static interface CfnUser.UserIdentityInfoProperty
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.connect.*; UserIdentityInfoProperty userIdentityInfoProperty = UserIdentityInfoProperty.builder() .email("email") .firstName("firstName") .lastName("lastName") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnUser.UserIdentityInfoProperty.Builder
A builder for
CfnUser.UserIdentityInfoProperty |
static class |
CfnUser.UserIdentityInfoProperty.Jsii$Proxy
An implementation for
CfnUser.UserIdentityInfoProperty |
Modifier and Type | Method and Description |
---|---|
static CfnUser.UserIdentityInfoProperty.Builder |
builder() |
default java.lang.String |
getEmail()
The email address.
|
default java.lang.String |
getFirstName()
The first name.
|
default java.lang.String |
getLastName()
The last name.
|
default java.lang.String getEmail()
If you are using SAML for identity management and include this parameter, an error is returned.
default java.lang.String getFirstName()
This is required if you are using Amazon Connect or SAML for identity management.
default java.lang.String getLastName()
This is required if you are using Amazon Connect or SAML for identity management.
static CfnUser.UserIdentityInfoProperty.Builder builder()