CreateUserRequest
public struct CreateUserRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
Declaration
Swift
public let authenticationToken: String?
-
The email address of the user.
Declaration
Swift
public let emailAddress: String?
-
The given name of the user.
Declaration
Swift
public let givenName: String
-
The ID of the organization.
Declaration
Swift
public let organizationId: String?
-
The password of the user.
Declaration
Swift
public let password: String
-
The amount of storage for the user.
Declaration
Swift
public let storageRule: StorageRuleType?
-
The surname of the user.
Declaration
Swift
public let surname: String
-
The time zone ID of the user.
Declaration
Swift
public let timeZoneId: String?
-
The login name of the user.
Declaration
Swift
public let username: String
-
init(authenticationToken:emailAddress:givenName:organizationId:password:storageRule:surname:timeZoneId:username:)
Undocumented
Declaration
Swift
public init(authenticationToken: String? = nil, emailAddress: String? = nil, givenName: String, organizationId: String? = nil, password: String, storageRule: StorageRuleType? = nil, surname: String, timeZoneId: String? = nil, username: String)
-
Declaration
Swift
public func validate(name: String) throws