Struct aws_sdk_iot::operation::put_verification_state_on_violation::PutVerificationStateOnViolationInput
source · #[non_exhaustive]pub struct PutVerificationStateOnViolationInput {
pub violation_id: Option<String>,
pub verification_state: Option<VerificationState>,
pub verification_state_description: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.violation_id: Option<String>The violation ID.
verification_state: Option<VerificationState>The verification state of the violation.
verification_state_description: Option<String>The description of the verification state of the violation (detect alarm).
Implementations§
source§impl PutVerificationStateOnViolationInput
impl PutVerificationStateOnViolationInput
sourcepub fn violation_id(&self) -> Option<&str>
pub fn violation_id(&self) -> Option<&str>
The violation ID.
sourcepub fn verification_state(&self) -> Option<&VerificationState>
pub fn verification_state(&self) -> Option<&VerificationState>
The verification state of the violation.
sourcepub fn verification_state_description(&self) -> Option<&str>
pub fn verification_state_description(&self) -> Option<&str>
The description of the verification state of the violation (detect alarm).
source§impl PutVerificationStateOnViolationInput
impl PutVerificationStateOnViolationInput
sourcepub fn builder() -> PutVerificationStateOnViolationInputBuilder
pub fn builder() -> PutVerificationStateOnViolationInputBuilder
Creates a new builder-style object to manufacture PutVerificationStateOnViolationInput.
Trait Implementations§
source§impl Clone for PutVerificationStateOnViolationInput
impl Clone for PutVerificationStateOnViolationInput
source§fn clone(&self) -> PutVerificationStateOnViolationInput
fn clone(&self) -> PutVerificationStateOnViolationInput
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 PartialEq for PutVerificationStateOnViolationInput
impl PartialEq for PutVerificationStateOnViolationInput
source§fn eq(&self, other: &PutVerificationStateOnViolationInput) -> bool
fn eq(&self, other: &PutVerificationStateOnViolationInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PutVerificationStateOnViolationInput
Auto Trait Implementations§
impl RefUnwindSafe for PutVerificationStateOnViolationInput
impl Send for PutVerificationStateOnViolationInput
impl Sync for PutVerificationStateOnViolationInput
impl Unpin for PutVerificationStateOnViolationInput
impl UnwindSafe for PutVerificationStateOnViolationInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.