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

CreateTaskRequest

import type { CreateTaskRequest } from "https://aws-api.deno.dev/v0.3/services/datasync.ts?docs=full";

CreateTaskRequest

interface CreateTaskRequest {
CloudWatchLogGroupArn?: string | null;
DestinationLocationArn: string;
Excludes?: FilterRule[] | null;
Includes?: FilterRule[] | null;
Name?: string | null;
Options?: Options | null;
Schedule?: TaskSchedule | null;
SourceLocationArn: string;
Tags?: TagListEntry[] | null;
}

§Properties

§
CloudWatchLogGroupArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Amazon CloudWatch log group that is used to monitor and log events in the task.

§
DestinationLocationArn: string
[src]

The Amazon Resource Name (ARN) of an Amazon Web Services storage resource's location.

§
Excludes?: FilterRule[] | null
[src]

A list of filter rules that determines which files to exclude from a task. The list should contain a single filter string that consists of the patterns to exclude. The patterns are delimited by "|" (that is, a pipe), for example, "/folder1|/folder2".

§
Includes?: FilterRule[] | null
[src]

A list of filter rules that determines which files to include when running a task. The pattern contains a single filter string that consists of the patterns to include. The patterns are delimited by "|" (that is, a pipe), for example, "/folder1|/folder2".

§
Name?: string | null
[src]

The name of a task. This value is a text reference that is used to identify the task in the console.

§
Options?: Options | null
[src]

The set of configuration options that control the behavior of a single execution of the task that occurs when you call StartTaskExecution. You can configure these options to preserve metadata such as user ID (UID) and group ID (GID), file permissions, data integrity verification, and so on.

For each individual task execution, you can override these options by specifying the OverrideOptions before starting the task execution. For more information, see the StartTaskExecution operation.

§
Schedule?: TaskSchedule | null
[src]

Specifies a schedule used to periodically transfer files from a source to a destination location. The schedule should be specified in UTC time. For more information, see Scheduling your task.

§
SourceLocationArn: string
[src]

The Amazon Resource Name (ARN) of the source location for the task.

§
Tags?: TagListEntry[] | null
[src]

The key-value pair that represents the tag that you want to add to the resource. The value can be an empty string.