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

Job

import type { Job } from "https://aws-api.deno.dev/v0.4/services/databrew.ts?docs=full";

Represents all of the attributes of a DataBrew job.

interface Job {
AccountId?: string | null;
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;
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

§
AccountId?: string | null
[src]

The ID of the Amazon Web Services account that owns the job.

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

The date and time that the job was created.

§
CreatedBy?: string | null
[src]

The Amazon Resource Name (ARN) of the user who created 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]

A dataset that the job is to process.

§
EncryptionKeyArn?: string | null
[src]

The Amazon Resource Name (ARN) of an encryption key that is used to protect the job output. For more information, see Encrypting data written by DataBrew jobs

§
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]

A sample configuration for profile jobs only, which determines the number of rows on which the profile job is run. If a JobSample value isn't provided, the default value is used. The default value is CUSTOM_ROWS for the mode parameter and 20,000 for the size parameter.

§
LastModifiedBy?: string | null
[src]

The Amazon Resource Name (ARN) of the user who last modified the job.

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

The modification date and time of the job.

§
LogSubscription?: LogSubscription | null
[src]

The current status of Amazon CloudWatch logging for the job.

§
MaxCapacity?: number | null
[src]

The maximum number of nodes that can be consumed 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 unique name of the job.

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

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

§
ProjectName?: string | null
[src]

The name of the project that the job is associated with.

§
RecipeReference?: RecipeReference | null
[src]

A set of steps that the job runs.

§
ResourceArn?: string | null
[src]

The unique Amazon Resource Name (ARN) for the job.

§
RoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the role to be assumed for this job.

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

Metadata tags that have been applied to the 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 of the job, which must be one of the following:

  • PROFILE - A job to analyze a dataset, to determine its size, data types, data distribution, and more.
  • RECIPE - A job to apply one or more transformations to a dataset.
§
ValidationConfigurations?: ValidationConfiguration[] | null
[src]

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