Show / Hide Table of Contents

Class CfnUser.HomeDirectoryMapEntryProperty

Represents an object that contains entries and targets for HomeDirectoryMappings .

Inheritance
object
CfnUser.HomeDirectoryMapEntryProperty
Implements
CfnUser.IHomeDirectoryMapEntryProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUser.HomeDirectoryMapEntryProperty : CfnUser.IHomeDirectoryMapEntryProperty
Syntax (vb)
Public Class CfnUser.HomeDirectoryMapEntryProperty Implements 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

Constructors

HomeDirectoryMapEntryProperty()

Represents an object that contains entries and targets for HomeDirectoryMappings .

Properties

Entry

Represents an entry for HomeDirectoryMappings .

Target

Represents the map target that is used in a HomeDirectoryMapEntry .

Type

Specifies the type of mapping.

Constructors

HomeDirectoryMapEntryProperty()

Represents an object that contains entries and targets for HomeDirectoryMappings .

public HomeDirectoryMapEntryProperty()
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"
             };

Properties

Entry

Represents an entry for HomeDirectoryMappings .

public string Entry { get; set; }
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 .

public string Target { get; set; }
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.

public string? Type { get; set; }
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

Implements

CfnUser.IHomeDirectoryMapEntryProperty
Back to top Generated by DocFX