AWSConnectCreateUserRequest

Objective-C

@interface AWSConnectCreateUserRequest

Swift

class AWSConnectCreateUserRequest
  • The identifier of the user account in the directory used for identity management. If Amazon Connect cannot access the directory, you can specify this identifier to authenticate users. If you include the identifier, we assume that Amazon Connect cannot access the directory. Otherwise, the identity information is used to authenticate users from your directory.

    This parameter is required if you are using an existing directory for identity management in Amazon Connect when Amazon Connect cannot access your directory to authenticate users. If you are using SAML for identity management and include this parameter, an error is returned.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable directoryUserId;

    Swift

    var directoryUserId: String? { get set }
  • The identifier of the hierarchy group for the user.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable hierarchyGroupId;

    Swift

    var hierarchyGroupId: String? { get set }
  • The information about the identity of the user.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSConnectUserIdentityInfo *_Nullable identityInfo;

    Swift

    var identityInfo: AWSConnectUserIdentityInfo? { get set }
  • The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable instanceId;

    Swift

    var instanceId: String? { get set }
  • The password for the user account. A password is required if you are using Amazon Connect for identity management. Otherwise, it is an error to include a password.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable password;

    Swift

    var password: String? { get set }
  • The phone settings for the user.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSConnectUserPhoneConfig *_Nullable phoneConfig;

    Swift

    var phoneConfig: AWSConnectUserPhoneConfig? { get set }
  • The identifier of the routing profile for the user.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable routingProfileId;

    Swift

    var routingProfileId: String? { get set }
  • The identifier of the security profile for the user.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable securityProfileIds;

    Swift

    var securityProfileIds: [String]? { get set }
  • The tags used to organize, track, or control access for this resource. For example, { “Tags”: {“key1”:“value1”, “key2”:“value2”} }.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable tags;

    Swift

    var tags: [String : String]? { get set }
  • The user name for the account. For instances not using SAML for identity management, the user name can include up to 20 characters. If you are using SAML for identity management, the user name can include up to 64 characters from [a-zA-Z0-9_-.\@]+.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable username;

    Swift

    var username: String? { get set }