Module Values.StartJobRunRequestSource

Starts a job run.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t;
    (*

    The ID of the application on which to run the job.

    *)
  2. clientToken : ClientToken.t;
    (*

    The client idempotency token of the job run to start. Its value must be unique for each request.

    *)
  3. executionRoleArn : IAMRoleArn.t;
    (*

    The execution role ARN for the job run.

    *)
  4. executionIamPolicy : JobRunExecutionIamPolicy.t option;
    (*

    You can pass an optional IAM policy. The resulting job IAM role permissions will be an intersection of this policy and the policy associated with your job execution role.

    *)
  5. jobDriver : JobDriver.t option;
    (*

    The job driver for the job run.

    *)
  6. configurationOverrides : ConfigurationOverrides.t option;
    (*

    The configuration overrides for the job run.

    *)
  7. tags : TagMap.t option;
    (*

    The tags assigned to the job run.

    *)
  8. executionTimeoutMinutes : Duration.t option;
    (*

    The maximum duration for the job run to run. If the job run runs beyond this duration, it will be automatically cancelled.

    *)
  9. name : String256.t option;
    (*

    The optional job run name. This doesn't have to be unique.

    *)
  10. mode : JobRunMode.t option;
    (*

    The mode of the job run when it starts.

    *)
  11. retryPolicy : RetryPolicy.t option;
    (*

    The retry policy when job run starts.

    *)
}
Sourceval context_ : string
Sourceval make : ?executionIamPolicy:??? -> ?jobDriver:??? -> ?configurationOverrides:??? -> ?tags:??? -> ?executionTimeoutMinutes:??? -> ?name:??? -> ?mode:??? -> ?retryPolicy:??? -> applicationId:ApplicationId.t -> clientToken:ClientToken.t -> executionRoleArn:IAMRoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Duration.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ApplicationId.t | `Structure of (string * Awso.Botodata.value) 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