Struct rusoto_rds::DescribeDBLogFilesResponse[][src]

pub struct DescribeDBLogFilesResponse {
    pub describe_db_log_files: Option<Vec<DescribeDBLogFilesDetails>>,
    pub marker: Option<String>,
}

The response from a call to DescribeDBLogFiles.

Fields

The DB log files returned.

A pagination token that can be used in a subsequent DescribeDBLogFiles request.

Trait Implementations

impl Default for DescribeDBLogFilesResponse
[src]

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

impl Debug for DescribeDBLogFilesResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeDBLogFilesResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeDBLogFilesResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations