package awsdatasync // Represents the 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" // // protocolProperty := &ProtocolProperty{ // Nfs: &NFSProperty{ // MountOptions: &MountOptionsProperty{ // Version: jsii.String("version"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationfsxopenzfs-protocol.html // type CfnLocationFSxOpenZFS_ProtocolProperty struct { // Represents the Network File System (NFS) protocol that DataSync uses to access your FSx for OpenZFS file system. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationfsxopenzfs-protocol.html#cfn-datasync-locationfsxopenzfs-protocol-nfs // Nfs interface{} `field:"optional" json:"nfs" yaml:"nfs"` }