Show / Hide Table of Contents

Interface CfnLocationFSxONTAP.IProtocolProperty

Specifies the data transfer protocol that AWS DataSync uses to access your Amazon FSx file system.

Namespace: Amazon.CDK.AWS.DataSync
Assembly: Amazon.CDK.AWS.DataSync.dll
Syntax (csharp)
public interface IProtocolProperty
Syntax (vb)
Public Interface IProtocolProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationfsxontap-protocol.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataSync;

ProtocolProperty protocolProperty = new ProtocolProperty {
    Nfs = new NFSProperty {
        MountOptions = new NfsMountOptionsProperty {
            Version = "version"
        }
    },
    Smb = new SMBProperty {
        MountOptions = new SmbMountOptionsProperty {
            Version = "version"
        },
        Password = "password",
        User = "user",

        // the properties below are optional
        Domain = "domain"
    }
};

Synopsis

Properties

Nfs

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

Specifies the Server Message Block (SMB) protocol configuration that DataSync uses to access your FSx for ONTAP file system's SVM.

Properties

Nfs

Specifies the Network File System (NFS) protocol configuration that DataSync uses to access your FSx for ONTAP file system's storage virtual machine (SVM).

virtual object Nfs { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationfsxontap-protocol.html#cfn-datasync-locationfsxontap-protocol-nfs

Smb

Specifies the Server Message Block (SMB) protocol configuration that DataSync uses to access your FSx for ONTAP file system's SVM.

virtual object Smb { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationfsxontap-protocol.html#cfn-datasync-locationfsxontap-protocol-smb

Back to top Generated by DocFX