Struct aws_sdk_transfer::types::PosixProfile
source · #[non_exhaustive]pub struct PosixProfile {
pub uid: Option<i64>,
pub gid: Option<i64>,
pub secondary_gids: Option<Vec<i64>>,
}Expand description
The full POSIX identity, including user ID (Uid), group ID (Gid), and any secondary groups IDs (SecondaryGids), that controls your users' access to your Amazon EFS file systems. The POSIX permissions that are set on files and directories in your file system determine the level of access your users get when transferring files into and out of your Amazon EFS file systems.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.uid: Option<i64>The POSIX user ID used for all EFS operations by this user.
gid: Option<i64>The POSIX group ID used for all EFS operations by this user.
secondary_gids: Option<Vec<i64>>The secondary POSIX group IDs used for all EFS operations by this user.
Implementations§
source§impl PosixProfile
impl PosixProfile
sourcepub fn secondary_gids(&self) -> Option<&[i64]>
pub fn secondary_gids(&self) -> Option<&[i64]>
The secondary POSIX group IDs used for all EFS operations by this user.
source§impl PosixProfile
impl PosixProfile
sourcepub fn builder() -> PosixProfileBuilder
pub fn builder() -> PosixProfileBuilder
Creates a new builder-style object to manufacture PosixProfile.
Trait Implementations§
source§impl Clone for PosixProfile
impl Clone for PosixProfile
source§fn clone(&self) -> PosixProfile
fn clone(&self) -> PosixProfile
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 PosixProfile
impl Debug for PosixProfile
source§impl PartialEq for PosixProfile
impl PartialEq for PosixProfile
source§fn eq(&self, other: &PosixProfile) -> bool
fn eq(&self, other: &PosixProfile) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PosixProfile
Auto Trait Implementations§
impl RefUnwindSafe for PosixProfile
impl Send for PosixProfile
impl Sync for PosixProfile
impl Unpin for PosixProfile
impl UnwindSafe for PosixProfile
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