Module Values.AwsTeamMemberSource

Represents an Amazon Web Services team member for the engagement. This structure includes details such as name, email, and business title.

Sourcetype nonrec t = {
  1. email : Email.t option;
    (*

    Provides the Amazon Web Services team member's email address.

    *)
  2. firstName : AwsTeamMemberFirstNameString.t option;
    (*

    Provides the Amazon Web Services team member's first name.

    *)
  3. lastName : AwsTeamMemberLastNameString.t option;
    (*

    Provides the Amazon Web Services team member's last name.

    *)
  4. businessTitle : AwsMemberBusinessTitle.t option;
    (*

    Specifies the Amazon Web Services team member's business title and indicates their organizational role.

    *)
}
Sourceval make : ?email:??? -> ?firstName:??? -> ?lastName:??? -> ?businessTitle:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Email.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