Struct rusoto_rds::DescribeDBLogFilesMessage [] [src]

pub struct DescribeDBLogFilesMessage {
    pub db_instance_identifier: String,
    pub file_last_written: Option<i64>,
    pub file_size: Option<i64>,
    pub filename_contains: Option<String>,
    pub filters: Option<Vec<Filter>>,
    pub marker: Option<String>,
    pub max_records: Option<i64>,
}

Fields

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

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

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

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

This parameter is not currently supported.

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

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.

Trait Implementations

impl Default for DescribeDBLogFilesMessage
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeDBLogFilesMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeDBLogFilesMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations