Module Values.DbParameterGroupSummarySource

Contains a summary of a DB parameter group.

Sourcetype nonrec t = {
  1. id : DbParameterGroupId.t option;
    (*

    A service-generated unique identifier.

    *)
  2. name : DbParameterGroupName.t option;
    (*

    This customer-supplied name uniquely identifies the parameter group.

    *)
  3. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the DB parameter group.

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

    A description of the DB parameter group.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DbParameterGroupId.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