[][src]Struct rusoto_rds::DescribeDBLogFilesMessage

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

db_instance_identifier: String

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.

file_last_written: Option<i64>

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

file_size: Option<i64>

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

filename_contains: Option<String>

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

filters: Option<Vec<Filter>>

This parameter is not currently supported.

marker: Option<String>

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

max_records: Option<i64>

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 Clone for DescribeDBLogFilesMessage[src]

impl Default for DescribeDBLogFilesMessage[src]

impl PartialEq<DescribeDBLogFilesMessage> for DescribeDBLogFilesMessage[src]

impl Debug for DescribeDBLogFilesMessage[src]

impl StructuralPartialEq for DescribeDBLogFilesMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self