[−][src]Struct rusoto_ssm::CommandFilter
Describes a command filter.
Fields
key: String
The name of the filter.
value: String
The filter value. Valid values for each filter key are as follows:
-
InvokedAfter: Specify a timestamp to limit your results. For example, specify
2018-07-07T00:00:00Z
to see a list of command executions occurring July 7, 2018, and later. -
InvokedBefore: Specify a timestamp to limit your results. For example, specify
2018-07-07T00:00:00Z
to see a list of command executions from before July 7, 2018. -
Status: Specify a valid command status to see a list of all command executions with that status. Status values you can specify include:
-
Pending
-
InProgress
-
Success
-
Cancelled
-
Failed
-
TimedOut
-
Cancelling
-
-
DocumentName: Specify name of the SSM document for which you want to see command execution results. For example, specify
AWS-RunPatchBaseline
to see command executions that used this SSM document to perform security patching operations on instances. -
ExecutionStage: Specify one of the following values:
-
Executing
: Returns a list of command executions that are currently still running. -
Complete
: Returns a list of command executions that have already completed.
-
Trait Implementations
impl PartialEq<CommandFilter> for CommandFilter
[src]
fn eq(&self, other: &CommandFilter) -> bool
[src]
fn ne(&self, other: &CommandFilter) -> bool
[src]
impl Default for CommandFilter
[src]
fn default() -> CommandFilter
[src]
impl Clone for CommandFilter
[src]
fn clone(&self) -> CommandFilter
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for CommandFilter
[src]
impl Serialize for CommandFilter
[src]
Auto Trait Implementations
impl Send for CommandFilter
impl Sync for CommandFilter
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self