Module Values_0.DBClusterParameterGroupSource

Contains the details of an Amazon RDS DB cluster parameter group. This data type is used as a response element in the DescribeDBClusterParameterGroups action.

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

    The name of the DB cluster parameter group.

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

    The name of the DB parameter group family that this DB cluster parameter group is compatible with.

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

    Provides the customer-specified description for this DB cluster parameter group.

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

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

    *)
}
Sourceval make : ?dBClusterParameterGroupName:??? -> ?dBParameterGroupFamily:??? -> ?description:??? -> ?dBClusterParameterGroupArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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