interface ProtocolProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataSync.Mixins.CfnLocationFSxOpenZFSPropsMixin.ProtocolProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatasync/mixins#CfnLocationFSxOpenZFSPropsMixin_ProtocolProperty |
Java | software.amazon.awscdk.mixins.preview.services.datasync.mixins.CfnLocationFSxOpenZFSPropsMixin.ProtocolProperty |
Python | aws_cdk.mixins_preview.aws_datasync.mixins.CfnLocationFSxOpenZFSPropsMixin.ProtocolProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datasync » mixins » CfnLocationFSxOpenZFSPropsMixin » ProtocolProperty |
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 { mixins as datasync_mixins } from '@aws-cdk/mixins-preview/aws-datasync';
const protocolProperty: datasync_mixins.CfnLocationFSxOpenZFSPropsMixin.ProtocolProperty = {
nfs: {
mountOptions: {
version: 'version',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| nfs? | IResolvable | NFSProperty | Represents the Network File System (NFS) protocol that DataSync uses to access your FSx for OpenZFS file system. |
nfs?
Type:
IResolvable | NFSProperty
(optional)
Represents the Network File System (NFS) protocol that DataSync uses to access your FSx for OpenZFS file system.

.NET
Go
Java
Python
TypeScript