aws-cdk-lib.aws_datasync.CfnLocationFSxONTAP.ProtocolProperty

interface ProtocolProperty

LanguageType name
.NETAmazon.CDK.AWS.DataSync.CfnLocationFSxONTAP.ProtocolProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatasync#CfnLocationFSxONTAP_ProtocolProperty
Javasoftware.amazon.awscdk.services.datasync.CfnLocationFSxONTAP.ProtocolProperty
Pythonaws_cdk.aws_datasync.CfnLocationFSxONTAP.ProtocolProperty
TypeScript 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

NameTypeDescription
nfs?IResolvable | NFSPropertySpecifies 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 | SMBPropertySpecifies 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.