Show / Hide Table of Contents

Interface CfnUserPropsMixin.IUserIdentityInfoProperty

Contains information about the identity of a user.

Namespace: Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnUserPropsMixin.IUserIdentityInfoProperty
Syntax (vb)
Public Interface CfnUserPropsMixin.IUserIdentityInfoProperty
Remarks
For Amazon Connect instances that are created with the <code>EXISTING_DIRECTORY</code> identity management type, <code>FirstName</code> , <code>LastName</code> , and <code>Email</code> cannot be updated from within Amazon Connect because they are managed by the directory. > The <code>FirstName</code> and <code>LastName</code> length constraints below apply only to instances using SAML for identity management. If you are using Amazon Connect for identity management, the length constraints are 1-255 for <code>FirstName</code> , and 1-256 for <code>LastName</code> .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-useridentityinfo.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins;

             var userIdentityInfoProperty = new UserIdentityInfoProperty {
                 Email = "email",
                 FirstName = "firstName",
                 LastName = "lastName",
                 Mobile = "mobile",
                 SecondaryEmail = "secondaryEmail"
             };

Synopsis

Properties

Email

The email address.

FirstName

The first name.

LastName

The last name.

Mobile

The user's mobile number.

SecondaryEmail

The user's secondary email address.

Properties

Email

The email address.

string? Email { get; }
Property Value

string

Remarks

If you are using SAML for identity management and include this parameter, an error is returned.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-useridentityinfo.html#cfn-connect-user-useridentityinfo-email

FirstName

The first name.

string? FirstName { get; }
Property Value

string

Remarks

This is required if you are using Amazon Connect or SAML for identity management. Inputs must be in Unicode Normalization Form C (NFC). Text containing characters in a non-NFC form (for example, decomposed characters or combining marks) are not accepted.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-useridentityinfo.html#cfn-connect-user-useridentityinfo-firstname

LastName

The last name.

string? LastName { get; }
Property Value

string

Remarks

This is required if you are using Amazon Connect or SAML for identity management. Inputs must be in Unicode Normalization Form C (NFC). Text containing characters in a non-NFC form (for example, decomposed characters or combining marks) are not accepted.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-useridentityinfo.html#cfn-connect-user-useridentityinfo-lastname

Mobile

The user's mobile number.

string? Mobile { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-useridentityinfo.html#cfn-connect-user-useridentityinfo-mobile

SecondaryEmail

The user's secondary email address.

string? SecondaryEmail { get; }
Property Value

string

Remarks

If you provide a secondary email, the user receives email notifications -- other than password reset notifications -- to this email address instead of to their primary email address.

Pattern : (?=^.{0,265}$)[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,63}

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-useridentityinfo.html#cfn-connect-user-useridentityinfo-secondaryemail

Back to top Generated by DocFX