Module Values.AwsRdsDbSubnetGroupSource

Information about the subnet group for the database instance.

Sourcetype nonrec t = {
  1. dbSubnetGroupName : NonEmptyString.t option;
    (*

    The name of the subnet group.

    *)
  2. dbSubnetGroupDescription : NonEmptyString.t option;
    (*

    The description of the subnet group.

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

    The VPC ID of the subnet group.

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

    The status of the subnet group.

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

    A list of subnets in the subnet group.

    *)
  6. dbSubnetGroupArn : NonEmptyString.t option;
    (*

    The ARN of the subnet group.

    *)
}
Sourceval make : ?dbSubnetGroupName:??? -> ?dbSubnetGroupDescription:??? -> ?vpcId:??? -> ?subnetGroupStatus:??? -> ?subnets:??? -> ?dbSubnetGroupArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ]) list ] list | `String of NonEmptyString.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