Module Values.UpdateDaemonResponseSource

Updates the specified daemon. When you update a daemon, a new deployment is triggered that progressively rolls out the changes to the container instances associated with the daemon's capacity providers. For more information, see Daemon deployments in the Amazon Elastic Container Service Developer Guide. Amazon ECS drains existing container instances and provisions new instances with the updated daemon. Amazon ECS automatically launches replacement tasks for your services. Updating a daemon triggers a rolling deployment that drains and replaces container instances. Plan updates during maintenance windows to minimize impact on running services. ECS Managed Daemons is only supported for Amazon ECS Managed Instances Capacity Providers.

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

    The Amazon Resource Name (ARN) of the daemon.

    *)
  2. status : DaemonStatus.t option;
    (*

    The status of the daemon.

    *)
  3. createdAt : Timestamp.t option;
    (*

    The Unix timestamp for the time when the daemon was created.

    *)
  4. updatedAt : Timestamp.t option;
    (*

    The Unix timestamp for the time when the daemon was last updated.

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

    The Amazon Resource Name (ARN) of the daemon deployment that was triggered by the update.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ClientException of ClientException.t
  3. | `ClusterNotFoundException of ClusterNotFoundException.t
  4. | `DaemonNotActiveException of DaemonNotActiveException.t
  5. | `DaemonNotFoundException of DaemonNotFoundException.t
  6. | `InvalidParameterException of InvalidParameterException.t
  7. | `PlatformUnknownException of PlatformUnknownException.t
  8. | `ServerException of ServerException.t
  9. | `UnsupportedFeatureException of UnsupportedFeatureException.t
  10. | `Unknown_operation_error of string * string option
]
Sourceval make : ?daemonArn:??? -> ?status:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?deploymentArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ClientException of ClientException.t | `ClusterNotFoundException of ClusterNotFoundException.t | `DaemonNotActiveException of DaemonNotActiveException.t | `DaemonNotFoundException of DaemonNotFoundException.t | `InvalidParameterException of InvalidParameterException.t | `PlatformUnknownException of PlatformUnknownException.t | `ServerException of ServerException.t | `Unknown_operation_error of string * string option | `UnsupportedFeatureException of UnsupportedFeatureException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ClientException of ClientException.t | `ClusterNotFoundException of ClusterNotFoundException.t | `DaemonNotActiveException of DaemonNotActiveException.t | `DaemonNotFoundException of DaemonNotFoundException.t | `InvalidParameterException of InvalidParameterException.t | `PlatformUnknownException of PlatformUnknownException.t | `ServerException of ServerException.t | `Unknown_operation_error of string * string option | `UnsupportedFeatureException of UnsupportedFeatureException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.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