Method: Aws::ECS::Types::EFSVolumeConfiguration#root_directory

Defined in:
lib/aws-sdk-ecs/types.rb

#root_directoryString

The directory within the Amazon EFS file system to mount as the root directory inside the host. If this parameter is omitted, the root of the Amazon EFS volume will be used. Specifying ‘/` will have the same effect as omitting this parameter.

If an EFS access point is specified in the ‘authorizationConfig`, the root directory parameter must either be omitted or set to `/` which will enforce the path set on the EFS access point.

Returns:

  • (String)


5122
5123
5124
5125
5126
5127
5128
5129
5130
# File 'lib/aws-sdk-ecs/types.rb', line 5122

class EFSVolumeConfiguration < Struct.new(
  :file_system_id,
  :root_directory,
  :transit_encryption,
  :transit_encryption_port,
  :authorization_config)
  SENSITIVE = []
  include Aws::Structure
end