#[non_exhaustive]pub struct GetHealthEventInput {
pub monitor_name: Option<String>,
pub event_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.monitor_name: Option<String>The name of the monitor.
event_id: Option<String>The internally generated identifier of a health event. Because EventID contains the forward slash (“/”) character, you must URL-encode the EventID field in the request URL.
Implementations§
source§impl GetHealthEventInput
impl GetHealthEventInput
sourcepub fn builder() -> GetHealthEventInputBuilder
pub fn builder() -> GetHealthEventInputBuilder
Creates a new builder-style object to manufacture GetHealthEventInput.
Trait Implementations§
source§impl Clone for GetHealthEventInput
impl Clone for GetHealthEventInput
source§fn clone(&self) -> GetHealthEventInput
fn clone(&self) -> GetHealthEventInput
Returns a copy 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 GetHealthEventInput
impl Debug for GetHealthEventInput
source§impl PartialEq for GetHealthEventInput
impl PartialEq for GetHealthEventInput
source§fn eq(&self, other: &GetHealthEventInput) -> bool
fn eq(&self, other: &GetHealthEventInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetHealthEventInput
Auto Trait Implementations§
impl RefUnwindSafe for GetHealthEventInput
impl Send for GetHealthEventInput
impl Sync for GetHealthEventInput
impl Unpin for GetHealthEventInput
impl UnwindSafe for GetHealthEventInput
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
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>
Creates a shared type from an unshared type.