Class: Aws::S3Files::Types::CreationPermissions

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#owner_gidInteger

The POSIX group ID to assign to newly created directories.

Returns:

  • (Integer)


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_uidInteger

The POSIX user ID to assign to newly created directories.

Returns:

  • (Integer)


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

#permissionsString

The octal permissions to assign to newly created directories.

Returns:

  • (String)


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