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 GetLoginProfile operation. Retrieves the user name for the specified IAM user. A login profile is created when you create a password for the user to access the Amazon Web Services Management Console. If the user does not exist or does not have a password, the operation returns a 404 (NoSuchEntity) error.

If you create an IAM user with access to the console, the CreateDate reflects the date you created the initial password for the user.

If you create an IAM user with programmatic access, and then later add a password for the user to access the Amazon Web Services Management Console, the CreateDate reflects the initial password creation date. A user with programmatic access does not have a login profile unless you create a password for the user to access the Amazon Web Services Management Console.

Inheritance Hierarchy

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

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

Syntax

C#
public class GetLoginProfileRequest : AmazonIdentityManagementServiceRequest
         IAmazonWebServiceRequest

The GetLoginProfileRequest type exposes the following members

Constructors

NameDescription
Public Method GetLoginProfileRequest()

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

Public Method GetLoginProfileRequest(string)

Instantiates GetLoginProfileRequest with the parameterized properties

Properties

NameTypeDescription
Public Property UserName System.String

Gets and sets the property UserName.

The name of the user whose login profile you want to retrieve.

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 gets information about the password for the IAM user named Anika.

To get password information for an IAM user


var client = new AmazonIdentityManagementServiceClient();
var response = client.GetLoginProfile(new GetLoginProfileRequest 
{
    UserName = "Anika"
});

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