Module Values.InputDestinationSource

The settings for a PUSH type input.

Sourcetype nonrec t = {
  1. ip : string option;
    (*

    The system-generated static IP address of endpoint. It remains fixed for the lifetime of the input.

    *)
  2. port : string option;
    (*

    The port number for the input.

    *)
  3. url : string option;
    (*

    This represents the endpoint that the customer stream will be pushed to.

    *)
  4. vpc : InputDestinationVpc.t option;
  5. network : string option;
    (*

    The ID of the attached network.

    *)
  6. networkRoutes : InputDestinationRoute.t list option;
    (*

    If the push input has an input location of ON-PREM it's a requirement to specify what the route of the input is going to be on the customer local network.

    *)
}
Sourceval make : ?ip:??? -> ?port:??? -> ?url:??? -> ?vpc:??? -> ?network:??? -> ?networkRoutes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of string | `Structure of (string * [> `String of string ]) 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