Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DescribeDBLogFilesMessage

import type { DescribeDBLogFilesMessage } from "https://aws-api.deno.dev/v0.4/services/rds.ts?docs=full";
interface DescribeDBLogFilesMessage {
DBInstanceIdentifier: string;
FileLastWritten?: number | null;
FilenameContains?: string | null;
FileSize?: number | null;
Filters?: Filter[] | null;
Marker?: string | null;
MaxRecords?: number | null;
}

§Properties

§
DBInstanceIdentifier: string
[src]

The customer-assigned name of the DB instance that contains the log files you want to list.

Constraints:

  • Must match the identifier of an existing DBInstance.
§
FileLastWritten?: number | null
[src]

Filters the available log files for files written since the specified date, in POSIX timestamp format with milliseconds.

§
FilenameContains?: string | null
[src]

Filters the available log files for log file names that contain the specified string.

§
FileSize?: number | null
[src]

Filters the available log files for files larger than the specified size.

§
Filters?: Filter[] | null
[src]

This parameter isn't currently supported.

§
Marker?: string | null
[src]

The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.

§
MaxRecords?: number | null
[src]

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 you can retrieve the remaining results.