package awsdatasync // Represents the Network File System (NFS) protocol that AWS DataSync uses to access your Amazon FSx for OpenZFS file system. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // nFSProperty := &NFSProperty{ // MountOptions: &MountOptionsProperty{ // Version: jsii.String("version"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationfsxopenzfs-nfs.html // type CfnLocationFSxOpenZFS_NFSProperty struct { // Represents the mount options that are available for DataSync to access an NFS location. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationfsxopenzfs-nfs.html#cfn-datasync-locationfsxopenzfs-nfs-mountoptions // MountOptions interface{} `field:"required" json:"mountOptions" yaml:"mountOptions"` }