Module Values.UpdateActionSource

The status of the service update for a specific replication group

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

    The ID of the replication group

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

    The ID of the cache cluster

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

    The unique ID of the service update

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

    The date the update is first available

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

    The severity of the service update

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

    The status of the service update

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

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

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

    Reflects the nature of the service update

    *)
  9. updateActionAvailableDate : TStamp.t option;
    (*

    The date that the service update is available to a replication group

    *)
  10. updateActionStatus : UpdateActionStatus.t option;
    (*

    The status of the update action

    *)
  11. nodesUpdated : String_.t option;
    (*

    The progress of the service update on the replication group

    *)
  12. updateActionStatusModifiedDate : TStamp.t option;
    (*

    The date when the UpdateActionStatus was last modified

    *)
  13. slaMet : SlaMet.t option;
    (*

    If yes, all nodes in the replication group have been updated by the recommended apply-by date. If no, at least one node in the replication group have not been updated by the recommended apply-by date. If N/A, the replication group was created after the recommended apply-by date.

    *)
  14. nodeGroupUpdateStatus : NodeGroupUpdateStatusList.t option;
    (*

    The status of the service update on the node group

    *)
  15. cacheNodeUpdateStatus : CacheNodeUpdateStatusList.t option;
    (*

    The status of the service update on the cache node

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

    The estimated length of time for the update to complete

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

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

    *)
}
Sourceval make : ?replicationGroupId:??? -> ?cacheClusterId:??? -> ?serviceUpdateName:??? -> ?serviceUpdateReleaseDate:??? -> ?serviceUpdateSeverity:??? -> ?serviceUpdateStatus:??? -> ?serviceUpdateRecommendedApplyByDate:??? -> ?serviceUpdateType:??? -> ?updateActionAvailableDate:??? -> ?updateActionStatus:??? -> ?nodesUpdated:??? -> ?updateActionStatusModifiedDate:??? -> ?slaMet:??? -> ?nodeGroupUpdateStatus:??? -> ?cacheNodeUpdateStatus:??? -> ?estimatedUpdateTime:??? -> ?engine:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of TStamp.t ]) list ] list | `String of String_.t | `Timestamp of TStamp.t ]) list ] list | `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