Module Values.CreateInstanceProfileRequestSource

Creates a profile that can be applied to one or more private fleet device instances.

Sourcetype nonrec t = {
  1. name : Name.t;
    (*

    The name of your instance profile.

    *)
  2. description : Message.t option;
    (*

    The description of your instance profile.

    *)
  3. packageCleanup : Boolean.t option;
    (*

    When set to true, Device Farm removes app packages after a test run. The default value is false for private devices.

    *)
  4. excludeAppPackagesFromCleanup : PackageIds.t option;
    (*

    An array of strings that specifies the list of app packages that should not be cleaned up from the device after a test run. The list of packages is considered only if you set packageCleanup to true.

    *)
  5. rebootAfterUse : Boolean.t option;
    (*

    When set to true, Device Farm reboots the instance after a test run. The default value is true.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?packageCleanup:??? -> ?excludeAppPackagesFromCleanup:??? -> ?rebootAfterUse:??? -> name:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list | `String of Name.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