Module Values_1.DeleteAppRequestSource

Used to stop and delete an app.

Sourcetype nonrec t = {
  1. domainId : Values_0.DomainId.t;
    (*

    The domain ID.

    *)
  2. userProfileName : Values_0.UserProfileName.t option;
    (*

    The user profile name. If this value is not set, then SpaceName must be set.

    *)
  3. spaceName : Values_0.SpaceName.t option;
    (*

    The name of the space. If this value is not set, then UserProfileName must be set.

    *)
  4. appType : Values_0.AppType.t;
    (*

    The type of app.

    *)
  5. appName : Values_0.AppName.t;
    (*

    The name of the app.

    *)
}
Sourceval context_ : string
Sourceval make : ?userProfileName:??? -> ?spaceName:??? -> domainId:Values_0.DomainId.t -> appType:Values_0.AppType.t -> appName:Values_0.AppName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.DomainId.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