Show / Hide Table of Contents

Interface ICfnLocationSMBProps

Properties for defining a CfnLocationSMB.

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

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

CfnLocationSMBProps cfnLocationSMBProps = new CfnLocationSMBProps {
    AgentArns = new [] { "agentArns" },
    User = "user",

    // the properties below are optional
    Domain = "domain",
    MountOptions = new MountOptionsProperty {
        Version = "version"
    },
    Password = "password",
    ServerHostname = "serverHostname",
    Subdirectory = "subdirectory",
    Tags = new [] { new CfnTag {
        Key = "key",
        Value = "value"
    } }
};

Synopsis

Properties

AgentArns

The Amazon Resource Names (ARNs) of agents to use for a Server Message Block (SMB) location.

Domain

Specifies the Windows domain name that your SMB file server belongs to.

MountOptions

Specifies the version of the SMB protocol that DataSync uses to access your SMB file server.

Password

The password of the user who can mount the share and has the permissions to access files and folders in the SMB share.

ServerHostname

Specifies the Domain Name Service (DNS) name or IP address of the SMB file server that your DataSync agent will mount.

Subdirectory

The subdirectory in the SMB file system that is used to read data from the SMB source location or write data to the SMB destination.

Tags

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

User

The user who can mount the share and has the permissions to access files and folders in the SMB share.

Properties

AgentArns

The Amazon Resource Names (ARNs) of agents to use for a Server Message Block (SMB) location.

string[] AgentArns { get; }
Property Value

System.String[]

Remarks

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

Domain

Specifies the Windows domain name that your SMB file server belongs to.

virtual string Domain { get; }
Property Value

System.String

Remarks

For more information, see required permissions for SMB locations.

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

MountOptions

Specifies the version of the SMB protocol that DataSync uses to access your SMB file server.

virtual object MountOptions { get; }
Property Value

System.Object

Remarks

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

Password

The password of the user who can mount the share and has the permissions to access files and folders in the SMB share.

virtual string Password { get; }
Property Value

System.String

Remarks

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

ServerHostname

Specifies the Domain Name Service (DNS) name or IP address of the SMB file server that your DataSync agent will mount.

virtual string ServerHostname { get; }
Property Value

System.String

Remarks

You can't specify an IP version 6 (IPv6) address.

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

Subdirectory

The subdirectory in the SMB file system that is used to read data from the SMB source location or write data to the SMB destination.

virtual string Subdirectory { get; }
Property Value

System.String

Remarks

The SMB path should be a path that's exported by the SMB server, or a subdirectory of that path. The path should be such that it can be mounted by other SMB clients in your network.

Subdirectory must be specified with forward slashes. For example, /path/to/folder .

To transfer all the data in the folder you specified, DataSync must have permissions to mount the SMB share, as well as to access all the data in that share. To ensure this, either make sure that the user name and password specified belongs to the user who can mount the share, and who has the appropriate permissions for all of the files and directories that you want DataSync to access, or use credentials of a member of the Backup Operators group to mount the share. Doing either one enables the agent to access the data. For the agent to access directories, you must additionally enable all execute access.

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

Tags

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

virtual ICfnTag[] Tags { get; }
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-locationsmb.html#cfn-datasync-locationsmb-tags

User

The user who can mount the share and has the permissions to access files and folders in the SMB share.

string User { get; }
Property Value

System.String

Remarks

For information about choosing a user name that ensures sufficient permissions to files, folders, and metadata, see user .

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

Back to top Generated by DocFX