class Fog::AWS::RDS::LogFile

Public Instance Methods

content_excerpt(marker=nil) click to toggle source
# File lib/fog/aws/models/rds/log_file.rb, line 13
def content_excerpt(marker=nil)
  result = service.download_db_logfile_portion(self.rds_id, self.name, {:marker => marker})
  merge_attributes(result.body['DownloadDBLogFilePortionResult'])
end