C# Класс Amazon.IdentityManagement.Model.CreateLoginProfileRequest

Container for the parameters to the CreateLoginProfile operation.

Creates a login profile for the specified User, giving the User the ability to access AWS services such as the AWS Management Console. For more information about login profiles, see Managing Login Profiles and MFA Devices in Using AWS Identity and Access Management.

NOTE:In the full release you will be able to use IAM to access your services through the AWS Management Console. Although this feature is not currently available, you can create login profiles for your Users now. Then, when this feature is implemented, your Users can use IAM to access your services through the AWS Management Console.

Наследование: Amazon.Runtime.AmazonWebServiceRequest
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
CreateLoginProfileRequest ( ) : System

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

CreateLoginProfileRequest ( string userName, string password ) : System

Instantiates CreateLoginProfileRequest with the parameterized properties

Приватные методы

Метод Описание
IsSetPassword ( ) : bool
IsSetPasswordResetRequired ( ) : bool
IsSetUserName ( ) : bool

Описание методов

CreateLoginProfileRequest() публичный Метод

Empty constructor used to set properties independently even when a simple constructor is available
public CreateLoginProfileRequest ( ) : System
Результат System

CreateLoginProfileRequest() публичный Метод

Instantiates CreateLoginProfileRequest with the parameterized properties
public CreateLoginProfileRequest ( string userName, string password ) : System
userName string The name of the IAM user to create a password for. The user must already exist. This parameter allows (per 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: =,.@-
password string The new password for the user. This parameter allows (per its regex pattern) a string of characters consisting of 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. Although any of these characters are valid in a password, note that many tools, such as the AWS Management Console, might restrict the ability to enter certain characters because they have special meaning within that tool.
Результат System