interface HomeDirectoryMapEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Mixins.CfnUserPropsMixin.HomeDirectoryMapEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/mixins#CfnUserPropsMixin_HomeDirectoryMapEntryProperty |
Java | software.amazon.awscdk.mixins.preview.services.transfer.mixins.CfnUserPropsMixin.HomeDirectoryMapEntryProperty |
Python | aws_cdk.mixins_preview.aws_transfer.mixins.CfnUserPropsMixin.HomeDirectoryMapEntryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_transfer » mixins » CfnUserPropsMixin » HomeDirectoryMapEntryProperty |
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 { mixins as transfer_mixins } from '@aws-cdk/mixins-preview/aws-transfer';
const homeDirectoryMapEntryProperty: transfer_mixins.CfnUserPropsMixin.HomeDirectoryMapEntryProperty = {
entry: 'entry',
target: 'target',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| entry? | string | Represents an entry for HomeDirectoryMappings . |
| target? | string | Represents the map target that is used in a HomeDirectoryMapEntry . |
| type? | string | Specifies the type of mapping. |
entry?
Type:
string
(optional)
Represents an entry for HomeDirectoryMappings .
target?
Type:
string
(optional)
Represents the map target that is used in a HomeDirectoryMapEntry .
type?
Type:
string
(optional)
Specifies the type of mapping.
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
TypeofDIRECTORYwhen you create a Transfer Family server. You would need to explicitly setTypetoFILEif you want a mapping to have a file target.

.NET
Go
Java
Python
TypeScript