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.

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.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to GetLoginProfileAsync.

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

Syntax

C#
public virtual GetLoginProfileResponse GetLoginProfile(
         GetLoginProfileRequest request
)

Parameters

request
Type: Amazon.IdentityManagement.Model.GetLoginProfileRequest

Container for the necessary parameters to execute the GetLoginProfile service method.

Return Value


The response from the GetLoginProfile service method, as returned by IdentityManagementService.

Exceptions

ExceptionCondition
NoSuchEntityException The request was rejected because it referenced a resource entity that does not exist. The error message describes the resource.
ServiceFailureException The request processing has failed because of an unknown error, exception or failure.

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 Framework:
Supported in: 4.5, 4.0, 3.5

See Also