[][src]Struct rusoto_cloudfront::RealtimeLogConfigs

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

A list of real-time log configurations.

Fields

is_truncated: bool

A flag that indicates whether there are more real-time log configurations than are contained in this list.

items: Option<Vec<RealtimeLogConfig>>

Contains the list of real-time log configurations.

marker: String

This parameter indicates where this list of real-time log configurations begins. This list includes real-time log configurations that occur after the marker.

max_items: i64

The maximum number of real-time log configurations requested.

next_marker: Option<String>

If there are more items in the list than are in this response, this element is present. It contains the value that you should use in the Marker field of a subsequent request to continue listing real-time log configurations where you left off.

Trait Implementations

impl Clone for RealtimeLogConfigs[src]

impl Debug for RealtimeLogConfigs[src]

impl Default for RealtimeLogConfigs[src]

impl PartialEq<RealtimeLogConfigs> for RealtimeLogConfigs[src]

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