Module Values.UpdateOutpostResolverRequestSource

You can use UpdateOutpostResolver to update the instance count, type, or name of a Resolver on an Outpost.

Sourcetype nonrec t = {
  1. id : ResourceId.t;
    (*

    A unique string that identifies Resolver on an Outpost.

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

    Name of the Resolver on the Outpost.

    *)
  3. instanceCount : InstanceCount.t option;
    (*

    The Amazon EC2 instance count for a Resolver on the Outpost.

    *)
  4. preferredInstanceType : OutpostInstanceType.t option;
    (*

    Amazon EC2 instance type.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?instanceCount:??? -> ?preferredInstanceType:??? -> id:ResourceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of InstanceCount.t | `String of ResourceId.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