Struct aws_sdk_ssm::model::SessionFilter
source · [−]#[non_exhaustive]pub struct SessionFilter { /* private fields */ }
Expand description
Describes a filter for Session Manager information.
Implementations
sourceimpl SessionFilter
impl SessionFilter
sourcepub fn key(&self) -> Option<&SessionFilterKey>
pub fn key(&self) -> Option<&SessionFilterKey>
The name of the filter.
sourcepub fn value(&self) -> Option<&str>
pub fn value(&self) -> Option<&str>
The filter value. Valid values for each filter key are as follows:
-
InvokedAfter: Specify a timestamp to limit your results. For example, specify 2018-08-29T00:00:00Z to see sessions that started August 29, 2018, and later.
-
InvokedBefore: Specify a timestamp to limit your results. For example, specify 2018-08-29T00:00:00Z to see sessions that started before August 29, 2018.
-
Target: Specify a managed node to which session connections have been made.
-
Owner: Specify an Amazon Web Services user account to see a list of sessions started by that user.
-
Status: Specify a valid session status to see a list of all sessions with that status. Status values you can specify include:
-
Connected
-
Connecting
-
Disconnected
-
Terminated
-
Terminating
-
Failed
-
-
SessionId: Specify a session ID to return details about the session.
sourceimpl SessionFilter
impl SessionFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SessionFilter
.
Trait Implementations
sourceimpl Clone for SessionFilter
impl Clone for SessionFilter
sourcefn clone(&self) -> SessionFilter
fn clone(&self) -> SessionFilter
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 SessionFilter
impl Debug for SessionFilter
sourceimpl PartialEq<SessionFilter> for SessionFilter
impl PartialEq<SessionFilter> for SessionFilter
sourcefn eq(&self, other: &SessionFilter) -> bool
fn eq(&self, other: &SessionFilter) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SessionFilter) -> bool
fn ne(&self, other: &SessionFilter) -> bool
This method tests for !=
.
impl StructuralPartialEq for SessionFilter
Auto Trait Implementations
impl RefUnwindSafe for SessionFilter
impl Send for SessionFilter
impl Sync for SessionFilter
impl Unpin for SessionFilter
impl UnwindSafe for SessionFilter
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