Struct aws_sdk_applicationinsights::types::Problem
source · #[non_exhaustive]pub struct Problem { /* private fields */ }
Expand description
Describes a problem that is detected by correlating observations.
Implementations§
source§impl Problem
impl Problem
sourcepub fn insights(&self) -> Option<&str>
pub fn insights(&self) -> Option<&str>
A detailed analysis of the problem using machine learning.
sourcepub fn affected_resource(&self) -> Option<&str>
pub fn affected_resource(&self) -> Option<&str>
The resource affected by the problem.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The time when the problem started, in epoch seconds.
sourcepub fn severity_level(&self) -> Option<&SeverityLevel>
pub fn severity_level(&self) -> Option<&SeverityLevel>
A measure of the level of impact of the problem.
sourcepub fn resource_group_name(&self) -> Option<&str>
pub fn resource_group_name(&self) -> Option<&str>
The name of the resource group affected by the problem.
sourcepub fn feedback(&self) -> Option<&HashMap<FeedbackKey, FeedbackValue>>
pub fn feedback(&self) -> Option<&HashMap<FeedbackKey, FeedbackValue>>
Feedback provided by the user about the problem.
sourcepub fn recurring_count(&self) -> Option<i64>
pub fn recurring_count(&self) -> Option<i64>
The number of times that the same problem reoccurred after the first time it was resolved.
sourcepub fn last_recurrence_time(&self) -> Option<&DateTime>
pub fn last_recurrence_time(&self) -> Option<&DateTime>
The last time that the problem reoccurred after its last resolution.
Trait Implementations§
source§impl PartialEq<Problem> for Problem
impl PartialEq<Problem> for Problem
impl StructuralPartialEq for Problem
Auto Trait Implementations§
impl RefUnwindSafe for Problem
impl Send for Problem
impl Sync for Problem
impl Unpin for Problem
impl UnwindSafe for Problem
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