Module Values.ApplicationAssignmentSource

A structure that describes an assignment of a principal to an application.

Sourcetype nonrec t = {
  1. applicationArn : ApplicationArn.t option;
    (*

    The ARN of the application that has principals assigned.

    *)
  2. principalId : PrincipalId.t option;
    (*

    The unique identifier of the principal assigned to the application.

    *)
  3. principalType : PrincipalType.t option;
    (*

    The type of the principal assigned to the application.

    *)
}
Sourceval make : ?applicationArn:??? -> ?principalId:??? -> ?principalType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ApplicationArn.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