Struct rusoto_rds::DownloadDBLogFilePortionDetails[][src]

pub struct DownloadDBLogFilePortionDetails {
    pub additional_data_pending: Option<bool>,
    pub log_file_data: Option<String>,
    pub marker: Option<String>,
}

This data type is used as a response element to DownloadDBLogFilePortion.

Fields

Boolean value that if true, indicates there is more data to be downloaded.

Entries from the specified log file.

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

Trait Implementations

impl Default for DownloadDBLogFilePortionDetails
[src]

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

impl Debug for DownloadDBLogFilePortionDetails
[src]

Formats the value using the given formatter. Read more

impl Clone for DownloadDBLogFilePortionDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DownloadDBLogFilePortionDetails
[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