Struct aws_sdk_fsx::model::S3DataRepositoryConfiguration
source · [−]#[non_exhaustive]pub struct S3DataRepositoryConfiguration {
pub auto_import_policy: Option<AutoImportPolicy>,
pub auto_export_policy: Option<AutoExportPolicy>,
}
Expand description
The configuration for an Amazon S3 data repository linked to an Amazon FSx Lustre file system with a data repository association. The configuration consists of an AutoImportPolicy
that defines file events on the data repository are automatically imported to the file system and an AutoExportPolicy
that defines which file events on the file system are automatically exported to the data repository. File events are when files or directories are added, changed, or deleted on the file system or the data repository.
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.auto_import_policy: Option<AutoImportPolicy>
Specifies the type of updated objects (new, changed, deleted) that will be automatically imported from the linked S3 bucket to your file system.
auto_export_policy: Option<AutoExportPolicy>
Specifies the type of updated objects (new, changed, deleted) that will be automatically exported from your file system to the linked S3 bucket.
Implementations
sourceimpl S3DataRepositoryConfiguration
impl S3DataRepositoryConfiguration
sourcepub fn auto_import_policy(&self) -> Option<&AutoImportPolicy>
pub fn auto_import_policy(&self) -> Option<&AutoImportPolicy>
Specifies the type of updated objects (new, changed, deleted) that will be automatically imported from the linked S3 bucket to your file system.
sourcepub fn auto_export_policy(&self) -> Option<&AutoExportPolicy>
pub fn auto_export_policy(&self) -> Option<&AutoExportPolicy>
Specifies the type of updated objects (new, changed, deleted) that will be automatically exported from your file system to the linked S3 bucket.
sourceimpl S3DataRepositoryConfiguration
impl S3DataRepositoryConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture S3DataRepositoryConfiguration
Trait Implementations
sourceimpl Clone for S3DataRepositoryConfiguration
impl Clone for S3DataRepositoryConfiguration
sourcefn clone(&self) -> S3DataRepositoryConfiguration
fn clone(&self) -> S3DataRepositoryConfiguration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for S3DataRepositoryConfiguration
impl Debug for S3DataRepositoryConfiguration
sourceimpl PartialEq<S3DataRepositoryConfiguration> for S3DataRepositoryConfiguration
impl PartialEq<S3DataRepositoryConfiguration> for S3DataRepositoryConfiguration
sourcefn eq(&self, other: &S3DataRepositoryConfiguration) -> bool
fn eq(&self, other: &S3DataRepositoryConfiguration) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &S3DataRepositoryConfiguration) -> bool
fn ne(&self, other: &S3DataRepositoryConfiguration) -> bool
This method tests for !=
.
impl StructuralPartialEq for S3DataRepositoryConfiguration
Auto Trait Implementations
impl RefUnwindSafe for S3DataRepositoryConfiguration
impl Send for S3DataRepositoryConfiguration
impl Sync for S3DataRepositoryConfiguration
impl Unpin for S3DataRepositoryConfiguration
impl UnwindSafe for S3DataRepositoryConfiguration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more