#[non_exhaustive]pub struct UpdateTaskExecutionInput {
pub task_execution_arn: Option<String>,
pub options: Option<Options>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.task_execution_arn: Option<String>
Specifies the Amazon Resource Name (ARN) of the task execution that you're updating.
options: Option<Options>
Indicates how your transfer task is configured. These options include how DataSync handles files, objects, and their associated metadata during your transfer. You also can specify how to verify data integrity, set bandwidth limits for your task, among other options.
Each option has a default value. Unless you need to, you don't have to configure any of these options before starting your task.
Implementations§
source§impl UpdateTaskExecutionInput
impl UpdateTaskExecutionInput
sourcepub fn task_execution_arn(&self) -> Option<&str>
pub fn task_execution_arn(&self) -> Option<&str>
Specifies the Amazon Resource Name (ARN) of the task execution that you're updating.
sourcepub fn options(&self) -> Option<&Options>
pub fn options(&self) -> Option<&Options>
Indicates how your transfer task is configured. These options include how DataSync handles files, objects, and their associated metadata during your transfer. You also can specify how to verify data integrity, set bandwidth limits for your task, among other options.
Each option has a default value. Unless you need to, you don't have to configure any of these options before starting your task.
source§impl UpdateTaskExecutionInput
impl UpdateTaskExecutionInput
sourcepub fn builder() -> UpdateTaskExecutionInputBuilder
pub fn builder() -> UpdateTaskExecutionInputBuilder
Creates a new builder-style object to manufacture UpdateTaskExecutionInput
.
Trait Implementations§
source§impl Clone for UpdateTaskExecutionInput
impl Clone for UpdateTaskExecutionInput
source§fn clone(&self) -> UpdateTaskExecutionInput
fn clone(&self) -> UpdateTaskExecutionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateTaskExecutionInput
impl Debug for UpdateTaskExecutionInput
source§impl PartialEq for UpdateTaskExecutionInput
impl PartialEq for UpdateTaskExecutionInput
source§fn eq(&self, other: &UpdateTaskExecutionInput) -> bool
fn eq(&self, other: &UpdateTaskExecutionInput) -> bool
self
and other
values to be equal, and is used
by ==
.