Module Values_0.ManagedJobTemplateSummarySource

An object that contains information about the managed template.

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

    The Amazon Resource Name (ARN) for a managed template.

    *)
  2. templateName : ManagedJobTemplateName.t option;
    (*

    The unique Name for a managed template.

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

    The description for a managed template.

    *)
  4. environments : Environments.t option;
    (*

    A list of environments that are supported with the managed job template.

    *)
  5. templateVersion : ManagedTemplateVersion.t option;
    (*

    The version for a managed template.

    *)
}
Sourceval make : ?templateArn:??? -> ?templateName:??? -> ?description:??? -> ?environments:??? -> ?templateVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Environment.t ] list | `String of JobTemplateArn.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