You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::EFS::Types::PosixUser

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing PosixUser as input to an Aws::Client method, you can use a vanilla 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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#gidInteger

The POSIX group ID used for all file system operations using this access point.

Returns:

  • (Integer)

    The POSIX group ID used for all file system operations using this access point.

#secondary_gidsArray<Integer>

Secondary POSIX group IDs used for all file system operations using this access point.

Returns:

  • (Array<Integer>)

    Secondary POSIX group IDs used for all file system operations using this access point.

#uidInteger

The POSIX user ID used for all file system operations using this access point.

Returns:

  • (Integer)

    The POSIX user ID used for all file system operations using this access point.