Module Values_0.JobTemplateSummarySource

An object that contains information about the job template.

Sourcetype nonrec t = {
  1. jobTemplateArn : JobTemplateArn.t option;
    (*

    The ARN of the job template.

    *)
  2. jobTemplateId : JobTemplateId.t option;
    (*

    The unique identifier of the job template.

    *)
  3. description : JobDescription.t option;
    (*

    A description of the job template.

    *)
  4. createdAt : DateType.t option;
    (*

    The time, in seconds since the epoch, when the job template was created.

    *)
}
Sourceval make : ?jobTemplateArn:??? -> ?jobTemplateId:??? -> ?description:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of JobTemplateArn.t | `Timestamp of DateType.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