Interface PosixProfile.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PosixProfile.Builder,PosixProfile>,SdkBuilder<PosixProfile.Builder,PosixProfile>,SdkPojo
- Enclosing class:
- PosixProfile
public static interface PosixProfile.Builder extends SdkPojo, CopyableBuilder<PosixProfile.Builder,PosixProfile>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PosixProfile.Buildergid(Long gid)The POSIX group ID used for all EFS operations by this user.PosixProfile.BuildersecondaryGids(Long... secondaryGids)The secondary POSIX group IDs used for all EFS operations by this user.PosixProfile.BuildersecondaryGids(Collection<Long> secondaryGids)The secondary POSIX group IDs used for all EFS operations by this user.PosixProfile.Builderuid(Long uid)The POSIX user ID used for all EFS operations by this user.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
uid
PosixProfile.Builder uid(Long uid)
The POSIX user ID used for all EFS operations by this user.
- Parameters:
uid- The POSIX user ID used for all EFS operations by this user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gid
PosixProfile.Builder gid(Long gid)
The POSIX group ID used for all EFS operations by this user.
- Parameters:
gid- The POSIX group ID used for all EFS operations by this user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
secondaryGids
PosixProfile.Builder secondaryGids(Collection<Long> secondaryGids)
The secondary POSIX group IDs used for all EFS operations by this user.
- Parameters:
secondaryGids- The secondary POSIX group IDs used for all EFS operations by this user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
secondaryGids
PosixProfile.Builder secondaryGids(Long... secondaryGids)
The secondary POSIX group IDs used for all EFS operations by this user.
- Parameters:
secondaryGids- The secondary POSIX group IDs used for all EFS operations by this user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-