Module Values.DBSubnetGroupSource

Detailed information about a subnet group.

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

    The name of the subnet group.

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

    Provides the description of the subnet group.

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

    Provides the virtual private cloud (VPC) ID of the subnet group.

    *)
  4. subnetGroupStatus : String_.t option;
    (*

    Provides the status of the subnet group.

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

    Detailed information about one or more subnets within a subnet group.

    *)
  6. dBSubnetGroupArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for the DB subnet group.

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

    The network type of the DB subnet group. Valid Values: IPV4 | DUAL A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

    *)
}
Sourceval make : ?dBSubnetGroupName:??? -> ?dBSubnetGroupDescription:??? -> ?vpcId:??? -> ?subnetGroupStatus:??? -> ?subnets:??? -> ?dBSubnetGroupArn:??? -> ?supportedNetworkTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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