Struct aws_sdk_datasync::input::StartTaskExecutionInput
source · #[non_exhaustive]pub struct StartTaskExecutionInput { /* private fields */ }
Expand description
StartTaskExecutionRequest
Implementations§
source§impl StartTaskExecutionInput
impl StartTaskExecutionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartTaskExecution, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartTaskExecution, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartTaskExecution
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartTaskExecutionInput
.
source§impl StartTaskExecutionInput
impl StartTaskExecutionInput
sourcepub fn task_arn(&self) -> Option<&str>
pub fn task_arn(&self) -> Option<&str>
Specifies the Amazon Resource Name (ARN) of the task that you want to start.
sourcepub fn override_options(&self) -> Option<&Options>
pub fn override_options(&self) -> Option<&Options>
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 includes(&self) -> Option<&[FilterRule]>
pub fn includes(&self) -> Option<&[FilterRule]>
Specifies a list of filter rules that determines which files to include when running a task. The pattern should contain a single filter string that consists of the patterns to include. The patterns are delimited by "|" (that is, a pipe), for example, "/folder1|/folder2"
.
sourcepub fn excludes(&self) -> Option<&[FilterRule]>
pub fn excludes(&self) -> Option<&[FilterRule]>
Specifies a list of filter rules that determines which files to exclude from a task. The list contains a single filter string that consists of the patterns to exclude. The patterns are delimited by "|" (that is, a pipe), for example, "/folder1|/folder2"
.
Specifies the tags that you want to apply to the Amazon Resource Name (ARN) representing the task execution.
Tags are key-value pairs that help you manage, filter, and search for your DataSync resources.
Trait Implementations§
source§impl Clone for StartTaskExecutionInput
impl Clone for StartTaskExecutionInput
source§fn clone(&self) -> StartTaskExecutionInput
fn clone(&self) -> StartTaskExecutionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StartTaskExecutionInput
impl Debug for StartTaskExecutionInput
source§impl PartialEq<StartTaskExecutionInput> for StartTaskExecutionInput
impl PartialEq<StartTaskExecutionInput> for StartTaskExecutionInput
source§fn eq(&self, other: &StartTaskExecutionInput) -> bool
fn eq(&self, other: &StartTaskExecutionInput) -> bool
self
and other
values to be equal, and is used
by ==
.