AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Container for the parameters to the CreateLoginProfile operation. Creates a password for the specified IAM user. A password allows an IAM user to access Amazon Web Services services through the Amazon Web Services Management Console.
You can use the CLI, the Amazon Web Services API, or the Users page in the IAM console to create a password for any IAM user. Use ChangePassword to update your own existing password in the My Security Credentials page in the Amazon Web Services Management Console.
For more information about managing passwords, see Managing passwords in the IAM User Guide.
Namespace: Amazon.IdentityManagement.Model
Assembly: AWSSDK.IdentityManagement.dll
Version: 3.x.y.z
public class CreateLoginProfileRequest : AmazonIdentityManagementServiceRequest IAmazonWebServiceRequest
The CreateLoginProfileRequest type exposes the following members
| Name | Description | |
|---|---|---|
|
CreateLoginProfileRequest() |
Empty constructor used to set properties independently even when a simple constructor is available |
|
CreateLoginProfileRequest(string, string) |
Instantiates CreateLoginProfileRequest with the parameterized properties |
| Name | Type | Description | |
|---|---|---|---|
|
Password | System.String |
Gets and sets the property Password. The new password for the user. This parameter must be omitted when you make the request with an AssumeRoot session. It is required in all other cases.
The regex pattern that is used to validate
this parameter is a string of characters. That string can include almost any printable
ASCII character from the space ( |
|
PasswordResetRequired | System.Boolean |
Gets and sets the property PasswordResetRequired. Specifies whether the user is required to set a new password on next sign-in. |
|
UserName | System.String |
Gets and sets the property UserName. The name of the IAM user to create a password for. The user must already exist. This parameter is optional. If no user name is included, it defaults to the principal making the request. When you make this request with root user credentials, you must use an AssumeRoot session to omit the user name. This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- |
The following command changes IAM user Bob's password and sets the flag that required Bob to change the password the next time he signs in.
var client = new AmazonIdentityManagementServiceClient();
var response = client.CreateLoginProfile(new CreateLoginProfileRequest
{
Password = "h]6EszR}vJ*m",
PasswordResetRequired = true,
UserName = "Bob"
});
LoginProfile loginProfile = response.LoginProfile;
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5