pub struct UpdateTaskRequest {
pub cloud_watch_log_group_arn: Option<String>,
pub excludes: Option<Vec<FilterRule>>,
pub name: Option<String>,
pub options: Option<Options>,
pub schedule: Option<TaskSchedule>,
pub task_arn: String,
}
Expand description
UpdateTaskResponse
Fields§
§cloud_watch_log_group_arn: Option<String>
The Amazon Resource Name (ARN) of the resource name of the CloudWatch LogGroup.
excludes: Option<Vec<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: Option<String>
The name of the task to update.
options: Option<Options>
§schedule: Option<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.
Trait Implementations§
Source§impl Clone for UpdateTaskRequest
impl Clone for UpdateTaskRequest
Source§fn clone(&self) -> UpdateTaskRequest
fn clone(&self) -> UpdateTaskRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more