[][src]Struct rusoto_cloudfront::CreateRealtimeLogConfigRequest

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

Fields

end_points: Vec<EndPoint>

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

fields: Vec<String>

A list of fields to include in each real-time log record.

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

name: String

A unique name to identify 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. You must provide an integer between 1 and 100, inclusive.

Trait Implementations

impl Clone for CreateRealtimeLogConfigRequest[src]

impl Debug for CreateRealtimeLogConfigRequest[src]

impl Default for CreateRealtimeLogConfigRequest[src]

impl PartialEq<CreateRealtimeLogConfigRequest> for CreateRealtimeLogConfigRequest[src]

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