Module Values_0.VpnStaticRouteSource

Describes a static route for a VPN connection.

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

    The CIDR block associated with the local subnet of the customer data center.

    *)
  2. source : VpnStaticRouteSource.t option;
    (*

    Indicates how the routes were provided.

    *)
  3. state : VpnState.t option;
    (*

    The current state of the static route.

    *)
}
Sourceval make : ?destinationCidrBlock:??? -> ?source:??? -> ?state:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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