UpdateLoginProfileRequest

APIs.ioEngineeringPlatform

Properties

Name Type Description
UserName object
Password object
PasswordResetRequired object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-updateloginprofilerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateLoginProfileRequest",
  "title": "UpdateLoginProfileRequest",
  "type": "object",
  "required": [
    "UserName"
  ],
  "properties": {
    "UserName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/userNameType"
        },
        {
          "description": "<p>The name of the user whose password you want to update.</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 specified IAM user.</p> <p>The <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a> used to validate this parameter is a string of characters consisting of the following:</p> <ul> <li> <p>Any printable ASCII character ranging from the space character (<code>\\u0020</code>) through the end of the ASCII character range</p> </li> <li> <p>The printable characters in the Basic Latin and Latin-1 Supplement character set (through <code>\\u00FF</code>)</p> </li> <li> <p>The special characters tab (<code>\\u0009</code>), line feed (<code>\\u000A</code>), and carriage return (<code>\\u000D</code>)</p> </li> </ul> <p>However, the format can be further restricted by the account administrator by setting a password policy on the Amazon Web Services account. For more information, see <a>UpdateAccountPasswordPolicy</a>.</p>"
        }
      ]
    },
    "PasswordResetRequired": {
      "allOf": [
        {
          "$ref": "#/components/schemas/booleanObjectType"
        },
        {
          "description": "Allows this new password to be used only once by requiring the specified IAM user to set a new password on next sign-in."
        }
      ]
    }
  }
}