Module Values_0.DBSubnetGroupSource

Contains the details of an Amazon RDS 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. The list of subnets shown here might not reflect the current state of your VPC. For the most up-to-date information, we recommend checking your VPC configuration directly.

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

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

    *)
  7. supportedNetworkTypes : StringList.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). For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

    *)
}
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