Module Values.UpdateInstanceProfileRequestSource

Updates information about an existing private device instance profile.

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

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

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

    The updated name for your instance profile.

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

    The updated description for your instance profile.

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

    The updated choice for whether you want to specify package cleanup. The default value is false for private devices.

    *)
  5. 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 is over. The list of packages is only considered if you set packageCleanup to true.

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

    The updated choice for whether you want to reboot the device after use. The default value is true.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?packageCleanup:??? -> ?excludeAppPackagesFromCleanup:??? -> ?rebootAfterUse:??? -> arn:AmazonResourceName.t -> 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