Module Values.InstancesToExcludeSource

User-specified instances that must not be stopped. These instances will not appear in the list of instances that Amazon Web Services recommends to stop in order to free up capacity.

Sourcetype nonrec t = {
  1. instances : InstanceIdList.t option;
    (*

    List of user-specified instances that must not be stopped.

    *)
  2. accountIds : AccountIdList.t option;
    (*

    IDs of the accounts that own each instance that must not be stopped.

    *)
  3. services : AWSServiceNameList.t option;
    (*

    Names of the services that own each instance that must not be stopped in order to free up the capacity needed to run the capacity task.

    *)
}
Sourceval make : ?instances:??? -> ?accountIds:??? -> ?services:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string | `String of InstanceId.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