Struct aws_sdk_transfer::types::PosixProfile
source · #[non_exhaustive]pub struct PosixProfile {
pub uid: i64,
pub gid: 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
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.uid: i64The POSIX user ID used for all EFS operations by this user.
gid: i64The 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) -> &[i64]
pub fn secondary_gids(&self) -> &[i64]
The secondary POSIX group IDs used for all EFS operations by this user.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .secondary_gids.is_none().
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PosixProfile
impl Debug for PosixProfile
source§impl PartialEq for PosixProfile
impl PartialEq for PosixProfile
impl StructuralPartialEq for PosixProfile
Auto Trait Implementations§
impl Freeze for PosixProfile
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more