pub struct InstanceInformationFilter {
pub key: String,
pub value_set: Vec<String>,
}Expand description
Describes a filter for a specific list of instances. You can filter instances information by using tags. You specify tags by using a key-value mapping.
Use this action instead of the DescribeInstanceInformationRequest$InstanceInformationFilterList method. The InstanceInformationFilterList method is a legacy method and does not support tags.
Fields§
§key: StringThe name of the filter.
value_set: Vec<String>The filter values.
Trait Implementations§
Source§impl Clone for InstanceInformationFilter
impl Clone for InstanceInformationFilter
Source§fn clone(&self) -> InstanceInformationFilter
fn clone(&self) -> InstanceInformationFilter
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 InstanceInformationFilter
impl Debug for InstanceInformationFilter
Source§impl Default for InstanceInformationFilter
impl Default for InstanceInformationFilter
Source§fn default() -> InstanceInformationFilter
fn default() -> InstanceInformationFilter
Returns the “default value” for a type. Read more
impl StructuralPartialEq for InstanceInformationFilter
Auto Trait Implementations§
impl Freeze for InstanceInformationFilter
impl RefUnwindSafe for InstanceInformationFilter
impl Send for InstanceInformationFilter
impl Sync for InstanceInformationFilter
impl Unpin for InstanceInformationFilter
impl UnwindSafe for InstanceInformationFilter
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