[][src]Struct rusoto_lightsail::GetAlarmsRequest

pub struct GetAlarmsRequest {
    pub alarm_name: Option<String>,
    pub monitored_resource_name: Option<String>,
    pub page_token: Option<String>,
}

Fields

alarm_name: Option<String>

The name of the alarm.

Specify an alarm name to return information about a specific alarm.

monitored_resource_name: Option<String>

The name of the Lightsail resource being monitored by the alarm.

Specify a monitored resource name to return information about all alarms for a specific resource.

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 GetAlarms 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.

Trait Implementations

impl Clone for GetAlarmsRequest[src]

impl Debug for GetAlarmsRequest[src]

impl Default for GetAlarmsRequest[src]

impl PartialEq<GetAlarmsRequest> for GetAlarmsRequest[src]

impl Serialize for GetAlarmsRequest[src]

impl StructuralPartialEq for GetAlarmsRequest[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.