[][src]Struct rusoto_lightsail::GetRelationalDatabaseEventsRequest

pub struct GetRelationalDatabaseEventsRequest {
    pub duration_in_minutes: Option<i64>,
    pub page_token: Option<String>,
    pub relational_database_name: String,
}

Fields

duration_in_minutes: Option<i64>

The number of minutes in the past from which to retrieve events. For example, to get all events from the past 2 hours, enter 120.

Default: 60

The minimum is 1 and the maximum is 14 days (20160 minutes).

page_token: Option<String>

The token to advance to the next page of results from your request.

To get a page token, perform an initial GetRelationalDatabaseEvents request. If your results are paginated, the response will return a next page token that you can specify as the page token in a subsequent request.

relational_database_name: String

The name of the database from which to get events.

Trait Implementations

impl Clone for GetRelationalDatabaseEventsRequest[src]

impl Debug for GetRelationalDatabaseEventsRequest[src]

impl Default for GetRelationalDatabaseEventsRequest[src]

impl PartialEq<GetRelationalDatabaseEventsRequest> for GetRelationalDatabaseEventsRequest[src]

impl Serialize for GetRelationalDatabaseEventsRequest[src]

impl StructuralPartialEq for GetRelationalDatabaseEventsRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.