Module Values.UpdateNetworkRequestSource

A request to update the network.

Sourcetype nonrec t = {
  1. ipPools : IpPoolUpdateRequest.t list option;
    (*

    Include this parameter only if you want to change the pool of IP addresses in the network. An array of IpPoolCreateRequests that identify a collection of IP addresses in this network that you want to reserve for use in MediaLive Anywhere. MediaLive Anywhere uses these IP addresses for Push inputs (in both Bridge and NAT networks) and for output destinations (only in Bridge networks). Each IpPoolUpdateRequest specifies one CIDR block.

    *)
  2. name : string option;
    (*

    Include this parameter only if you want to change the name of the Network. Specify a name that is unique in the AWS account. Names are case-sensitive.

    *)
  3. networkId : string;
    (*

    The ID of the network

    *)
  4. routes : RouteUpdateRequest.t list option;
    (*

    Include this parameter only if you want to change or add routes in the Network. An array of Routes that MediaLive Anywhere needs to know about in order to route encoding traffic.

    *)
}
Sourceval context_ : string
Sourceval make : ?ipPools:??? -> ?name:??? -> ?routes:??? -> networkId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of string ]) 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