interface ProtocolProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.DataSync.CfnLocationFSxONTAP.ProtocolProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsdatasync#CfnLocationFSxONTAP_ProtocolProperty |
![]() | software.amazon.awscdk.services.datasync.CfnLocationFSxONTAP.ProtocolProperty |
![]() | aws_cdk.aws_datasync.CfnLocationFSxONTAP.ProtocolProperty |
![]() | aws-cdk-lib » aws_datasync » CfnLocationFSxONTAP » ProtocolProperty |
Specifies the data transfer protocol that AWS DataSync uses to access your Amazon FSx file system.
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 protocolProperty: datasync.CfnLocationFSxONTAP.ProtocolProperty = {
nfs: {
mountOptions: {
version: 'version',
},
},
smb: {
mountOptions: {
version: 'version',
},
password: 'password',
user: 'user',
// the properties below are optional
domain: 'domain',
},
};
Properties
Name | Type | Description |
---|---|---|
nfs? | IResolvable | NFSProperty | Specifies the Network File System (NFS) protocol configuration that DataSync uses to access your FSx for ONTAP file system's storage virtual machine (SVM). |
smb? | IResolvable | SMBProperty | Specifies the Server Message Block (SMB) protocol configuration that DataSync uses to access your FSx for ONTAP file system's SVM. |
nfs?
Type:
IResolvable
|
NFSProperty
(optional)
Specifies the Network File System (NFS) protocol configuration that DataSync uses to access your FSx for ONTAP file system's storage virtual machine (SVM).
smb?
Type:
IResolvable
|
SMBProperty
(optional)
Specifies the Server Message Block (SMB) protocol configuration that DataSync uses to access your FSx for ONTAP file system's SVM.