Show / Hide Table of Contents

Class CfnLocationFSxONTAP.ProtocolProperty

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

Inheritance
System.Object
CfnLocationFSxONTAP.ProtocolProperty
Implements
CfnLocationFSxONTAP.IProtocolProperty
Namespace: Amazon.CDK.AWS.DataSync
Assembly: Amazon.CDK.AWS.DataSync.dll
Syntax (csharp)
public class ProtocolProperty : Object, CfnLocationFSxONTAP.IProtocolProperty
Syntax (vb)
Public Class ProtocolProperty
    Inherits Object
    Implements CfnLocationFSxONTAP.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

Constructors

ProtocolProperty()

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.

Constructors

ProtocolProperty()

public ProtocolProperty()

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).

public object Nfs { get; set; }
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.

public object Smb { get; set; }
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

Implements

CfnLocationFSxONTAP.IProtocolProperty
Back to top Generated by DocFX