Module Values.GatewaySource

The settings for a gateway, including its networks.

Sourcetype nonrec t = {
  1. egressCidrBlocks : String_.t list option;
    (*

    The range of IP addresses that contribute content or initiate output requests for flows communicating with this gateway. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.

    *)
  2. gatewayArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the gateway.

    *)
  3. gatewayMessages : MessageDetail.t list option;
    (*

    Messages with information about the gateway.

    *)
  4. gatewayState : GatewayState.t option;
    (*

    The current status of the gateway.

    *)
  5. name : String_.t option;
    (*

    The name of the gateway. This name can not be modified after the gateway is created.

    *)
  6. networks : GatewayNetwork.t list option;
    (*

    The list of networks in the gateway.

    *)
}
Sourceval make : ?egressCidrBlocks:??? -> ?gatewayArn:??? -> ?gatewayMessages:??? -> ?gatewayState:??? -> ?name:??? -> ?networks:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.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