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.
Namespace: Amazon.IdentityManagement.Model
Assembly: AWSSDK.IdentityManagement.dll
Version: 3.x.y.z
public class GetLoginProfileRequest : AmazonIdentityManagementServiceRequest IAmazonWebServiceRequest
The GetLoginProfileRequest type exposes the following members
| Name | Description | |
|---|---|---|
|
GetLoginProfileRequest() |
Empty constructor used to set properties independently even when a simple constructor is available |
|
GetLoginProfileRequest(string) |
Instantiates GetLoginProfileRequest with the parameterized properties |
| Name | Type | Description | |
|---|---|---|---|
|
UserName | System.String |
Gets and sets the property UserName. The name of the user whose login profile you want to retrieve. 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 gets information about the password for the IAM user named Anika.
var client = new AmazonIdentityManagementServiceClient();
var response = client.GetLoginProfile(new GetLoginProfileRequest
{
UserName = "Anika"
});
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