Module Values.DBSubnetGroupSource

Contains the details of an Amazon Neptune DB subnet group. This data type is used as a response element in the DescribeDBSubnetGroups action.

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

    The name of the DB subnet group.

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

    Provides the description of the DB subnet group.

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

    Provides the VpcId of the DB subnet group.

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

    Provides the status of the DB subnet group.

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

    Contains a list of Subnet elements.

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

    The Amazon Resource Name (ARN) for the DB 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 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