Module Values.DescribeJobResponseSource

Returns the definition of a specific DataBrew job.

Sourcetype nonrec t = {
  1. createDate : Date.t option;
    (*

    The date and time that the job was created.

    *)
  2. createdBy : CreatedBy.t option;
    (*

    The identifier (user name) of the user associated with the creation of the job.

    *)
  3. datasetName : DatasetName.t option;
    (*

    The dataset that the job acts upon.

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

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

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

    *)
  6. name : JobName.t option;
    (*

    The name of the job.

    *)
  7. type_ : JobType.t option;
    (*

    The job type, which must be one of the following: PROFILE - The job analyzes the dataset to determine its size, data types, data distribution, and more. RECIPE - The job applies one or more transformations to a dataset.

    *)
  8. lastModifiedBy : LastModifiedBy.t option;
    (*

    The identifier (user name) of the user who last modified the job.

    *)
  9. lastModifiedDate : Date.t option;
    (*

    The date and time that the job was last modified.

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

    Indicates whether Amazon CloudWatch logging is enabled for this job.

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

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

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

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

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

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

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

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

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

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

    The DataBrew project associated with this job.

    *)
  17. profileConfiguration : ProfileConfiguration.t option;
    (*

    Configuration for profile jobs. Used to select columns, do evaluations, and override default parameters of evaluations. When configuration is null, the profile job will run with default settings.

    *)
  18. validationConfigurations : ValidationConfigurationList.t option;
    (*

    List of validation configurations that are applied to the profile job.

    *)
  19. recipeReference : RecipeReference.t option;
  20. resourceArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the job.

    *)
  21. roleArn : Arn.t option;
    (*

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

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

    Metadata tags associated with this job.

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

    *)
  24. jobSample : JobSample.t option;
    (*

    Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be executed.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFoundException of ResourceNotFoundException.t
  2. | `ValidationException of ValidationException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?createDate:??? -> ?createdBy:??? -> ?datasetName:??? -> ?encryptionKeyArn:??? -> ?encryptionMode:??? -> ?name:??? -> ?type_:??? -> ?lastModifiedBy:??? -> ?lastModifiedDate:??? -> ?logSubscription:??? -> ?maxCapacity:??? -> ?maxRetries:??? -> ?outputs:??? -> ?dataCatalogOutputs:??? -> ?databaseOutputs:??? -> ?projectName:??? -> ?profileConfiguration:??? -> ?validationConfigurations:??? -> ?recipeReference:??? -> ?resourceArn:??? -> ?roleArn:??? -> ?tags:??? -> ?timeout:??? -> ?jobSample:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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 CreatedBy.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ColumnName.t ]) list ] list | `String of ColumnName.t | `Structure of (string * [> `List of [> `String of Statistic.t | `Structure of (string * [> `Map of ([> `String of ParameterName.t ] * [> `String of ParameterValue.t ]) list | `String of Statistic.t ]) list ] list ]) list ]) list ] list | `Long of JobSize.t | `String of RecipeName.t | `Structure of (string * [> `List of [> `String of Statistic.t | `Structure of (string * [> `List of [> `String of Statistic.t ] list | `Map of ([> `String of ParameterName.t ] * [> `String of ParameterValue.t ]) list | `String of Statistic.t ]) list ] list ]) list ]) list | `Timestamp of Date.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