Module Values.BackendServerDescriptionSource

Information about the configuration of an EC2 instance.

Sourcetype nonrec t = {
  1. instancePort : InstancePort.t option;
    (*

    The port on which the EC2 instance is listening.

    *)
  2. policyNames : PolicyNames.t option;
    (*

    The names of the policies enabled for the EC2 instance.

    *)
}
Sourceval make : ?instancePort:??? -> ?policyNames:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of InstancePort.t | `List of [> `String of PolicyName.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