[][src]Struct rusoto_cloudfront::RealtimeLogConfig

pub struct RealtimeLogConfig {
    pub arn: String,
    pub end_points: Vec<EndPoint>,
    pub fields: Vec<String>,
    pub name: String,
    pub sampling_rate: i64,
}

A real-time log configuration.

Fields

arn: String

The Amazon Resource Name (ARN) of this real-time log configuration.

end_points: Vec<EndPoint>

Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration.

fields: Vec<String>

A list of fields that are included in each real-time log record. In an API response, the fields are provided in the same order in which they are sent to the Amazon Kinesis data stream.

For more information about fields, see Real-time log configuration fields in the Amazon CloudFront Developer Guide.

name: String

The unique name of this real-time log configuration.

sampling_rate: i64

The sampling rate for this real-time log configuration. The sampling rate determines the percentage of viewer requests that are represented in the real-time log data. The sampling rate is an integer between 1 and 100, inclusive.

Trait Implementations

impl Clone for RealtimeLogConfig[src]

impl Debug for RealtimeLogConfig[src]

impl Default for RealtimeLogConfig[src]

impl PartialEq<RealtimeLogConfig> for RealtimeLogConfig[src]

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