#[non_exhaustive]pub struct FSxWindowsFileServerVolumeConfiguration {
pub file_system_id: String,
pub root_directory: 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: String
The Amazon FSx for Windows File Server file system ID to use.
root_directory: 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§
source§impl FSxWindowsFileServerVolumeConfiguration
impl FSxWindowsFileServerVolumeConfiguration
sourcepub fn file_system_id(&self) -> &str
pub fn file_system_id(&self) -> &str
The Amazon FSx for Windows File Server file system ID to use.
sourcepub fn root_directory(&self) -> &str
pub fn root_directory(&self) -> &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.
source§impl FSxWindowsFileServerVolumeConfiguration
impl FSxWindowsFileServerVolumeConfiguration
sourcepub fn builder() -> FSxWindowsFileServerVolumeConfigurationBuilder
pub fn builder() -> FSxWindowsFileServerVolumeConfigurationBuilder
Creates a new builder-style object to manufacture FSxWindowsFileServerVolumeConfiguration
.
Trait Implementations§
source§impl Clone for FSxWindowsFileServerVolumeConfiguration
impl Clone for FSxWindowsFileServerVolumeConfiguration
source§fn clone(&self) -> FSxWindowsFileServerVolumeConfiguration
fn clone(&self) -> FSxWindowsFileServerVolumeConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for FSxWindowsFileServerVolumeConfiguration
impl PartialEq for FSxWindowsFileServerVolumeConfiguration
source§fn eq(&self, other: &FSxWindowsFileServerVolumeConfiguration) -> bool
fn eq(&self, other: &FSxWindowsFileServerVolumeConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FSxWindowsFileServerVolumeConfiguration
Auto Trait Implementations§
impl Freeze for FSxWindowsFileServerVolumeConfiguration
impl RefUnwindSafe for FSxWindowsFileServerVolumeConfiguration
impl Send for FSxWindowsFileServerVolumeConfiguration
impl Sync for FSxWindowsFileServerVolumeConfiguration
impl Unpin for FSxWindowsFileServerVolumeConfiguration
impl UnwindSafe for FSxWindowsFileServerVolumeConfiguration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more