Module Values_1.DescribeManagedJobTemplateResponseSource

View details of a managed job template.

Sourcetype nonrec t = {
  1. templateName : Values_0.ManagedJobTemplateName.t option;
    (*

    The unique name of a managed template, such as AWS-Reboot.

    *)
  2. templateArn : Values_0.JobTemplateArn.t option;
    (*

    The unique Amazon Resource Name (ARN) of the managed template.

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

    The unique description of a managed template.

    *)
  4. templateVersion : Values_0.ManagedTemplateVersion.t option;
    (*

    The version for a managed template.

    *)
  5. environments : Values_0.Environments.t option;
    (*

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

    *)
  6. documentParameters : Values_0.DocumentParameters.t option;
    (*

    A map of key-value pairs that you can use as guidance to specify the inputs for creating a job from a managed template. documentParameters can only be used when creating jobs from Amazon Web Services managed templates. This parameter can't be used with custom job templates or to create jobs from them.

    *)
  7. document : Values_0.JobDocument.t option;
    (*

    The document schema for a managed job template.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of Values_0.InternalServerException.t
  2. | `InvalidRequestException of Values_0.InvalidRequestException.t
  3. | `ResourceNotFoundException of Values_0.ResourceNotFoundException.t
  4. | `ThrottlingException of Values_0.ThrottlingException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?templateName:??? -> ?templateArn:??? -> ?description:??? -> ?templateVersion:??? -> ?environments:??? -> ?documentParameters:??? -> ?document:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of Values_0.InternalServerException.t | `InvalidRequestException of Values_0.InvalidRequestException.t | `ResourceNotFoundException of Values_0.ResourceNotFoundException.t | `ThrottlingException of Values_0.ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of Values_0.InternalServerException.t | `InvalidRequestException of Values_0.InvalidRequestException.t | `ResourceNotFoundException of Values_0.ResourceNotFoundException.t | `ThrottlingException of Values_0.ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string | `Structure of (string * [> `Boolean of bool | `String of string ]) list ] list | `String of Values_0.ManagedJobTemplateName.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