#[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§
source§impl 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.
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<FSxWindowsFileServerVolumeConfiguration> for FSxWindowsFileServerVolumeConfiguration
impl PartialEq<FSxWindowsFileServerVolumeConfiguration> 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 ==
.