Module Values.SubnetSource

Represents the subnet associated with a DAX cluster. This parameter refers to subnets defined in Amazon Virtual Private Cloud (Amazon VPC) and used with DAX.

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

    The system-assigned identifier for the subnet.

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

    The Availability Zone (AZ) for the subnet.

    *)
  3. supportedNetworkTypes : NetworkTypeList.t option;
    (*

    The network types supported by this subnet. Returns an array of strings that can include ipv4, ipv6, or both, indicating whether the subnet supports IPv4 only, IPv6 only, or dual-stack deployments.

    *)
}
Sourceval make : ?subnetIdentifier:??? -> ?subnetAvailabilityZone:??? -> ?supportedNetworkTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] 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