Struct aws_sdk_applicationinsights::types::builders::ProblemBuilder
source · #[non_exhaustive]pub struct ProblemBuilder { /* private fields */ }
Expand description
A builder for Problem
.
Implementations§
source§impl ProblemBuilder
impl ProblemBuilder
sourcepub fn insights(self, input: impl Into<String>) -> Self
pub fn insights(self, input: impl Into<String>) -> Self
A detailed analysis of the problem using machine learning.
sourcepub fn set_insights(self, input: Option<String>) -> Self
pub fn set_insights(self, input: Option<String>) -> Self
A detailed analysis of the problem using machine learning.
sourcepub fn set_status(self, input: Option<Status>) -> Self
pub fn set_status(self, input: Option<Status>) -> Self
The status of the problem.
sourcepub fn affected_resource(self, input: impl Into<String>) -> Self
pub fn affected_resource(self, input: impl Into<String>) -> Self
The resource affected by the problem.
sourcepub fn set_affected_resource(self, input: Option<String>) -> Self
pub fn set_affected_resource(self, input: Option<String>) -> Self
The resource affected by the problem.
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The time when the problem started, in epoch seconds.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The time when the problem started, in epoch seconds.
sourcepub fn end_time(self, input: DateTime) -> Self
pub fn end_time(self, input: DateTime) -> Self
The time when the problem ended, in epoch seconds.
sourcepub fn set_end_time(self, input: Option<DateTime>) -> Self
pub fn set_end_time(self, input: Option<DateTime>) -> Self
The time when the problem ended, in epoch seconds.
sourcepub fn severity_level(self, input: SeverityLevel) -> Self
pub fn severity_level(self, input: SeverityLevel) -> Self
A measure of the level of impact of the problem.
sourcepub fn set_severity_level(self, input: Option<SeverityLevel>) -> Self
pub fn set_severity_level(self, input: Option<SeverityLevel>) -> Self
A measure of the level of impact of the problem.
sourcepub fn resource_group_name(self, input: impl Into<String>) -> Self
pub fn resource_group_name(self, input: impl Into<String>) -> Self
The name of the resource group affected by the problem.
sourcepub fn set_resource_group_name(self, input: Option<String>) -> Self
pub fn set_resource_group_name(self, input: Option<String>) -> Self
The name of the resource group affected by the problem.
sourcepub fn feedback(self, k: FeedbackKey, v: FeedbackValue) -> Self
pub fn feedback(self, k: FeedbackKey, v: FeedbackValue) -> Self
Adds a key-value pair to feedback
.
To override the contents of this collection use set_feedback
.
Feedback provided by the user about the problem.
sourcepub fn set_feedback(
self,
input: Option<HashMap<FeedbackKey, FeedbackValue>>
) -> Self
pub fn set_feedback( self, input: Option<HashMap<FeedbackKey, FeedbackValue>> ) -> Self
Feedback provided by the user about the problem.
sourcepub fn recurring_count(self, input: i64) -> Self
pub fn recurring_count(self, input: i64) -> Self
The number of times that the same problem reoccurred after the first time it was resolved.
sourcepub fn set_recurring_count(self, input: Option<i64>) -> Self
pub fn set_recurring_count(self, input: Option<i64>) -> Self
The number of times that the same problem reoccurred after the first time it was resolved.
sourcepub fn last_recurrence_time(self, input: DateTime) -> Self
pub fn last_recurrence_time(self, input: DateTime) -> Self
The last time that the problem reoccurred after its last resolution.
sourcepub fn set_last_recurrence_time(self, input: Option<DateTime>) -> Self
pub fn set_last_recurrence_time(self, input: Option<DateTime>) -> Self
The last time that the problem reoccurred after its last resolution.
Trait Implementations§
source§impl Clone for ProblemBuilder
impl Clone for ProblemBuilder
source§fn clone(&self) -> ProblemBuilder
fn clone(&self) -> ProblemBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ProblemBuilder
impl Debug for ProblemBuilder
source§impl Default for ProblemBuilder
impl Default for ProblemBuilder
source§fn default() -> ProblemBuilder
fn default() -> ProblemBuilder
source§impl PartialEq<ProblemBuilder> for ProblemBuilder
impl PartialEq<ProblemBuilder> for ProblemBuilder
source§fn eq(&self, other: &ProblemBuilder) -> bool
fn eq(&self, other: &ProblemBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.