pub struct FileSystemConfig {
pub arn: String,
pub local_mount_path: String,
}
Expand description
Details about the connection between a Lambda function and an Amazon EFS file system.
Fields§
§arn: String
The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.
local_mount_path: String
The path where the function can access the file system, starting with /mnt/
.
Trait Implementations§
Source§impl Clone for FileSystemConfig
impl Clone for FileSystemConfig
Source§fn clone(&self) -> FileSystemConfig
fn clone(&self) -> FileSystemConfig
Returns a copy 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 Debug for FileSystemConfig
impl Debug for FileSystemConfig
Source§impl Default for FileSystemConfig
impl Default for FileSystemConfig
Source§fn default() -> FileSystemConfig
fn default() -> FileSystemConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FileSystemConfig
impl<'de> Deserialize<'de> for FileSystemConfig
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 FileSystemConfig
impl PartialEq for FileSystemConfig
Source§impl Serialize for FileSystemConfig
impl Serialize for FileSystemConfig
impl StructuralPartialEq for FileSystemConfig
Auto Trait Implementations§
impl Freeze for FileSystemConfig
impl RefUnwindSafe for FileSystemConfig
impl Send for FileSystemConfig
impl Sync for FileSystemConfig
impl Unpin for FileSystemConfig
impl UnwindSafe for FileSystemConfig
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