LoginProfile

Contains the user name and password create date for a user.

This data type is used as a response element in the CreateLoginProfile and GetLoginProfile operations.

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-loginprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LoginProfile",
  "title": "LoginProfile",
  "type": "object",
  "required": [
    "UserName",
    "CreateDate"
  ],
  "properties": {
    "UserName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/userNameType"
        },
        {
          "description": "The name of the user, which can be used for signing in to the Amazon Web Services Management Console."
        }
      ]
    },
    "CreateDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/dateType"
        },
        {
          "description": "The date when the password for the user was created."
        }
      ]
    },
    "PasswordResetRequired": {
      "allOf": [
        {
          "$ref": "#/components/schemas/booleanType"
        },
        {
          "description": "Specifies whether the user is required to set a new password on next sign-in."
        }
      ]
    }
  },
  "description": "<p>Contains the user name and password create date for a user.</p> <p> This data type is used as a response element in the <a>CreateLoginProfile</a> and <a>GetLoginProfile</a> operations. </p>"
}