Struct aws_sdk_cloudfront::types::RealtimeLogConfig
source · #[non_exhaustive]pub struct RealtimeLogConfig {
pub arn: String,
pub name: String,
pub sampling_rate: i64,
pub end_points: Vec<EndPoint>,
pub fields: Vec<String>,
}
Expand description
A real-time log configuration.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.arn: String
The Amazon Resource Name (ARN) of this real-time log configuration.
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.
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.
Implementations§
source§impl RealtimeLogConfig
impl RealtimeLogConfig
sourcepub fn sampling_rate(&self) -> i64
pub fn sampling_rate(&self) -> 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.
sourcepub fn end_points(&self) -> &[EndPoint]
pub fn end_points(&self) -> &[EndPoint]
Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration.
sourcepub fn fields(&self) -> &[String]
pub fn fields(&self) -> &[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.
source§impl RealtimeLogConfig
impl RealtimeLogConfig
sourcepub fn builder() -> RealtimeLogConfigBuilder
pub fn builder() -> RealtimeLogConfigBuilder
Creates a new builder-style object to manufacture RealtimeLogConfig
.
Trait Implementations§
source§impl Clone for RealtimeLogConfig
impl Clone for RealtimeLogConfig
source§fn clone(&self) -> RealtimeLogConfig
fn clone(&self) -> RealtimeLogConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RealtimeLogConfig
impl Debug for RealtimeLogConfig
source§impl PartialEq for RealtimeLogConfig
impl PartialEq for RealtimeLogConfig
source§fn eq(&self, other: &RealtimeLogConfig) -> bool
fn eq(&self, other: &RealtimeLogConfig) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RealtimeLogConfig
Auto Trait Implementations§
impl Freeze for RealtimeLogConfig
impl RefUnwindSafe for RealtimeLogConfig
impl Send for RealtimeLogConfig
impl Sync for RealtimeLogConfig
impl Unpin for RealtimeLogConfig
impl UnwindSafe for RealtimeLogConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more