Module Values.InstanceProfileSource

Represents the instance profile.

Sourcetype nonrec t = {
  1. arn : AmazonResourceName.t option;
    (*

    The Amazon Resource Name (ARN) of the instance profile.

    *)
  2. 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.

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

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

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

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

    *)
  5. name : Name.t option;
    (*

    The name of the instance profile.

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

    The description of the instance profile.

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