Show / Hide Table of Contents

Class TaskOptionsArgs

Inheritance
System.Object
InputArgs
ResourceArgs
TaskOptionsArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.DataSync.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class TaskOptionsArgs : ResourceArgs

Constructors

View Source

TaskOptionsArgs()

Declaration
public TaskOptionsArgs()

Properties

View Source

Atime

A file metadata that shows the last time a file was accessed (that is when the file was read or written to). If set to BEST_EFFORT, the DataSync Task attempts to preserve the original (that is, the version before sync PREPARING phase) atime attribute on all source files. Valid values: BEST_EFFORT, NONE. Default: BEST_EFFORT.

Declaration
public Input<string> Atime { get; set; }
Property Value
Type Description
Input<System.String>
View Source

BytesPerSecond

Limits the bandwidth utilized. For example, to set a maximum of 1 MB, set this value to 1048576. Value values: -1 or greater. Default: -1 (unlimited).

Declaration
public Input<int> BytesPerSecond { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Gid

Group identifier of the file's owners. Valid values: BOTH, INT_VALUE, NAME, NONE. Default: INT_VALUE (preserve integer value of the ID).

Declaration
public Input<string> Gid { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Mtime

A file metadata that indicates the last time a file was modified (written to) before the sync PREPARING phase. Value values: NONE, PRESERVE. Default: PRESERVE.

Declaration
public Input<string> Mtime { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PosixPermissions

Determines which users or groups can access a file for a specific purpose such as reading, writing, or execution of the file. Valid values: NONE, PRESERVE. Default: PRESERVE.

Declaration
public Input<string> PosixPermissions { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PreserveDeletedFiles

Whether files deleted in the source should be removed or preserved in the destination file system. Valid values: PRESERVE, REMOVE. Default: PRESERVE.

Declaration
public Input<string> PreserveDeletedFiles { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PreserveDevices

Whether the DataSync Task should preserve the metadata of block and character devices in the source files system, and recreate the files with that device name and metadata on the destination. The DataSync Task can’t sync the actual contents of such devices, because many of the devices are non-terminal and don’t return an end of file (EOF) marker. Valid values: NONE, PRESERVE. Default: NONE (ignore special devices).

Declaration
public Input<string> PreserveDevices { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Uid

User identifier of the file's owners. Valid values: BOTH, INT_VALUE, NAME, NONE. Default: INT_VALUE (preserve integer value of the ID).

Declaration
public Input<string> Uid { get; set; }
Property Value
Type Description
Input<System.String>
View Source

VerifyMode

Whether a data integrity verification should be performed at the end of a task execution after all data and metadata have been transferred. Valid values: NONE, POINT_IN_TIME_CONSISTENT, ONLY_FILES_TRANSFERRED. Default: POINT_IN_TIME_CONSISTENT.

Declaration
public Input<string> VerifyMode { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.