Module Values.ApplicationInfoSource

Information about an application.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t option;
    (*

    The application ID.

    *)
  2. applicationName : ApplicationName.t option;
    (*

    The application name.

    *)
  3. createTime : Timestamp.t option;
    (*

    The time at which the application was created.

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

    True if the user has authenticated with GitHub for the specified application. Otherwise, false.

    *)
  5. gitHubAccountName : GitHubAccountTokenName.t option;
    (*

    The name for a connection to a GitHub account.

    *)
  6. computePlatform : ComputePlatform.t option;
    (*

    The destination platform type for deployment of the application (Lambda or Server).

    *)
}
Sourceval make : ?applicationId:??? -> ?applicationName:??? -> ?createTime:??? -> ?linkedToGitHub:??? -> ?gitHubAccountName:??? -> ?computePlatform:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of ApplicationId.t | `Timestamp of Timestamp.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