package awstransfer // 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 "github.com/aws/aws-cdk-go/awscdk" // // homeDirectoryMapEntryProperty := &HomeDirectoryMapEntryProperty{ // Entry: jsii.String("entry"), // Target: jsii.String("target"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-user-homedirectorymapentry.html // type CfnUser_HomeDirectoryMapEntryProperty struct { // Represents an entry for `HomeDirectoryMappings` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-user-homedirectorymapentry.html#cfn-transfer-user-homedirectorymapentry-entry // Entry *string `field:"required" json:"entry" yaml:"entry"` // Represents the map target that is used in a `HomeDirectorymapEntry` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-user-homedirectorymapentry.html#cfn-transfer-user-homedirectorymapentry-target // Target *string `field:"required" json:"target" yaml:"target"` }