AWS SDK Version 3 for .NET
API Reference

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.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.IdentityManagement.AmazonIdentityManagementServiceRequest
      Amazon.IdentityManagement.Model.CreateLoginProfileRequest

Namespace: Amazon.IdentityManagement.Model
Assembly: AWSSDK.IdentityManagement.dll
Version: 3.x.y.z

Syntax

C#
public class CreateLoginProfileRequest : AmazonIdentityManagementServiceRequest
         IAmazonWebServiceRequest

The CreateLoginProfileRequest type exposes the following members

Constructors

NameDescription
Public Method CreateLoginProfileRequest()

Empty constructor used to set properties independently even when a simple constructor is available

Public Method CreateLoginProfileRequest(string, string)

Instantiates CreateLoginProfileRequest with the parameterized properties

Properties

NameTypeDescription
Public Property Password System.String

Gets and sets the property Password.

The new password for the user.

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 (\u0020) through the end of the ASCII character range (\u00FF). You can also include the tab (\u0009), line feed (\u000A), and carriage return (\u000D) characters. Any of these characters are valid in a password. However, many tools, such as the Amazon Web Services Management Console, might restrict the ability to type certain characters because they have special meaning within that tool.

Public Property PasswordResetRequired System.Boolean

Gets and sets the property PasswordResetRequired.

Specifies whether the user is required to set a new password on next sign-in.

Public Property 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 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: _+=,.@-

Examples

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.

To create an instance profile


var client = new AmazonIdentityManagementServiceClient();
var response = client.CreateLoginProfile(new CreateLoginProfileRequest 
{
    Password = "h]6EszR}vJ*m",
    PasswordResetRequired = true,
    UserName = "Bob"
});

LoginProfile loginProfile = response.LoginProfile;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5