Module Values.CreateRecipeJobRequestSource

Creates a new job to transform input data, using steps defined in an existing Glue DataBrew recipe

Sourcetype nonrec t = {
  1. datasetName : DatasetName.t option;
    (*

    The name of the dataset that this job processes.

    *)
  2. encryptionKeyArn : EncryptionKeyArn.t option;
    (*

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

    *)
  3. 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.

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

    A unique name for the job. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.

    *)
  5. 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.

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

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

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

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

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

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

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

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

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

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

    *)
  11. projectName : ProjectName.t option;
    (*

    Either the name of an existing project, or a combination of a recipe and a dataset to associate with the recipe.

    *)
  12. recipeReference : RecipeReference.t option;
  13. roleArn : Arn.t;
    (*

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

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

    Metadata tags to apply to this job.

    *)
  15. 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 : ?datasetName:??? -> ?encryptionKeyArn:??? -> ?encryptionMode:??? -> ?logSubscription:??? -> ?maxCapacity:??? -> ?maxRetries:??? -> ?outputs:??? -> ?dataCatalogOutputs:??? -> ?databaseOutputs:??? -> ?projectName:??? -> ?recipeReference:??? -> ?tags:??? -> ?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 | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of DatasetName.t | `Structure of (string * [> `String of RecipeName.t ]) 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