Class: Aws::DataSync::Types::NfsMountOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::NfsMountOptions
- Defined in:
- gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb
Overview
Specifies how DataSync can access a location using the NFS protocol.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#version ⇒ String
Specifies the NFS version that you want DataSync to use when mounting your NFS share.
Instance Attribute Details
#version ⇒ String
Specifies the NFS version that you want DataSync to use when mounting your NFS share. If the server refuses to use the version specified, the task fails.
You can specify the following options:
AUTOMATIC
(default): DataSync chooses NFS version 4.1.NFS3
: Stateless protocol version that allows for asynchronous writes on the server.NFSv4_0
: Stateful, firewall-friendly protocol version that supports delegations and pseudo file systems.NFSv4_1
: Stateful protocol version that supports sessions, directory delegations, and parallel data processing. NFS version 4.1 also includes all features available in version 4.0.
3692 3693 3694 3695 3696 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3692 class NfsMountOptions < Struct.new( :version) SENSITIVE = [] include Aws::Structure end |