# File lib/fog/aws/requests/efs/describe_mount_targets.rb, line 13 def describe_mount_targets(options={}) params = {} if options[:marker] params['Marker'] = options[:marker] end if options[:max_records] params['MaxRecords'] = options[:max_records] end if options[:id] params['MountTargetId'] = options[:id] end if options[:file_system_id] params['FileSystemId'] = options[:file_system_id] end request({ :path => "mount-targets" }.merge(params)) end