Struct aws_sdk_ssm::model::InstancePatchStateFilter
source · [−]#[non_exhaustive]pub struct InstancePatchStateFilter {
pub key: Option<String>,
pub values: Option<Vec<String>>,
pub type: Option<InstancePatchStateOperatorType>,
}
Expand description
Defines a filter used in DescribeInstancePatchStatesForPatchGroup
to scope down the information returned by the API.
Example: To filter for all managed nodes in a patch group having more than three patches with a FailedCount
status, use the following for the filter:
-
Value for
Key
:FailedCount
-
Value for
Type
:GreaterThan
-
Value for
Values
:3
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.key: Option<String>
The key for the filter. Supported values include the following:
-
InstalledCount
-
InstalledOtherCount
-
InstalledPendingRebootCount
-
InstalledRejectedCount
-
MissingCount
-
FailedCount
-
UnreportedNotApplicableCount
-
NotApplicableCount
values: Option<Vec<String>>
The value for the filter. Must be an integer greater than or equal to 0.
type: Option<InstancePatchStateOperatorType>
The type of comparison that should be performed for the value.
Implementations
sourceimpl InstancePatchStateFilter
impl InstancePatchStateFilter
sourcepub fn key(&self) -> Option<&str>
pub fn key(&self) -> Option<&str>
The key for the filter. Supported values include the following:
-
InstalledCount
-
InstalledOtherCount
-
InstalledPendingRebootCount
-
InstalledRejectedCount
-
MissingCount
-
FailedCount
-
UnreportedNotApplicableCount
-
NotApplicableCount
sourcepub fn values(&self) -> Option<&[String]>
pub fn values(&self) -> Option<&[String]>
The value for the filter. Must be an integer greater than or equal to 0.
sourcepub fn type(&self) -> Option<&InstancePatchStateOperatorType>
pub fn type(&self) -> Option<&InstancePatchStateOperatorType>
The type of comparison that should be performed for the value.
sourceimpl InstancePatchStateFilter
impl InstancePatchStateFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InstancePatchStateFilter
.
Trait Implementations
sourceimpl Clone for InstancePatchStateFilter
impl Clone for InstancePatchStateFilter
sourcefn clone(&self) -> InstancePatchStateFilter
fn clone(&self) -> InstancePatchStateFilter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for InstancePatchStateFilter
impl Debug for InstancePatchStateFilter
sourceimpl PartialEq<InstancePatchStateFilter> for InstancePatchStateFilter
impl PartialEq<InstancePatchStateFilter> for InstancePatchStateFilter
sourcefn eq(&self, other: &InstancePatchStateFilter) -> bool
fn eq(&self, other: &InstancePatchStateFilter) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &InstancePatchStateFilter) -> bool
fn ne(&self, other: &InstancePatchStateFilter) -> bool
This method tests for !=
.
impl StructuralPartialEq for InstancePatchStateFilter
Auto Trait Implementations
impl RefUnwindSafe for InstancePatchStateFilter
impl Send for InstancePatchStateFilter
impl Sync for InstancePatchStateFilter
impl Unpin for InstancePatchStateFilter
impl UnwindSafe for InstancePatchStateFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more