#[non_exhaustive]pub struct ListCommandInvocationsInput {
pub command_id: Option<String>,
pub instance_id: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub filters: Option<Vec<CommandFilter>>,
pub details: Option<bool>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.command_id: Option<String>(Optional) The invocations for a specific command ID.
instance_id: Option<String>(Optional) The command execution details for a specific managed node ID.
max_results: Option<i32>(Optional) The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
next_token: Option<String>(Optional) The token for the next set of items to return. (You received this token from a previous call.)
filters: Option<Vec<CommandFilter>>(Optional) One or more filters. Use a filter to return a more specific list of results.
details: Option<bool>(Optional) If set this returns the response of the command executions and any command output. The default value is false.
Implementations§
source§impl ListCommandInvocationsInput
impl ListCommandInvocationsInput
sourcepub fn command_id(&self) -> Option<&str>
pub fn command_id(&self) -> Option<&str>
(Optional) The invocations for a specific command ID.
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
(Optional) The command execution details for a specific managed node ID.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
(Optional) The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
(Optional) The token for the next set of items to return. (You received this token from a previous call.)
sourcepub fn filters(&self) -> &[CommandFilter]
pub fn filters(&self) -> &[CommandFilter]
(Optional) One or more filters. Use a filter to return a more specific list of results.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none().
source§impl ListCommandInvocationsInput
impl ListCommandInvocationsInput
sourcepub fn builder() -> ListCommandInvocationsInputBuilder
pub fn builder() -> ListCommandInvocationsInputBuilder
Creates a new builder-style object to manufacture ListCommandInvocationsInput.
Trait Implementations§
source§impl Clone for ListCommandInvocationsInput
impl Clone for ListCommandInvocationsInput
source§fn clone(&self) -> ListCommandInvocationsInput
fn clone(&self) -> ListCommandInvocationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListCommandInvocationsInput
impl Debug for ListCommandInvocationsInput
source§impl PartialEq for ListCommandInvocationsInput
impl PartialEq for ListCommandInvocationsInput
source§fn eq(&self, other: &ListCommandInvocationsInput) -> bool
fn eq(&self, other: &ListCommandInvocationsInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListCommandInvocationsInput
Auto Trait Implementations§
impl Freeze for ListCommandInvocationsInput
impl RefUnwindSafe for ListCommandInvocationsInput
impl Send for ListCommandInvocationsInput
impl Sync for ListCommandInvocationsInput
impl Unpin for ListCommandInvocationsInput
impl UnwindSafe for ListCommandInvocationsInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more