{ "$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": "

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.

" }