pub struct RealtimeLogConfig {
pub arn: String,
pub name: String,
pub sampling_rate: i64,
pub end_points: Vec<EndPoint>,
pub fields: Vec<String>,
}Expand description
Realtime log config record.
Fields§
§arn: StringARN.
name: StringName.
sampling_rate: i64Sampling rate 1..=100.
end_points: Vec<EndPoint>Kinesis endpoint ARN.
fields: Vec<String>Fields logged.
Trait Implementations§
Source§impl Clone for RealtimeLogConfig
impl Clone for RealtimeLogConfig
Source§fn clone(&self) -> RealtimeLogConfig
fn clone(&self) -> RealtimeLogConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RealtimeLogConfig
impl Debug for RealtimeLogConfig
Source§impl<'de> Deserialize<'de> for RealtimeLogConfig
impl<'de> Deserialize<'de> for RealtimeLogConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RealtimeLogConfig
impl RefUnwindSafe for RealtimeLogConfig
impl Send for RealtimeLogConfig
impl Sync for RealtimeLogConfig
impl Unpin for RealtimeLogConfig
impl UnsafeUnpin 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
Mutably borrows from an owned value. Read more