[][src]Struct rusoto_lightsail::GetDistributionsRequest

pub struct GetDistributionsRequest {
    pub distribution_name: Option<String>,
    pub page_token: Option<String>,
}

Fields

distribution_name: Option<String>

The name of the distribution for which to return information.

Use the GetDistributions action to get a list of distribution names that you can specify.

When omitted, the response includes all of your distributions in the AWS Region where the request is made.

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 GetDistributions 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 GetDistributionsRequest[src]

impl Debug for GetDistributionsRequest[src]

impl Default for GetDistributionsRequest[src]

impl PartialEq<GetDistributionsRequest> for GetDistributionsRequest[src]

impl Serialize for GetDistributionsRequest[src]

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