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

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

Overview

Represents an object that contains entries and targets for HomeDirectoryMappings.

The following is an Entry and Target pair example for chroot.

[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#entryString

Represents an entry for HomeDirectoryMappings.

Returns:

  • (String)


3055
3056
3057
3058
3059
3060
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3055

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

#targetString

Represents the map target that is used in a HomeDirectorymapEntry.

Returns:

  • (String)


3055
3056
3057
3058
3059
3060
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3055

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