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 ==
.