Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DescribeJobResponse

import type { DescribeJobResponse } from "https://aws-api.deno.dev/v0.4/services/databrew.ts?docs=full";
interface DescribeJobResponse {
CreateDate?: Date | number | null;
CreatedBy?: string | null;
DatabaseOutputs?: DatabaseOutput[] | null;
DataCatalogOutputs?: DataCatalogOutput[] | null;
DatasetName?: string | null;
EncryptionKeyArn?: string | null;
EncryptionMode?: EncryptionMode | null;
JobSample?: JobSample | null;
LastModifiedBy?: string | null;
LastModifiedDate?: Date | number | null;
LogSubscription?: LogSubscription | null;
MaxCapacity?: number | null;
MaxRetries?: number | null;
Name: string;
Outputs?: Output[] | null;
ProfileConfiguration?: ProfileConfiguration | null;
ProjectName?: string | null;
RecipeReference?: RecipeReference | null;
ResourceArn?: string | null;
RoleArn?: string | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
Timeout?: number | null;
Type?: JobType | null;
ValidationConfigurations?: ValidationConfiguration[] | null;
}

§Properties

§
CreateDate?: Date | number | null
[src]

The date and time that the job was created.

§
CreatedBy?: string | null
[src]

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

§
DatabaseOutputs?: DatabaseOutput[] | null
[src]

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

§
DataCatalogOutputs?: DataCatalogOutput[] | null
[src]

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

§
DatasetName?: string | null
[src]

The dataset that the job acts upon.

§
EncryptionKeyArn?: string | null
[src]

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

§
EncryptionMode?: EncryptionMode | null
[src]

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.
§
JobSample?: JobSample | null
[src]

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

§
LastModifiedBy?: string | null
[src]

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

§
LastModifiedDate?: Date | number | null
[src]

The date and time that the job was last modified.

§
LogSubscription?: LogSubscription | null
[src]

Indicates whether Amazon CloudWatch logging is enabled for this job.

§
MaxCapacity?: number | null
[src]

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

§
MaxRetries?: number | null
[src]

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

§
Name: string
[src]

The name of the job.

§
Outputs?: Output[] | null
[src]

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

§
ProfileConfiguration?: ProfileConfiguration | null
[src]

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.

§
ProjectName?: string | null
[src]

The DataBrew project associated with this job.

§
RecipeReference?: RecipeReference | null
[src]
§
ResourceArn?: string | null
[src]

The Amazon Resource Name (ARN) of the job.

§
RoleArn?: string | null
[src]

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

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

Metadata tags associated with this job.

§
Timeout?: number | null
[src]

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

§
Type?: JobType | null
[src]

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.
§
ValidationConfigurations?: ValidationConfiguration[] | null
[src]

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