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

DescribeTaskResponse

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

DescribeTaskResponse

interface DescribeTaskResponse {
CloudWatchLogGroupArn?: string | null;
CreationTime?: Date | number | null;
CurrentTaskExecutionArn?: string | null;
DestinationLocationArn?: string | null;
DestinationNetworkInterfaceArns?: string[] | null;
ErrorCode?: string | null;
ErrorDetail?: string | null;
Excludes?: FilterRule[] | null;
Includes?: FilterRule[] | null;
Name?: string | null;
Options?: Options | null;
Schedule?: TaskSchedule | null;
SourceLocationArn?: string | null;
SourceNetworkInterfaceArns?: string[] | null;
Status?: TaskStatus | null;
TaskArn?: string | null;
}

§Properties

§
CloudWatchLogGroupArn?: string | null
[src]

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

For more information on these groups, see Working with Log Groups and Log Streams in the Amazon CloudWatch User Guide.

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

The time that the task was created.

§
CurrentTaskExecutionArn?: string | null
[src]

The Amazon Resource Name (ARN) of the task execution that is syncing files.

§
DestinationLocationArn?: string | null
[src]

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

§
DestinationNetworkInterfaceArns?: string[] | null
[src]

The Amazon Resource Names (ARNs) of the destination elastic network interfaces (ENIs) that were created for your subnet.

§
ErrorCode?: string | null
[src]

Errors that DataSync encountered during execution of the task. You can use this error code to help troubleshoot issues.

§
ErrorDetail?: string | null
[src]

Detailed description of an error that was encountered during the task execution. You can use this information to help troubleshoot issues.

§
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 the task that was described.

§
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 (GID), file permissions, data integrity verification, and so on.

For each individual task execution, you can override these options by specifying the overriding OverrideOptions value to StartTaskExecution operation.

§
Schedule?: TaskSchedule | null
[src]

The schedule used to periodically transfer files from a source to a destination location.

§
SourceLocationArn?: string | null
[src]

The Amazon Resource Name (ARN) of the source file system's location.

§
SourceNetworkInterfaceArns?: string[] | null
[src]

The Amazon Resource Names (ARNs) of the source elastic network interfaces (ENIs) that were created for your subnet.

§
Status?: TaskStatus | null
[src]

The status of the task that was described.

For detailed information about task execution statuses, see Understanding Task Statuses in the DataSync User Guide.

§
TaskArn?: string | null
[src]

The Amazon Resource Name (ARN) of the task that was described.