Struct aws_sdk_ssm::model::InstanceInformationStringFilter
source · [−]#[non_exhaustive]pub struct InstanceInformationStringFilter { /* private fields */ }
Expand description
The filters to describe or get information about your managed nodes.
Implementations
sourceimpl InstanceInformationStringFilter
impl InstanceInformationStringFilter
sourcepub fn key(&self) -> Option<&str>
pub fn key(&self) -> Option<&str>
The filter key name to describe your managed nodes. For example:
"InstanceIds" | "AgentVersion" | "PingStatus" | "PlatformTypes" | "ActivationIds" | "IamRole" | "ResourceType" | "AssociationStatus" | "tag-key" | "tag:{keyname}
Tag Key
isn't a valid filter. You must specify either tag-key
or tag:{keyname}
and a string. Here are some valid examples: tag-key
, tag:123
, tag:al!
, tag:Windows
. Here are some invalid examples: tag-keys
, Tag Key
, tag:
, tagKey
, abc:keyname
.
sourceimpl InstanceInformationStringFilter
impl InstanceInformationStringFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InstanceInformationStringFilter
.
Trait Implementations
sourceimpl Clone for InstanceInformationStringFilter
impl Clone for InstanceInformationStringFilter
sourcefn clone(&self) -> InstanceInformationStringFilter
fn clone(&self) -> InstanceInformationStringFilter
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 moresourceimpl PartialEq<InstanceInformationStringFilter> for InstanceInformationStringFilter
impl PartialEq<InstanceInformationStringFilter> for InstanceInformationStringFilter
sourcefn eq(&self, other: &InstanceInformationStringFilter) -> bool
fn eq(&self, other: &InstanceInformationStringFilter) -> bool
impl StructuralPartialEq for InstanceInformationStringFilter
Auto Trait Implementations
impl RefUnwindSafe for InstanceInformationStringFilter
impl Send for InstanceInformationStringFilter
impl Sync for InstanceInformationStringFilter
impl Unpin for InstanceInformationStringFilter
impl UnwindSafe for InstanceInformationStringFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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