pub struct FilterLogEventsInput {
pub end_time: Option<i64>,
pub filter_pattern: Option<String>,
pub interleaved: Option<bool>,
pub limit: Option<i32>,
pub log_group_identifier: Option<String>,
pub log_group_name: Option<String>,
pub log_stream_name_prefix: Option<String>,
pub log_stream_names: Vec<String>,
pub next_token: Option<String>,
pub start_time: Option<i64>,
pub unmask: Option<bool>,
}Expand description
CloudWatch Logs FilterLogEventsInput.
Fields§
§end_time: Option<i64>§filter_pattern: Option<String>§interleaved: Option<bool>§limit: Option<i32>§log_group_identifier: Option<String>§log_group_name: Option<String>§log_stream_name_prefix: Option<String>§log_stream_names: Vec<String>§next_token: Option<String>§start_time: Option<i64>§unmask: Option<bool>Trait Implementations§
Source§impl Clone for FilterLogEventsInput
impl Clone for FilterLogEventsInput
Source§fn clone(&self) -> FilterLogEventsInput
fn clone(&self) -> FilterLogEventsInput
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 FilterLogEventsInput
impl Debug for FilterLogEventsInput
Source§impl Default for FilterLogEventsInput
impl Default for FilterLogEventsInput
Source§fn default() -> FilterLogEventsInput
fn default() -> FilterLogEventsInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FilterLogEventsInput
impl<'de> Deserialize<'de> for FilterLogEventsInput
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 FilterLogEventsInput
impl RefUnwindSafe for FilterLogEventsInput
impl Send for FilterLogEventsInput
impl Sync for FilterLogEventsInput
impl Unpin for FilterLogEventsInput
impl UnsafeUnpin for FilterLogEventsInput
impl UnwindSafe for FilterLogEventsInput
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