Module Values.DescribeAppOutputSource

Returns the state of the given custom app.

Sourcetype nonrec t = {
  1. description : Description.t option;
    (*

    The description of the app.

    *)
  2. domain : SimSpaceWeaverResourceName.t option;
    (*

    The name of the domain of the app.

    *)
  3. endpointInfo : SimulationAppEndpointInfo.t option;
    (*

    Information about the network endpoint for the custom app. You can use the endpoint to connect to the custom app.

    *)
  4. launchOverrides : LaunchOverrides.t option;
  5. name : SimSpaceWeaverLongResourceName.t option;
    (*

    The name of the app.

    *)
  6. simulation : SimSpaceWeaverResourceName.t option;
    (*

    The name of the simulation of the app.

    *)
  7. status : SimulationAppStatus.t option;
    (*

    The current lifecycle state of the custom app.

    *)
  8. targetStatus : SimulationAppTargetStatus.t option;
    (*

    The desired lifecycle state of the custom app.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ValidationException of ValidationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?description:??? -> ?domain:??? -> ?endpointInfo:??? -> ?launchOverrides:??? -> ?name:??? -> ?simulation:??? -> ?status:??? -> ?targetStatus:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Description.t | `Structure of (string * [> `List of [> `String of NonEmptyString.t | `Structure of (string * [> `Integer of PortNumber.t ]) list ] list | `String of NonEmptyString.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