Interface NFSFileShareDefaults.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NFSFileShareDefaults.Builder,NFSFileShareDefaults>,SdkBuilder<NFSFileShareDefaults.Builder,NFSFileShareDefaults>,SdkPojo
- Enclosing class:
- NFSFileShareDefaults
public static interface NFSFileShareDefaults.Builder extends SdkPojo, CopyableBuilder<NFSFileShareDefaults.Builder,NFSFileShareDefaults>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NFSFileShareDefaults.BuilderdirectoryMode(String directoryMode)The Unix directory mode in the form "nnnn".NFSFileShareDefaults.BuilderfileMode(String fileMode)The Unix file mode in the form "nnnn".NFSFileShareDefaults.BuildergroupId(Long groupId)The default group ID for the file share (unless the files have another group ID specified).NFSFileShareDefaults.BuilderownerId(Long ownerId)The default owner ID for files in the file share (unless the files have another owner ID specified).-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
fileMode
NFSFileShareDefaults.Builder fileMode(String fileMode)
The Unix file mode in the form "nnnn". For example,
0666represents the default file mode inside the file share. The default value is0666.- Parameters:
fileMode- The Unix file mode in the form "nnnn". For example,0666represents the default file mode inside the file share. The default value is0666.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
directoryMode
NFSFileShareDefaults.Builder directoryMode(String directoryMode)
The Unix directory mode in the form "nnnn". For example,
0666represents the default access mode for all directories inside the file share. The default value is0777.- Parameters:
directoryMode- The Unix directory mode in the form "nnnn". For example,0666represents the default access mode for all directories inside the file share. The default value is0777.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupId
NFSFileShareDefaults.Builder groupId(Long groupId)
The default group ID for the file share (unless the files have another group ID specified). The default value is
nfsnobody.- Parameters:
groupId- The default group ID for the file share (unless the files have another group ID specified). The default value isnfsnobody.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ownerId
NFSFileShareDefaults.Builder ownerId(Long ownerId)
The default owner ID for files in the file share (unless the files have another owner ID specified). The default value is
nfsnobody.- Parameters:
ownerId- The default owner ID for files in the file share (unless the files have another owner ID specified). The default value isnfsnobody.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-