Class: Aws::S3Files::Types::CreationPermissions
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Files::Types::CreationPermissions
- Defined in:
- gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb
Overview
Specifies the permissions to set on newly created directories within the file system.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#owner_gid ⇒ Integer
The POSIX group ID to assign to newly created directories.
-
#owner_uid ⇒ Integer
The POSIX user ID to assign to newly created directories.
-
#permissions ⇒ String
The octal permissions to assign to newly created directories.
Instance Attribute Details
#owner_gid ⇒ Integer
The POSIX group ID to assign to newly created directories.
444 445 446 447 448 449 450 |
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 444 class CreationPermissions < Struct.new( :owner_uid, :owner_gid, :permissions) SENSITIVE = [] include Aws::Structure end |
#owner_uid ⇒ Integer
The POSIX user ID to assign to newly created directories.
444 445 446 447 448 449 450 |
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 444 class CreationPermissions < Struct.new( :owner_uid, :owner_gid, :permissions) SENSITIVE = [] include Aws::Structure end |
#permissions ⇒ String
The octal permissions to assign to newly created directories.
444 445 446 447 448 449 450 |
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 444 class CreationPermissions < Struct.new( :owner_uid, :owner_gid, :permissions) SENSITIVE = [] include Aws::Structure end |