Module Values.UserStackAssociationErrorSource

Describes the error that is returned when a user can’t be associated with or disassociated from a stack.

Sourcetype nonrec t = {
  1. userStackAssociation : UserStackAssociation.t option;
    (*

    Information about the user and associated stack.

    *)
  2. errorCode : UserStackAssociationErrorCode.t option;
    (*

    The error code for the error that is returned when a user can’t be associated with or disassociated from a stack.

    *)
  3. errorMessage : String_.t option;
    (*

    The error message for the error that is returned when a user can’t be associated with or disassociated from a stack.

    *)
}
Sourceval make : ?userStackAssociation:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of String_.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t