aws-cdk-lib.aws_datasync.CfnLocationFSxOpenZFS.MountOptionsProperty

interface MountOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.DataSync.CfnLocationFSxOpenZFS.MountOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatasync#CfnLocationFSxOpenZFS_MountOptionsProperty
Javasoftware.amazon.awscdk.services.datasync.CfnLocationFSxOpenZFS.MountOptionsProperty
Pythonaws_cdk.aws_datasync.CfnLocationFSxOpenZFS.MountOptionsProperty
TypeScript aws-cdk-lib » aws_datasync » CfnLocationFSxOpenZFS » MountOptionsProperty

Represents the mount options that are available for DataSync to access a Network File System (NFS) location.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datasync as datasync } from 'aws-cdk-lib';
const mountOptionsProperty: datasync.CfnLocationFSxOpenZFS.MountOptionsProperty = {
  version: 'version',
};

Properties

NameTypeDescription
version?stringThe specific NFS version that you want DataSync to use to mount your NFS share.

version?

Type: string (optional)

The specific NFS version that you want DataSync to use to mount your NFS share.

If the server refuses to use the version specified, the sync will fail. If you don't specify a version, DataSync defaults to AUTOMATIC . That is, DataSync automatically selects a version based on negotiation with the NFS server.

You can specify the following NFS versions:

  • NFSv3 : 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. Version 4.1 also includes all features available in version 4.0.