Values.ServiceUpdateSourceAn update that you can apply to your Valkey or Redis OSS clusters.
type nonrec t = {serviceUpdateName : String_.t option;The unique ID of the service update
*)serviceUpdateReleaseDate : TStamp.t option;The date when the service update is initially available
*)serviceUpdateEndDate : TStamp.t option;The date after which the service update is no longer available
*)serviceUpdateSeverity : ServiceUpdateSeverity.t option;The severity of the service update
*)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.
*)serviceUpdateStatus : ServiceUpdateStatus.t option;The status of the service update
*)serviceUpdateDescription : String_.t option;Provides details of the service update
*)serviceUpdateType : ServiceUpdateType.t option;Reflects the nature of the service update
*)engine : String_.t option;The Elasticache engine to which the update applies. Either Valkey, Redis OSS or Memcached.
*)engineVersion : String_.t option;The Elasticache engine version to which the update applies. Either Valkey, Redis OSS or Memcached engine version.
*)autoUpdateAfterRecommendedApplyByDate : BooleanOptional.t option;Indicates whether the service update will be automatically applied once the recommended apply-by date has expired.
*)estimatedUpdateTime : String_.t option;The estimated length of time the service update will take
*)}val make :
?serviceUpdateName:??? ->
?serviceUpdateReleaseDate:??? ->
?serviceUpdateEndDate:??? ->
?serviceUpdateSeverity:??? ->
?serviceUpdateRecommendedApplyByDate:??? ->
?serviceUpdateStatus:??? ->
?serviceUpdateDescription:??? ->
?serviceUpdateType:??? ->
?engine:??? ->
?engineVersion:??? ->
?autoUpdateAfterRecommendedApplyByDate:??? ->
?estimatedUpdateTime:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanOptional.t
| `Enum of string
| `String of String_.t
| `Timestamp of TStamp.t ])
list ]