Class: Aws::S3Files::Types::PosixUser
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Files::Types::PosixUser
- Defined in:
- gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb
Overview
Specifies the POSIX identity with uid, gid, and secondary group IDs for user enforcement.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#gid ⇒ Integer
The POSIX group ID.
-
#secondary_gids ⇒ Array<Integer>
An array of secondary POSIX group IDs.
-
#uid ⇒ Integer
The POSIX user ID.
Instance Attribute Details
#gid ⇒ Integer
The POSIX group ID.
1245 1246 1247 1248 1249 1250 1251 |
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 1245 class PosixUser < Struct.new( :uid, :gid, :secondary_gids) SENSITIVE = [] include Aws::Structure end |