You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::DataSync::Types::UpdateTaskRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::UpdateTaskRequest
- Defined in:
- (unknown)
Overview
When passing UpdateTaskRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
task_arn: "TaskArn", # required
options: {
verify_mode: "POINT_IN_TIME_CONSISTENT", # accepts POINT_IN_TIME_CONSISTENT, ONLY_FILES_TRANSFERRED, NONE
overwrite_mode: "ALWAYS", # accepts ALWAYS, NEVER
atime: "NONE", # accepts NONE, BEST_EFFORT
mtime: "NONE", # accepts NONE, PRESERVE
uid: "NONE", # accepts NONE, INT_VALUE, NAME, BOTH
gid: "NONE", # accepts NONE, INT_VALUE, NAME, BOTH
preserve_deleted_files: "PRESERVE", # accepts PRESERVE, REMOVE
preserve_devices: "NONE", # accepts NONE, PRESERVE
posix_permissions: "NONE", # accepts NONE, PRESERVE
bytes_per_second: 1,
task_queueing: "ENABLED", # accepts ENABLED, DISABLED
log_level: "OFF", # accepts OFF, BASIC, TRANSFER
transfer_mode: "CHANGED", # accepts CHANGED, ALL
},
excludes: [
{
filter_type: "SIMPLE_PATTERN", # accepts SIMPLE_PATTERN
value: "FilterValue",
},
],
schedule: {
schedule_expression: "ScheduleExpressionCron", # required
},
name: "TagValue",
cloud_watch_log_group_arn: "LogGroupArn",
}
UpdateTaskResponse
Instance Attribute Summary collapse
-
#cloud_watch_log_group_arn ⇒ String
The Amazon Resource Name (ARN) of the resource name of the CloudWatch LogGroup.
-
#excludes ⇒ Array<Types::FilterRule>
A list of filter rules that determines which files to exclude from a task.
-
#name ⇒ String
The name of the task to update.
-
#options ⇒ Types::Options
Represents the options that are available to control the behavior of a StartTaskExecution operation.
-
#schedule ⇒ Types::TaskSchedule
Specifies a schedule used to periodically transfer files from a source to a destination location.
-
#task_arn ⇒ String
The Amazon Resource Name (ARN) of the resource name of the task to update.
Instance Attribute Details
#cloud_watch_log_group_arn ⇒ String
The Amazon Resource Name (ARN) of the resource name of the CloudWatch LogGroup.
#excludes ⇒ Array<Types::FilterRule>
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"
#name ⇒ String
The name of the task to update.
#options ⇒ Types::Options
Represents the options that are available to control the behavior of a StartTaskExecution operation. Behavior includes preserving metadata such as user ID (UID), group ID (GID), and file permissions, and also overwriting files in the destination, data integrity verification, and so on.
A task has a set of default options associated with it. If you don't specify an option in StartTaskExecution, the default value is used. You can override the defaults options on each task execution by specifying an overriding Options
value to StartTaskExecution.
#schedule ⇒ Types::TaskSchedule
Specifies a schedule used to periodically transfer files from a source to a destination location. You can configure your task to execute hourly, daily, weekly or on specific days of the week. You control when in the day or hour you want the task to execute. The time you specify is UTC time. For more information, see task-scheduling.
#task_arn ⇒ String
The Amazon Resource Name (ARN) of the resource name of the task to update.