Module Values.ParameterSource

Describes an individual setting that controls some aspect of ElastiCache behavior.

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

    The name of the parameter.

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

    The value of the parameter.

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

    A description of the parameter.

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

    The source of the parameter.

    *)
  5. dataType : String_.t option;
    (*

    The valid data type for the parameter.

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

    The valid range of values for the parameter.

    *)
  7. isModifiable : Boolean.t option;
    (*

    Indicates whether (true) or not (false) the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.

    *)
  8. minimumEngineVersion : String_.t option;
    (*

    The earliest cache engine version to which the parameter can apply.

    *)
  9. changeType : ChangeType.t option;
    (*

    Indicates whether a change to the parameter is applied immediately or requires a reboot for the change to be applied. You can force a reboot or wait until the next maintenance window's reboot. For more information, see Rebooting a Cluster.

    *)
}
Sourceval make : ?parameterName:??? -> ?parameterValue:??? -> ?description:??? -> ?source:??? -> ?dataType:??? -> ?allowedValues:??? -> ?isModifiable:??? -> ?minimumEngineVersion:??? -> ?changeType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum 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