Module Values.UserStackAssociationSource

Describes a user in the user pool and the associated stack.

Sourcetype nonrec t = {
  1. stackName : String_.t;
    (*

    The name of the stack that is associated with the user.

    *)
  2. userName : Username.t;
    (*

    The email address of the user who is associated with the stack. Users' email addresses are case-sensitive.

    *)
  3. authenticationType : AuthenticationType.t;
    (*

    The authentication type for the user.

    *)
  4. sendEmailNotification : Boolean.t option;
    (*

    Specifies whether a welcome email is sent to a user after the user is created in the user pool.

    *)
}
Sourceval context_ : string
Sourceval make : ?sendEmailNotification:??? -> stackName:String_.t -> userName:Username.t -> authenticationType:AuthenticationType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of String_.t ]) 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