Module Values.SubnetSource

Specifies a subnet. This data type is used as a response element in the DescribeDBSubnetGroups action.

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

    Specifies the identifier of the subnet.

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

    Specifies the EC2 Availability Zone that the subnet is in.

    *)
  3. subnetStatus : String_.t option;
    (*

    Specifies the status of the subnet.

    *)
}
Sourceval make : ?subnetIdentifier:??? -> ?subnetAvailabilityZone:??? -> ?subnetStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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