Module Values.JobDetailsEntitySource

The job details for a specific job.

Sourcetype nonrec t = {
  1. jobId : JobId.t option;
    (*

    The job ID.

    *)
  2. jobAttachmentSettings : JobAttachmentSettings.t option;
    (*

    The job attachment settings.

    *)
  3. jobRunAsUser : JobRunAsUser.t option;
    (*

    The user name and group that the job uses when run.

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

    The log group name.

    *)
  5. queueRoleArn : IamRoleArn.t option;
    (*

    The queue role ARN.

    *)
  6. parameters : JobParameters.t option;
    (*

    The parameters.

    *)
  7. schemaVersion : String_.t option;
    (*

    The schema version.

    *)
  8. pathMappingRules : PathMappingRules.t option;
    (*

    The path mapping rules.

    *)
}
Sourceval make : ?jobId:??? -> ?jobAttachmentSettings:??? -> ?jobRunAsUser:??? -> ?logGroupName:??? -> ?queueRoleArn:??? -> ?parameters:??? -> ?schemaVersion:??? -> ?pathMappingRules:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `Map of ([> `String of JobParametersKeyString.t ] * [> `Structure of (string * [> `String of IntString.t ]) list ]) list | `String of JobId.t | `Structure of (string * [> `Enum of string | `String of S3BucketName.t | `Structure of (string * [> `String of PosixUserUserString.t ]) list ]) list ]) 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