Module Values_2.TaskTemplateMetadataSource

Contains summary information about the task template.

Sourcetype nonrec t = {
  1. id : Values_0.TaskTemplateId.t option;
    (*

    A unique identifier for the task template.

    *)
  2. arn : Values_0.TaskTemplateArn.t option;
    (*

    The Amazon Resource Name (ARN) of the task template.

    *)
  3. name : Values_0.TaskTemplateName.t option;
    (*

    The name of the task template.

    *)
  4. description : Values_0.TaskTemplateDescription.t option;
    (*

    The description of the task template.

    *)
  5. status : Values_0.TaskTemplateStatus.t option;
    (*

    Marks a template as ACTIVE or INACTIVE for a task to refer to it. Tasks can only be created from ACTIVE templates. If a template is marked as INACTIVE, then a task that refers to this template cannot be created.

    *)
  6. lastModifiedTime : string option;
    (*

    The timestamp when the task template was last modified.

    *)
  7. createdTime : string option;
    (*

    The timestamp when the task template was created.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?description:??? -> ?status:??? -> ?lastModifiedTime:??? -> ?createdTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.TaskTemplateId.t | `Timestamp of string ]) 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