Module Values.UpdateRecipeJobRequestSource

Modifies the definition of an existing DataBrew recipe job.

Sourcetype nonrec t = {
  1. encryptionKeyArn : EncryptionKeyArn.t option;
    (*

    The Amazon Resource Name (ARN) of an encryption key that is used to protect the job.

    *)
  2. encryptionMode : EncryptionMode.t option;
    (*

    The encryption mode for the job, which can be one of the following: SSE-KMS - Server-side encryption with keys managed by KMS. SSE-S3 - Server-side encryption with keys managed by Amazon S3.

    *)
  3. name : JobName.t;
    (*

    The name of the job to update.

    *)
  4. logSubscription : LogSubscription.t option;
    (*

    Enables or disables Amazon CloudWatch logging for the job. If logging is enabled, CloudWatch writes one log stream for each job run.

    *)
  5. maxCapacity : MaxCapacity.t option;
    (*

    The maximum number of nodes that DataBrew can consume when the job processes data.

    *)
  6. maxRetries : MaxRetries.t option;
    (*

    The maximum number of times to retry the job after a job run fails.

    *)
  7. outputs : OutputList.t option;
    (*

    One or more artifacts that represent the output from running the job.

    *)
  8. dataCatalogOutputs : DataCatalogOutputList.t option;
    (*

    One or more artifacts that represent the Glue Data Catalog output from running the job.

    *)
  9. databaseOutputs : DatabaseOutputList.t option;
    (*

    Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job to write into.

    *)
  10. roleArn : Arn.t;
    (*

    The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.

    *)
  11. timeout : Timeout.t option;
    (*

    The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of TIMEOUT.

    *)
}
Sourceval context_ : string
Sourceval make : ?encryptionKeyArn:??? -> ?encryptionMode:??? -> ?logSubscription:??? -> ?maxCapacity:??? -> ?maxRetries:??? -> ?outputs:??? -> ?dataCatalogOutputs:??? -> ?databaseOutputs:??? -> ?timeout:??? -> name:JobName.t -> roleArn:Arn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of MaxCapacity.t | `List of [> `Structure of (string * [> `Boolean of OverwriteOutput.t | `Enum of string | `Integer of MaxOutputFiles.t | `List of [> `String of ColumnName.t ] list | `String of CatalogId.t | `Structure of (string * [> `String of Bucket.t | `Structure of (string * [> `String of Delimiter.t ]) list ]) list ]) list ] list | `String of EncryptionKeyArn.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