Struct aws_sdk_fsx::input::CreateDataRepositoryTaskInput [−][src]
#[non_exhaustive]pub struct CreateDataRepositoryTaskInput {
pub type: Option<DataRepositoryTaskType>,
pub paths: Option<Vec<String>>,
pub file_system_id: Option<String>,
pub report: Option<CompletionReport>,
pub client_request_token: Option<String>,
pub tags: Option<Vec<Tag>>,
}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.type: Option<DataRepositoryTaskType>Specifies the type of data repository task to create.
paths: Option<Vec<String>>(Optional) The path or paths on the Amazon FSx file system to use when the data repository task is processed.
The default path is the file system root directory. The paths you provide need to be relative to the mount point of the file system.
If the mount point is /mnt/fsx and /mnt/fsx/path1 is a directory or
file on the file system you want to export, then the path to provide is path1.
If a path that you provide isn't valid, the task fails.
file_system_id: Option<String>The globally unique ID of the file system, assigned by Amazon FSx.
report: Option<CompletionReport>Defines whether or not Amazon FSx provides a CompletionReport once the task has completed.
A CompletionReport provides a detailed report on the files that Amazon FSx processed that meet the criteria specified by the
Scope parameter. For more information, see
Working with Task Completion Reports.
client_request_token: Option<String>(Optional) An idempotency token for resource creation, in a string of up to 64 ASCII characters. This token is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.
A list of Tag values, with a maximum of 50 elements.
Implementations
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateDataRepositoryTask, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateDataRepositoryTask, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateDataRepositoryTask>
Creates a new builder-style object to manufacture CreateDataRepositoryTaskInput
Specifies the type of data repository task to create.
(Optional) The path or paths on the Amazon FSx file system to use when the data repository task is processed.
The default path is the file system root directory. The paths you provide need to be relative to the mount point of the file system.
If the mount point is /mnt/fsx and /mnt/fsx/path1 is a directory or
file on the file system you want to export, then the path to provide is path1.
If a path that you provide isn't valid, the task fails.
The globally unique ID of the file system, assigned by Amazon FSx.
Defines whether or not Amazon FSx provides a CompletionReport once the task has completed.
A CompletionReport provides a detailed report on the files that Amazon FSx processed that meet the criteria specified by the
Scope parameter. For more information, see
Working with Task Completion Reports.
(Optional) An idempotency token for resource creation, in a string of up to 64 ASCII characters. This token is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.
A list of Tag values, with a maximum of 50 elements.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl Send for CreateDataRepositoryTaskInput
impl Sync for CreateDataRepositoryTaskInput
impl Unpin for CreateDataRepositoryTaskInput
impl UnwindSafe for CreateDataRepositoryTaskInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more