Admin Create User
cognitoidentityprovider_admin_create_user | R Documentation |
Creates a new user in the specified user pool¶
Description¶
Creates a new user in the specified user pool.
If MessageAction
isn't set, the default is to send a welcome message
via email or phone (SMS).
This action might generate an SMS text message. Starting June 1, 2021, US telecom carriers require you to register an origination phone number before you can send SMS messages to US phone numbers. If you use SMS text messages in Amazon Cognito, you must register a phone number with Amazon Pinpoint. Amazon Cognito uses the registered number automatically. Otherwise, Amazon Cognito users who must receive SMS messages might not be able to sign up, activate their accounts, or sign in.
If you have never used SMS text messages with Amazon Cognito or any other Amazon Web Services service, Amazon Simple Notification Service might place your account in the SMS sandbox. In sandbox mode , you can send messages only to verified phone numbers. After you test your app while in the sandbox environment, you can move out of the sandbox and into production. For more information, see SMS message settings for Amazon Cognito user pools in the Amazon Cognito Developer Guide.
This message is based on a template that you configured in your call to create or update a user pool. This template includes your custom sign-up instructions and placeholders for user name and temporary password.
Alternatively, you can call admin_create_user
with SUPPRESS
for the
MessageAction
parameter, and Amazon Cognito won't send any email.
In either case, if the user has a password, they will be in the
FORCE_CHANGE_PASSWORD
state until they sign in and set their password.
Your invitation message template must have the {####}
password
placeholder if your users have passwords. If your template doesn't have
this placeholder, Amazon Cognito doesn't deliver the invitation message.
In this case, you must update your message template and resend the
password with a new admin_create_user
request with a MessageAction
value of RESEND
.
Amazon Cognito evaluates Identity and Access Management (IAM) policies in requests for this API operation. For this operation, you must use IAM credentials to authorize requests, and you must grant yourself the corresponding IAM permission in a policy.
Learn more
Usage¶
cognitoidentityprovider_admin_create_user(UserPoolId, Username,
UserAttributes, ValidationData, TemporaryPassword, ForceAliasCreation,
MessageAction, DesiredDeliveryMediums, ClientMetadata)
Arguments¶
UserPoolId |
[required] The ID of the user pool where you want to create a user. |
Username |
[required] The value that you want to set as the username sign-in attribute. The following conditions apply to the username parameter.
|
UserAttributes |
An array of name-value pairs that contain user attributes and
attribute values to be set for the user to be created. You can create a
user without specifying any attributes other than For custom attributes, you must prepend the To send a message inviting the user to sign up, you must specify the user's email address or phone number. You can do this in your call to AdminCreateUser or in the Users tab of the Amazon Cognito console for managing your user pools. You must also provide an email address or phone number when you
expect the user to do passwordless sign-in with an email or SMS OTP.
These attributes must be provided when passwordless options are the only
available, or when you don't submit a
In your call to
|
ValidationData |
Temporary user attributes that contribute to the outcomes of your pre sign-up Lambda trigger. This set of key-value pairs are for custom validation of information that you collect from your users but don't need to retain. Your Lambda function can analyze this additional data and act on it. Your function might perform external API operations like logging user attributes and validation data to Amazon CloudWatch Logs. Validation data might also affect the response that your function returns to Amazon Cognito, like automatically confirming the user if they sign up from within your network. For more information about the pre sign-up Lambda trigger, see Pre sign-up Lambda trigger. |
TemporaryPassword |
The user's temporary password. This password must conform to the password policy that you specified when you created the user pool. The exception to the requirement for a password is when your user
pool supports passwordless sign-in with email or SMS OTPs. To create a
user with no password, omit this parameter or submit a blank value. You
can only create a passwordless user when passwordless sign-in is
available. See the
SignInPolicyType property of The temporary password is valid only once. To complete the Admin Create User flow, the user must enter the temporary password in the sign-in page, along with a new password to be used in all future sign-ins. If you don't specify a value, Amazon Cognito generates one for you unless you have passwordless options active for your user pool. The temporary password can only be used until the user account
expiration limit that you set for your user pool. To reset the account
after that time limit, you must call |
ForceAliasCreation |
This parameter is used only if the
If this parameter is set to If this parameter is set to |
MessageAction |
Set to |
DesiredDeliveryMediums |
Specify |
ClientMetadata |
A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers. You create custom workflows by assigning Lambda functions to user
pool triggers. When you use the AdminCreateUser API action, Amazon
Cognito invokes the function that is assigned to the pre
sign-up trigger. When Amazon Cognito invokes this function, it
passes a JSON payload, which the function receives as input. This
payload contains a For more information, see Customizing user pool Workflows with Lambda Triggers in the Amazon Cognito Developer Guide. When you use the
|
Value¶
A list with the following syntax:
list(
User = list(
Username = "string",
Attributes = list(
list(
Name = "string",
Value = "string"
)
),
UserCreateDate = as.POSIXct(
"2015-01-01"
),
UserLastModifiedDate = as.POSIXct(
"2015-01-01"
),
Enabled = TRUE|FALSE,
UserStatus = "UNCONFIRMED"|"CONFIRMED"|"ARCHIVED"|"COMPROMISED"|"UNKNOWN"|"RESET_REQUIRED"|"FORCE_CHANGE_PASSWORD"|"EXTERNAL_PROVIDER",
MFAOptions = list(
list(
DeliveryMedium = "SMS"|"EMAIL",
AttributeName = "string"
)
)
)
)
Request syntax¶
svc$admin_create_user(
UserPoolId = "string",
Username = "string",
UserAttributes = list(
list(
Name = "string",
Value = "string"
)
),
ValidationData = list(
list(
Name = "string",
Value = "string"
)
),
TemporaryPassword = "string",
ForceAliasCreation = TRUE|FALSE,
MessageAction = "RESEND"|"SUPPRESS",
DesiredDeliveryMediums = list(
"SMS"|"EMAIL"
),
ClientMetadata = list(
"string"
)
)