pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateTaskExecutionInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn task_execution_arn(self, input: impl Into<String>) -> Self
pub fn task_execution_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the specific task execution that is being updated.
sourcepub fn set_task_execution_arn(self, input: Option<String>) -> Self
pub fn set_task_execution_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the specific task execution that is being updated.
sourcepub fn options(self, input: Options) -> Self
pub fn options(self, input: Options) -> Self
Configures your DataSync task settings. These options include how DataSync handles files, objects, and their associated metadata. You also can specify how DataSync verifies data integrity, set bandwidth limits for your task, among other options.
Each task setting has a default value. Unless you need to, you don't have to configure any of these Options
before starting your task.
sourcepub fn set_options(self, input: Option<Options>) -> Self
pub fn set_options(self, input: Option<Options>) -> Self
Configures your DataSync task settings. These options include how DataSync handles files, objects, and their associated metadata. You also can specify how DataSync verifies data integrity, set bandwidth limits for your task, among other options.
Each task setting has a default value. Unless you need to, you don't have to configure any of these Options
before starting your task.
sourcepub fn build(self) -> Result<UpdateTaskExecutionInput, BuildError>
pub fn build(self) -> Result<UpdateTaskExecutionInput, BuildError>
Consumes the builder and constructs a UpdateTaskExecutionInput
.