pub struct CreateDataRepositoryTaskRequest {
pub client_request_token: Option<String>,
pub file_system_id: String,
pub paths: Option<Vec<String>>,
pub report: CompletionReport,
pub tags: Option<Vec<Tag>>,
pub type_: String,
}
Fields§
§client_request_token: Option<String>
§file_system_id: String
§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.
report: 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.
type_: String
Specifies the type of data repository task to create.
Trait Implementations§
Source§impl Clone for CreateDataRepositoryTaskRequest
impl Clone for CreateDataRepositoryTaskRequest
Source§fn clone(&self) -> CreateDataRepositoryTaskRequest
fn clone(&self) -> CreateDataRepositoryTaskRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for CreateDataRepositoryTaskRequest
impl Default for CreateDataRepositoryTaskRequest
Source§fn default() -> CreateDataRepositoryTaskRequest
fn default() -> CreateDataRepositoryTaskRequest
Source§impl PartialEq for CreateDataRepositoryTaskRequest
impl PartialEq for CreateDataRepositoryTaskRequest
Source§fn eq(&self, other: &CreateDataRepositoryTaskRequest) -> bool
fn eq(&self, other: &CreateDataRepositoryTaskRequest) -> bool
self
and other
values to be equal, and is used by ==
.