Module Values.CreateDaemonResponseSource

Creates a new daemon in the specified cluster and capacity providers. A daemon deploys cross-cutting software agents such as security monitoring, telemetry, and logging independently across your Amazon ECS infrastructure. Amazon ECS deploys exactly one daemon task on each container instance of the specified capacity providers. When a container instance registers with the cluster, Amazon ECS automatically starts daemon tasks. Amazon ECS starts a daemon task before scheduling other tasks. Daemons are essential for instance health - if a daemon task stops, Amazon ECS automatically drains and replaces that container instance. 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. deploymentArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the initial daemon deployment. This deployment places daemon tasks on each container instance of the specified capacity providers.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ClientException of ClientException.t
  3. | `ClusterNotFoundException of ClusterNotFoundException.t
  4. | `InvalidParameterException of InvalidParameterException.t
  5. | `PlatformUnknownException of PlatformUnknownException.t
  6. | `ServerException of ServerException.t
  7. | `UnsupportedFeatureException of UnsupportedFeatureException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?daemonArn:??? -> ?status:??? -> ?createdAt:??? -> ?deploymentArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ClientException of ClientException.t | `ClusterNotFoundException of ClusterNotFoundException.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 | `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