Module Values.ServiceUpdateSource

An update that you can apply to your Valkey or Redis OSS clusters.

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

    The unique ID of the service update

    *)
  2. serviceUpdateReleaseDate : TStamp.t option;
    (*

    The date when the service update is initially available

    *)
  3. serviceUpdateEndDate : TStamp.t option;
    (*

    The date after which the service update is no longer available

    *)
  4. serviceUpdateSeverity : ServiceUpdateSeverity.t option;
    (*

    The severity of the service update

    *)
  5. serviceUpdateRecommendedApplyByDate : TStamp.t option;
    (*

    The recommendend date to apply the service update in order to ensure compliance. For information on compliance, see Self-Service Security Updates for Compliance.

    *)
  6. serviceUpdateStatus : ServiceUpdateStatus.t option;
    (*

    The status of the service update

    *)
  7. serviceUpdateDescription : String_.t option;
    (*

    Provides details of the service update

    *)
  8. serviceUpdateType : ServiceUpdateType.t option;
    (*

    Reflects the nature of the service update

    *)
  9. engine : String_.t option;
    (*

    The Elasticache engine to which the update applies. Either Valkey, Redis OSS or Memcached.

    *)
  10. engineVersion : String_.t option;
    (*

    The Elasticache engine version to which the update applies. Either Valkey, Redis OSS or Memcached engine version.

    *)
  11. autoUpdateAfterRecommendedApplyByDate : BooleanOptional.t option;
    (*

    Indicates whether the service update will be automatically applied once the recommended apply-by date has expired.

    *)
  12. estimatedUpdateTime : String_.t option;
    (*

    The estimated length of time the service update will take

    *)
}
Sourceval make : ?serviceUpdateName:??? -> ?serviceUpdateReleaseDate:??? -> ?serviceUpdateEndDate:??? -> ?serviceUpdateSeverity:??? -> ?serviceUpdateRecommendedApplyByDate:??? -> ?serviceUpdateStatus:??? -> ?serviceUpdateDescription:??? -> ?serviceUpdateType:??? -> ?engine:??? -> ?engineVersion:??? -> ?autoUpdateAfterRecommendedApplyByDate:??? -> ?estimatedUpdateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Enum of string | `String of String_.t | `Timestamp of TStamp.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