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: i64
The POSIX user ID used for all EFS operations by this user.
gid: 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) -> &[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
source§fn eq(&self, other: &PosixProfile) -> bool
fn eq(&self, other: &PosixProfile) -> bool
self
and other
values to be equal, and is used
by ==
.