Properties
| Name | Type | Description |
|---|---|---|
| UserName | object | |
| Password | object | |
| PasswordResetRequired | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateLoginProfileRequest",
"title": "CreateLoginProfileRequest",
"type": "object",
"required": [
"UserName",
"Password"
],
"properties": {
"UserName": {
"allOf": [
{
"$ref": "#/components/schemas/userNameType"
},
{
"description": "<p>The name of the IAM user to create a password for. The user must already exist.</p> <p>This parameter allows (through its <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a>) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-</p>"
}
]
},
"Password": {
"allOf": [
{
"$ref": "#/components/schemas/passwordType"
},
{
"description": "<p>The new password for the user.</p> <p>The <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a> that is used to validate this parameter is a string of characters. That string can include almost any printable ASCII character from the space (<code>\\u0020</code>) through the end of the ASCII character range (<code>\\u00FF</code>). You can also include the tab (<code>\\u0009</code>), line feed (<code>\\u000A</code>), and carriage return (<code>\\u000D</code>) 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.</p>"
}
]
},
"PasswordResetRequired": {
"allOf": [
{
"$ref": "#/components/schemas/booleanType"
},
{
"description": "Specifies whether the user is required to set a new password on next sign-in."
}
]
}
}
}