Module Values.ModifyDBSubnetGroupMessageSource

Modifies an existing DB subnet group. DB subnet groups must contain at least one subnet in at least two AZs in the Amazon Region.

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

    The name for the DB subnet group. This value is stored as a lowercase string. You can't modify the default subnet group. Constraints: Must match the name of an existing DBSubnetGroup. Must not be default. Example: mySubnetgroup

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

    The description for the DB subnet group.

    *)
  3. subnetIds : SubnetIdentifierList.t;
    (*

    The EC2 subnet IDs for the DB subnet group.

    *)
}
Sourceval context_ : string
Sourceval make : ?dBSubnetGroupDescription:??? -> dBSubnetGroupName:String_.t -> subnetIds:SubnetIdentifierList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] 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