OBJECT
LoginUser
Represents a User in EchoStream that can log into the EchoStream UI.
link GraphQL Schema definition
- type LoginUser {
- # The date/time that the LoginUser became active.
- : AWSDateTime
- # When and who created.
- : AtBy!
- # The email address.
- : AWSEmail!
- # The first name.
- : String!
- # When and who modified.
- : AtBy!
- # The last name.
- : String!
- # A list of TenantUsers linked to this LoginUser.
- : [TenantUser!]
- # Deletes this.
- : Boolean!
- # Update and return the LoginUser.
- #
- # Arguments
- # firstName: The first name.
- # lastName: The last name.
- (: String, : String): LoginUser!
- }