Show / Hide Table of Contents

Class CfnLocationFSxONTAPProps

Properties for defining a CfnLocationFSxONTAP.

Inheritance
System.Object
CfnLocationFSxONTAPProps
Implements
ICfnLocationFSxONTAPProps
Namespace: Amazon.CDK.AWS.DataSync
Assembly: Amazon.CDK.AWS.DataSync.dll
Syntax (csharp)
public class CfnLocationFSxONTAPProps : Object, ICfnLocationFSxONTAPProps
Syntax (vb)
Public Class CfnLocationFSxONTAPProps
    Inherits Object
    Implements ICfnLocationFSxONTAPProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxontap.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;

CfnLocationFSxONTAPProps cfnLocationFSxONTAPProps = new CfnLocationFSxONTAPProps {
    Protocol = 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"
        }
    },
    SecurityGroupArns = new [] { "securityGroupArns" },
    StorageVirtualMachineArn = "storageVirtualMachineArn",

    // the properties below are optional
    Subdirectory = "subdirectory",
    Tags = new [] { new CfnTag {
        Key = "key",
        Value = "value"
    } }
};

Synopsis

Constructors

CfnLocationFSxONTAPProps()

Properties

Protocol

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

SecurityGroupArns

Specifies the Amazon Resource Names (ARNs) of the security groups that DataSync can use to access your FSx for ONTAP file system.

StorageVirtualMachineArn

Specifies the ARN of the storage virtual machine (SVM) in your file system where you want to copy data to or from.

Subdirectory

Specifies a path to the file share in the SVM where you'll copy your data.

Tags

Specifies labels that help you categorize, filter, and search for your AWS resources.

Constructors

CfnLocationFSxONTAPProps()

public CfnLocationFSxONTAPProps()

Properties

Protocol

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

public object Protocol { get; set; }
Property Value

System.Object

Remarks

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

SecurityGroupArns

Specifies the Amazon Resource Names (ARNs) of the security groups that DataSync can use to access your FSx for ONTAP file system.

public string[] SecurityGroupArns { get; set; }
Property Value

System.String[]

Remarks

You must configure the security groups to allow outbound traffic on the following ports (depending on the protocol that you're using):

    Your file system's security groups must also allow inbound traffic on the same port.

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxontap.html#cfn-datasync-locationfsxontap-securitygrouparns

    StorageVirtualMachineArn

    Specifies the ARN of the storage virtual machine (SVM) in your file system where you want to copy data to or from.

    public string StorageVirtualMachineArn { get; set; }
    Property Value

    System.String

    Remarks

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxontap.html#cfn-datasync-locationfsxontap-storagevirtualmachinearn

    Subdirectory

    Specifies a path to the file share in the SVM where you'll copy your data.

    public string Subdirectory { get; set; }
    Property Value

    System.String

    Remarks

    You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares). For example, your mount path might be /vol1 , /vol1/tree1 , or /share1 .

    Don't specify a junction path in the SVM's root volume. For more information, see Managing FSx for ONTAP storage virtual machines in the Amazon FSx for NetApp ONTAP User Guide .

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxontap.html#cfn-datasync-locationfsxontap-subdirectory

    Tags

    Specifies labels that help you categorize, filter, and search for your AWS resources.

    public ICfnTag[] Tags { get; set; }
    Property Value

    ICfnTag[]

    Remarks

    We recommend creating at least a name tag for your location.

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxontap.html#cfn-datasync-locationfsxontap-tags

    Implements

    ICfnLocationFSxONTAPProps
    Back to top Generated by DocFX