#[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 option before calling StartTaskExecution.
You also can override your task options for each task execution. For example, you might want to adjust the LogLevel
for an individual execution.
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 option before calling StartTaskExecution.
You also can override your task options for each task execution. For example, you might want to adjust the LogLevel
for an individual execution.
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
impl StructuralPartialEq for UpdateTaskExecutionInput
Auto Trait Implementations§
impl Freeze for UpdateTaskExecutionInput
impl RefUnwindSafe for UpdateTaskExecutionInput
impl Send for UpdateTaskExecutionInput
impl Sync for UpdateTaskExecutionInput
impl Unpin for UpdateTaskExecutionInput
impl UnwindSafe for UpdateTaskExecutionInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more