#[non_exhaustive]pub struct ConfigurationEvent { /* private fields */ }
Expand description
The event information.
Implementations§
source§impl ConfigurationEvent
impl ConfigurationEvent
sourcepub fn monitored_resource_arn(&self) -> Option<&str>
pub fn monitored_resource_arn(&self) -> Option<&str>
The resource monitored by Application Insights.
sourcepub fn event_status(&self) -> Option<&ConfigurationEventStatus>
pub fn event_status(&self) -> Option<&ConfigurationEventStatus>
The status of the configuration update event. Possible values include INFO, WARN, and ERROR.
sourcepub fn event_resource_type(&self) -> Option<&ConfigurationEventResourceType>
pub fn event_resource_type(&self) -> Option<&ConfigurationEventResourceType>
The resource type that Application Insights attempted to configure, for example, CLOUDWATCH_ALARM.
sourcepub fn event_time(&self) -> Option<&DateTime>
pub fn event_time(&self) -> Option<&DateTime>
The timestamp of the event.
sourcepub fn event_detail(&self) -> Option<&str>
pub fn event_detail(&self) -> Option<&str>
The details of the event in plain text.
sourcepub fn event_resource_name(&self) -> Option<&str>
pub fn event_resource_name(&self) -> Option<&str>
The name of the resource Application Insights attempted to configure.
source§impl ConfigurationEvent
impl ConfigurationEvent
sourcepub fn builder() -> ConfigurationEventBuilder
pub fn builder() -> ConfigurationEventBuilder
Creates a new builder-style object to manufacture ConfigurationEvent
.
Trait Implementations§
source§impl Clone for ConfigurationEvent
impl Clone for ConfigurationEvent
source§fn clone(&self) -> ConfigurationEvent
fn clone(&self) -> ConfigurationEvent
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 ConfigurationEvent
impl Debug for ConfigurationEvent
source§impl PartialEq<ConfigurationEvent> for ConfigurationEvent
impl PartialEq<ConfigurationEvent> for ConfigurationEvent
source§fn eq(&self, other: &ConfigurationEvent) -> bool
fn eq(&self, other: &ConfigurationEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ConfigurationEvent
Auto Trait Implementations§
impl RefUnwindSafe for ConfigurationEvent
impl Send for ConfigurationEvent
impl Sync for ConfigurationEvent
impl Unpin for ConfigurationEvent
impl UnwindSafe for ConfigurationEvent
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