Class: Aws::EFS::Types::PosixUser
- Inherits:
-
Struct
- Object
- Struct
- Aws::EFS::Types::PosixUser
- Defined in:
- gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb
Overview
Note:
When making an API call, you may pass PosixUser data as a hash:
{
uid: 1, # required
gid: 1, # required
secondary_gids: [1],
}
The full POSIX identity, including the user ID, group ID, and any secondary group IDs, on the access point that is used for all file system operations performed by NFS clients using the access point.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#gid ⇒ Integer
The POSIX group ID used for all file system operations using this access point.
-
#secondary_gids ⇒ Array<Integer>
Secondary POSIX group IDs used for all file system operations using this access point.
-
#uid ⇒ Integer
The POSIX user ID used for all file system operations using this access point.
Instance Attribute Details
#gid ⇒ Integer
The POSIX group ID used for all file system operations using this access point.
2292 2293 2294 2295 2296 2297 2298 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2292 class PosixUser < Struct.new( :uid, :gid, :secondary_gids) SENSITIVE = [] include Aws::Structure end |
#secondary_gids ⇒ Array<Integer>
Secondary POSIX group IDs used for all file system operations using this access point.
2292 2293 2294 2295 2296 2297 2298 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2292 class PosixUser < Struct.new( :uid, :gid, :secondary_gids) SENSITIVE = [] include Aws::Structure end |