pub struct FSxWindowsFileServerVolumeConfiguration {
pub authorization_config: FSxWindowsFileServerAuthorizationConfig,
pub file_system_id: String,
pub root_directory: String,
}
Expand description
This parameter is specified when you are 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§
The authorization configuration details for the Amazon FSx for Windows File Server file system.
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.
Trait Implementations§
Source§impl Clone for FSxWindowsFileServerVolumeConfiguration
impl Clone for FSxWindowsFileServerVolumeConfiguration
Source§fn clone(&self) -> FSxWindowsFileServerVolumeConfiguration
fn clone(&self) -> FSxWindowsFileServerVolumeConfiguration
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for FSxWindowsFileServerVolumeConfiguration
impl Default for FSxWindowsFileServerVolumeConfiguration
Source§fn default() -> FSxWindowsFileServerVolumeConfiguration
fn default() -> FSxWindowsFileServerVolumeConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FSxWindowsFileServerVolumeConfiguration
impl<'de> Deserialize<'de> for FSxWindowsFileServerVolumeConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FSxWindowsFileServerVolumeConfiguration
impl PartialEq for FSxWindowsFileServerVolumeConfiguration
Source§fn eq(&self, other: &FSxWindowsFileServerVolumeConfiguration) -> bool
fn eq(&self, other: &FSxWindowsFileServerVolumeConfiguration) -> bool
Tests for
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
Mutably borrows from an owned value. Read more