[][src]Struct rusoto_cloudfront::DistributionIdList

pub struct DistributionIdList {
    pub is_truncated: bool,
    pub items: Option<Vec<String>>,
    pub marker: String,
    pub max_items: i64,
    pub next_marker: Option<String>,
    pub quantity: i64,
}

A list of distribution IDs.

Fields

is_truncated: bool

A flag that indicates whether more distribution IDs remain to be listed. If your results were truncated, you can make a subsequent request using the Marker request field to retrieve more distribution IDs in the list.

items: Option<Vec<String>>

Contains the distribution IDs in the list.

marker: String

The value provided in the Marker request field.

max_items: i64

The maximum number of distribution IDs requested.

next_marker: Option<String>

Contains the value that you should use in the Marker field of a subsequent request to continue listing distribution IDs where you left off.

quantity: i64

The total number of distribution IDs returned in the response.

Trait Implementations

impl Clone for DistributionIdList[src]

impl Debug for DistributionIdList[src]

impl Default for DistributionIdList[src]

impl PartialEq<DistributionIdList> for DistributionIdList[src]

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