Class: Aws::StorageGateway::Types::NFSFileShareDefaults
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::NFSFileShareDefaults
- Defined in:
- gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb
Overview
Describes Network File System (NFS) file share default values. Files and folders stored as Amazon S3 objects in S3 buckets don't, by default, have Unix file permissions assigned to them. Upon discovery in an S3 bucket by Storage Gateway, the S3 objects that represent files and folders are assigned these default Unix permissions. This operation is only supported for S3 File Gateways.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#directory_mode ⇒ String
The Unix directory mode in the form "nnnn".
-
#file_mode ⇒ String
The Unix file mode in the form "nnnn".
-
#group_id ⇒ Integer
The default group ID for the file share (unless the files have another group ID specified).
-
#owner_id ⇒ Integer
The default owner ID for files in the file share (unless the files have another owner ID specified).
Instance Attribute Details
#directory_mode ⇒ String
The Unix directory mode in the form "nnnn". For example, 0666
represents the default access mode for all directories inside the
file share. The default value is 0777
.
4900 4901 4902 4903 4904 4905 4906 4907 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4900 class NFSFileShareDefaults < Struct.new( :file_mode, :directory_mode, :group_id, :owner_id) SENSITIVE = [] include Aws::Structure end |
#file_mode ⇒ String
The Unix file mode in the form "nnnn". For example, 0666
represents the default file mode inside the file share. The default
value is 0666
.
4900 4901 4902 4903 4904 4905 4906 4907 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4900 class NFSFileShareDefaults < Struct.new( :file_mode, :directory_mode, :group_id, :owner_id) SENSITIVE = [] include Aws::Structure end |
#group_id ⇒ Integer
The default group ID for the file share (unless the files have
another group ID specified). The default value is nfsnobody
.
4900 4901 4902 4903 4904 4905 4906 4907 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4900 class NFSFileShareDefaults < Struct.new( :file_mode, :directory_mode, :group_id, :owner_id) SENSITIVE = [] include Aws::Structure end |
#owner_id ⇒ Integer
The default owner ID for files in the file share (unless the files
have another owner ID specified). The default value is nfsnobody
.
4900 4901 4902 4903 4904 4905 4906 4907 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 4900 class NFSFileShareDefaults < Struct.new( :file_mode, :directory_mode, :group_id, :owner_id) SENSITIVE = [] include Aws::Structure end |