#[non_exhaustive]pub struct InvalidAlarmConfigException { /* private fields */ }
Expand description
The format of the alarm configuration is invalid. Possible causes include:
-
The alarm list is null.
-
The alarm object is null.
-
The alarm name is empty or null or exceeds the limit of 255 characters.
-
Two alarms with the same name have been specified.
-
The alarm configuration is enabled, but the alarm list is empty.
Implementations§
source§impl InvalidAlarmConfigException
impl InvalidAlarmConfigException
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InvalidAlarmConfigException
.
Trait Implementations§
source§impl Clone for InvalidAlarmConfigException
impl Clone for InvalidAlarmConfigException
source§fn clone(&self) -> InvalidAlarmConfigException
fn clone(&self) -> InvalidAlarmConfigException
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 InvalidAlarmConfigException
impl Debug for InvalidAlarmConfigException
source§impl Error for InvalidAlarmConfigException
impl Error for InvalidAlarmConfigException
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq<InvalidAlarmConfigException> for InvalidAlarmConfigException
impl PartialEq<InvalidAlarmConfigException> for InvalidAlarmConfigException
source§fn eq(&self, other: &InvalidAlarmConfigException) -> bool
fn eq(&self, other: &InvalidAlarmConfigException) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.