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.Lib.dll
Syntax (csharp)
public interface CfnLocationFSxONTAP.IProtocolProperty
Syntax (vb)
Public Interface CfnLocationFSxONTAP.IProtocolProperty
Remarks

See: 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;

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

object? Nfs { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnLocationFSxONTAP.INFSProperty

Smb

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

object? Smb { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnLocationFSxONTAP.ISMBProperty

Back to top Generated by DocFX