Module Values.DaemonRevisionSource

Information about a daemon revision. A daemon revision is a snapshot of the daemon's configuration at the time a deployment was initiated.

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

    The Amazon Resource Name (ARN) of the daemon revision.

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

    The Amazon Resource Name (ARN) of the cluster that hosts the daemon.

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

    The Amazon Resource Name (ARN) of the daemon for this revision.

    *)
  4. daemonTaskDefinitionArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the daemon task definition used by this revision.

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

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

    *)
  6. containerImages : DaemonContainerImages.t option;
    (*

    The container images used by the daemon revision.

    *)
  7. propagateTags : DaemonPropagateTags.t option;
    (*

    Specifies whether tags are propagated from the daemon to the daemon tasks.

    *)
  8. enableECSManagedTags : BoxedBoolean.t option;
    (*

    Specifies whether Amazon ECS managed tags are turned on for the daemon tasks.

    *)
  9. enableExecuteCommand : BoxedBoolean.t option;
    (*

    Specifies whether the execute command functionality is turned on for the daemon tasks.

    *)
}
Sourceval make : ?daemonRevisionArn:??? -> ?clusterArn:??? -> ?daemonArn:??? -> ?daemonTaskDefinitionArn:??? -> ?createdAt:??? -> ?containerImages:??? -> ?propagateTags:??? -> ?enableECSManagedTags:??? -> ?enableExecuteCommand:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BoxedBoolean.t | `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `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