NFSFileShareDefaults

public struct NFSFileShareDefaults : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • 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.

    Declaration

    Swift

    public let directoryMode: 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.

    Declaration

    Swift

    public let fileMode: String?
  • The default group ID for the file share (unless the files have another group ID specified). The default value is nfsnobody.

    Declaration

    Swift

    public let groupId: Int64?
  • The default owner ID for files in the file share (unless the files have another owner ID specified). The default value is nfsnobody.

    Declaration

    Swift

    public let ownerId: Int64?
  • Undocumented

    Declaration

    Swift

    public init(directoryMode: String? = nil, fileMode: String? = nil, groupId: Int64? = nil, ownerId: Int64? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws