Show / Hide Table of Contents

Interface CfnUser.IHomeDirectoryMapEntryProperty

Represents an object that contains entries and targets for HomeDirectoryMappings .

Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnUser.IHomeDirectoryMapEntryProperty
Syntax (vb)
Public Interface CfnUser.IHomeDirectoryMapEntryProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-user-homedirectorymapentry.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.Transfer;

             var homeDirectoryMapEntryProperty = new HomeDirectoryMapEntryProperty {
                 Entry = "entry",
                 Target = "target",

                 // the properties below are optional
                 Type = "type"
             };

Synopsis

Properties

Entry

Represents an entry for HomeDirectoryMappings .

Target

Represents the map target that is used in a HomeDirectoryMapEntry .

Type

Specifies the type of mapping.

Properties

Entry

Represents an entry for HomeDirectoryMappings .

string Entry { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-user-homedirectorymapentry.html#cfn-transfer-user-homedirectorymapentry-entry

Target

Represents the map target that is used in a HomeDirectoryMapEntry .

string Target { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-user-homedirectorymapentry.html#cfn-transfer-user-homedirectorymapentry-target

Type

Specifies the type of mapping.

string? Type { get; }
Property Value

string

Remarks

Set the type to FILE if you want the mapping to point to a file, or DIRECTORY for the directory to point to a directory.

By default, home directory mappings have a <code>Type</code> of <code>DIRECTORY</code> when you create a Transfer Family server. You would need to explicitly set <code>Type</code> to <code>FILE</code> if you want a mapping to have a file target.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-user-homedirectorymapentry.html#cfn-transfer-user-homedirectorymapentry-type

Back to top Generated by DocFX