Module Values.SubnetGroupSource

Represents the output of one of the following actions: CreateSubnetGroup ModifySubnetGroup

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

    The name of the subnet group.

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

    The description of the subnet group.

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

    The Amazon Virtual Private Cloud identifier (VPC ID) of the subnet group.

    *)
  4. subnets : SubnetList.t option;
    (*

    A list of subnets associated with the subnet group.

    *)
  5. 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 group supports IPv4 only, IPv6 only, or dual-stack deployments.

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