Struct aws_sdk_lambda::model::file_system_config::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for FileSystemConfig
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.
sourcepub fn local_mount_path(self, input: impl Into<String>) -> Self
pub fn local_mount_path(self, input: impl Into<String>) -> Self
The path where the function can access the file system, starting with /mnt/
.
sourcepub fn set_local_mount_path(self, input: Option<String>) -> Self
pub fn set_local_mount_path(self, input: Option<String>) -> Self
The path where the function can access the file system, starting with /mnt/
.
sourcepub fn build(self) -> FileSystemConfig
pub fn build(self) -> FileSystemConfig
Consumes the builder and constructs a FileSystemConfig
.