Class: Aws::Transfer::Types::HomeDirectoryMapEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::HomeDirectoryMapEntry
- Includes:
- Structure
- Defined in:
- 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
-
#entry ⇒ String
Represents an entry for `HomeDirectoryMappings`.
-
#target ⇒ String
Represents the map target that is used in a `HomeDirectorymapEntry`.
Instance Attribute Details
#entry ⇒ String
Represents an entry for `HomeDirectoryMappings`.
2843 2844 2845 2846 2847 2848 |
# File 'lib/aws-sdk-transfer/types.rb', line 2843 class HomeDirectoryMapEntry < Struct.new( :entry, :target) SENSITIVE = [] include Aws::Structure end |
#target ⇒ String
Represents the map target that is used in a `HomeDirectorymapEntry`.
2843 2844 2845 2846 2847 2848 |
# File 'lib/aws-sdk-transfer/types.rb', line 2843 class HomeDirectoryMapEntry < Struct.new( :entry, :target) SENSITIVE = [] include Aws::Structure end |