Class: Aws::Transfer::Types::HomeDirectoryMapEntry

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-transfer/types.rb

Overview

Note:

When making an API call, you may pass HomeDirectoryMapEntry data as a hash:

{
  entry: "MapEntry", # required
  target: "MapTarget", # required
}

Represents an object that contains entries and a targets for ‘HomeDirectoryMappings`.

Instance Attribute Summary collapse

Instance Attribute Details

#entryString

Represents an entry and a target for ‘HomeDirectoryMappings`.

Returns:

  • (String)


697
698
699
700
701
# File 'lib/aws-sdk-transfer/types.rb', line 697

class HomeDirectoryMapEntry < Struct.new(
  :entry,
  :target)
  include Aws::Structure
end

#targetString

Represents the map target that is used in a ‘HomeDirectorymapEntry`.

Returns:

  • (String)


697
698
699
700
701
# File 'lib/aws-sdk-transfer/types.rb', line 697

class HomeDirectoryMapEntry < Struct.new(
  :entry,
  :target)
  include Aws::Structure
end