Class: Aws::Transfer::Types::PosixProfile
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::PosixProfile
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transfer/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#gid ⇒ Integer
The POSIX group ID used for all EFS operations by this user.
-
#secondary_gids ⇒ Array<Integer>
The secondary POSIX group IDs used for all EFS operations by this user.
-
#uid ⇒ Integer
The POSIX user ID used for all EFS operations by this user.
Instance Attribute Details
#gid ⇒ Integer
The POSIX group ID used for all EFS operations by this user.
4794 4795 4796 4797 4798 4799 4800 |
# File 'lib/aws-sdk-transfer/types.rb', line 4794 class PosixProfile < Struct.new( :uid, :gid, :secondary_gids) SENSITIVE = [] include Aws::Structure end |
#secondary_gids ⇒ Array<Integer>
The secondary POSIX group IDs used for all EFS operations by this user.
4794 4795 4796 4797 4798 4799 4800 |
# File 'lib/aws-sdk-transfer/types.rb', line 4794 class PosixProfile < Struct.new( :uid, :gid, :secondary_gids) SENSITIVE = [] include Aws::Structure end |
#uid ⇒ Integer
The POSIX user ID used for all EFS operations by this user.
4794 4795 4796 4797 4798 4799 4800 |
# File 'lib/aws-sdk-transfer/types.rb', line 4794 class PosixProfile < Struct.new( :uid, :gid, :secondary_gids) SENSITIVE = [] include Aws::Structure end |