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

CreateProfileJobRequest

import type { CreateProfileJobRequest } from "https://aws-api.deno.dev/v0.3/services/databrew.ts?docs=full";
interface CreateProfileJobRequest {
Configuration?: ProfileConfiguration | null;
DatasetName: string;
EncryptionKeyArn?: string | null;
EncryptionMode?: EncryptionMode | null;
JobSample?: JobSample | null;
LogSubscription?: LogSubscription | null;
MaxCapacity?: number | null;
MaxRetries?: number | null;
Name: string;
OutputLocation: S3Location;
RoleArn: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
Timeout?: number | null;
ValidationConfigurations?: ValidationConfiguration[] | null;
}

§Properties

§
Configuration?: 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.

§
DatasetName: string
[src]

The name of the dataset that this job is to act 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 - SSE-KMS - Server-side encryption with KMS-managed keys.
  • 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. If a JobSample value is not provided, the default value will be used. The default value is CUSTOM_ROWS for the mode parameter and 20000 for the size parameter.

§
LogSubscription?: LogSubscription | null
[src]

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

§
MaxCapacity?: number | null
[src]

The maximum number of nodes that DataBrew can use 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 to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.

§
OutputLocation: S3Location
[src]
§
RoleArn: string
[src]

The Amazon Resource Name (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 to apply to 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.

§
ValidationConfigurations?: ValidationConfiguration[] | null
[src]

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