Interface CfnUser.HomeDirectoryMapEntryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUser.HomeDirectoryMapEntryProperty.Jsii$Proxy
- Enclosing class:
CfnUser
@Stability(Stable)
public static interface CfnUser.HomeDirectoryMapEntryProperty
extends software.amazon.jsii.JsiiSerializable
Represents an object that contains entries and targets for
HomeDirectoryMappings
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.transfer.*; HomeDirectoryMapEntryProperty homeDirectoryMapEntryProperty = HomeDirectoryMapEntryProperty.builder() .entry("entry") .target("target") // the properties below are optional .type("type") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUser.HomeDirectoryMapEntryProperty
static final class
An implementation forCfnUser.HomeDirectoryMapEntryProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEntry
Represents an entry forHomeDirectoryMappings
.- See Also:
-
getTarget
Represents the map target that is used in aHomeDirectoryMapEntry
.- See Also:
-
getType
Specifies the type of mapping.Set the type to
FILE
if you want the mapping to point to a file, orDIRECTORY
for the directory to point to a directory.By default, home directory mappings have a
Type
ofDIRECTORY
when you create a Transfer Family server. You would need to explicitly setType
toFILE
if you want a mapping to have a file target.- See Also:
-
builder
-