Module Values.CreateNetworkRequestSource

A request to create a Network.

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

    An array of IpPoolCreateRequests that identify a collection of IP addresses in your network that you want to reserve for use in MediaLive Anywhere. MediaLiveAnywhere uses these IP addresses for Push inputs (in both Bridge and NATnetworks) and for output destinations (only in Bridge networks). EachIpPoolUpdateRequest specifies one CIDR block.

    *)
  2. name : string option;
    (*

    Specify a name that is unique in the AWS account. We recommend that you assign a name that hints at the type of traffic on the network. Names are case-sensitive.

    *)
  3. requestId : string option;
    (*

    An ID that you assign to a create request. This ID ensures idempotency when creating resources.

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

    An array of routes that MediaLive Anywhere needs to know about in order to route encoding traffic.

    *)
  5. tags : Tags.t option;
    (*

    A collection of key-value pairs.

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