Module Values.DaemonTaskDefinitionSummarySource

A summary of a daemon task definition.

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

    The Amazon Resource Name (ARN) of the daemon task definition.

    *)
  2. registeredAt : Timestamp.t option;
    (*

    The Unix timestamp for the time when the daemon task definition was registered.

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

    The principal that registered the daemon task definition.

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

    The Unix timestamp for the time when the daemon task definition delete was requested.

    *)
  5. status : DaemonTaskDefinitionStatus.t option;
    (*

    The status of the daemon task definition.

    *)
}
Sourceval make : ?arn:??? -> ?registeredAt:??? -> ?registeredBy:??? -> ?deleteRequestedAt:??? -> ?status:??? -> unit -> 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