pub enum ConfigurationState {
Conformant,
NonConformant,
Checking,
PreApplying,
Applying,
Unknown,
UnknownValue,
}Expand description
The current state of the host configuration. The Host is either CONFORMANT - current state matches the desired configuration NON_CONFORMANT - current state does not match the desired configuration PRE_APPLYING, APPLYING, CHECKING - transitional states UNKNOWN - current state is unknown
Variants§
Conformant
NonConformant
Checking
PreApplying
Applying
Unknown
UnknownValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
Trait Implementations§
Source§impl Clone for ConfigurationState
impl Clone for ConfigurationState
Source§fn clone(&self) -> ConfigurationState
fn clone(&self) -> ConfigurationState
Returns a duplicate 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 ConfigurationState
impl Debug for ConfigurationState
Source§impl<'de> Deserialize<'de> for ConfigurationState
impl<'de> Deserialize<'de> for ConfigurationState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ConfigurationState
impl PartialEq for ConfigurationState
Source§impl Serialize for ConfigurationState
impl Serialize for ConfigurationState
impl Eq for ConfigurationState
impl StructuralPartialEq for ConfigurationState
Auto Trait Implementations§
impl Freeze for ConfigurationState
impl RefUnwindSafe for ConfigurationState
impl Send for ConfigurationState
impl Sync for ConfigurationState
impl Unpin for ConfigurationState
impl UnsafeUnpin for ConfigurationState
impl UnwindSafe for ConfigurationState
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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