#[non_exhaustive]pub struct FSxWindowsFileServerVolumeConfiguration {
pub file_system_id: Option<String>,
pub root_directory: Option<String>,
pub authorization_config: Option<FSxWindowsFileServerAuthorizationConfig>,
}
Expand description
This parameter is specified when you're using Amazon FSx for Windows File Server file system for task storage.
For more information and the input format, see Amazon FSx for Windows File Server Volumes in the Amazon Elastic Container Service Developer Guide.
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.file_system_id: Option<String>
The Amazon FSx for Windows File Server file system ID to use.
root_directory: Option<String>
The directory within the Amazon FSx for Windows File Server file system to mount as the root directory inside the host.
The authorization configuration details for the Amazon FSx for Windows File Server file system.
Implementations
sourceimpl FSxWindowsFileServerVolumeConfiguration
impl FSxWindowsFileServerVolumeConfiguration
sourcepub fn file_system_id(&self) -> Option<&str>
pub fn file_system_id(&self) -> Option<&str>
The Amazon FSx for Windows File Server file system ID to use.
sourcepub fn root_directory(&self) -> Option<&str>
pub fn root_directory(&self) -> Option<&str>
The directory within the Amazon FSx for Windows File Server file system to mount as the root directory inside the host.
The authorization configuration details for the Amazon FSx for Windows File Server file system.
sourceimpl FSxWindowsFileServerVolumeConfiguration
impl FSxWindowsFileServerVolumeConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FSxWindowsFileServerVolumeConfiguration
Trait Implementations
sourceimpl Clone for FSxWindowsFileServerVolumeConfiguration
impl Clone for FSxWindowsFileServerVolumeConfiguration
sourcefn clone(&self) -> FSxWindowsFileServerVolumeConfiguration
fn clone(&self) -> FSxWindowsFileServerVolumeConfiguration
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 PartialEq<FSxWindowsFileServerVolumeConfiguration> for FSxWindowsFileServerVolumeConfiguration
impl PartialEq<FSxWindowsFileServerVolumeConfiguration> for FSxWindowsFileServerVolumeConfiguration
sourcefn eq(&self, other: &FSxWindowsFileServerVolumeConfiguration) -> bool
fn eq(&self, other: &FSxWindowsFileServerVolumeConfiguration) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FSxWindowsFileServerVolumeConfiguration) -> bool
fn ne(&self, other: &FSxWindowsFileServerVolumeConfiguration) -> bool
This method tests for !=
.
impl StructuralPartialEq for FSxWindowsFileServerVolumeConfiguration
Auto Trait Implementations
impl RefUnwindSafe for FSxWindowsFileServerVolumeConfiguration
impl Send for FSxWindowsFileServerVolumeConfiguration
impl Sync for FSxWindowsFileServerVolumeConfiguration
impl Unpin for FSxWindowsFileServerVolumeConfiguration
impl UnwindSafe for FSxWindowsFileServerVolumeConfiguration
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