describe_db_log_files ( $opt )

Returns a list of DB log files for the DB instance.

Access

public

Parameters

Parameter

Type

Required

Description

$opt

array

Optional

An associative array of parameters that can have the following keys:

  • DBInstanceIdentifier - string - Optional - The customer-assigned name of the DB Instance that contains the log files you want to list. Constraints:
    • Must contain from 1 to 63 alphanumeric characters or hyphens
    • First character must be a letter
    • Cannot end with a hyphen or contain two consecutive hyphens
  • FilenameContains - string - Optional - Filters the available log files for log file names that contain the specified string.
  • FileLastWritten - long - Optional - Filters the available log files for files written since the specified date.
  • FileSize - long - Optional - Filters the available log files for files larger than the specified size.
  • MaxRecords - integer - Optional - The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.
  • Marker - string - Optional - The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.
  • curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.
  • returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.

Returns

Type

Description

CFResponse

A CFResponse object containing a parsed HTTP response.

Source

Method defined in services/rds.class.php | Toggle source view (6 lines) | View on GitHub

public function describe_db_log_files($opt = null)
{
    if (!$opt) $opt = array();
            
    return $this->authenticate('DescribeDBLogFiles', $opt);
}

Copyright © 2010–2013 Amazon Web Services, LLC


Feedback