pub struct InstancePatchStateFilter {
pub key: String,
pub type_: String,
pub values: Vec<String>,
}Expand description
Defines a filter used in DescribeInstancePatchStatesForPatchGroup used to scope down the information returned by the API.
Fields§
§key: StringThe key for the filter. Supported values are FailedCount, InstalledCount, InstalledOtherCount, MissingCount and NotApplicableCount.
type_: StringThe type of comparison that should be performed for the value: Equal, NotEqual, LessThan or GreaterThan.
values: Vec<String>The value for the filter, must be an integer greater than or equal to 0.
Trait Implementations§
Source§impl Clone for InstancePatchStateFilter
impl Clone for InstancePatchStateFilter
Source§fn clone(&self) -> InstancePatchStateFilter
fn clone(&self) -> InstancePatchStateFilter
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 InstancePatchStateFilter
impl Debug for InstancePatchStateFilter
Source§impl Default for InstancePatchStateFilter
impl Default for InstancePatchStateFilter
Source§fn default() -> InstancePatchStateFilter
fn default() -> InstancePatchStateFilter
Returns the “default value” for a type. Read more
Source§impl PartialEq for InstancePatchStateFilter
impl PartialEq for InstancePatchStateFilter
Source§impl Serialize for InstancePatchStateFilter
impl Serialize for InstancePatchStateFilter
impl StructuralPartialEq for InstancePatchStateFilter
Auto Trait Implementations§
impl Freeze for InstancePatchStateFilter
impl RefUnwindSafe for InstancePatchStateFilter
impl Send for InstancePatchStateFilter
impl Sync for InstancePatchStateFilter
impl Unpin for InstancePatchStateFilter
impl UnwindSafe for InstancePatchStateFilter
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