Struct aws_sdk_ssm::input::ListCommandsInput [−][src]
#[non_exhaustive]pub struct ListCommandsInput {
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>>,
}
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) If provided, lists only the specified command.
instance_id: Option<String>
(Optional) Lists commands issued against this instance ID.
You can't specify an instance ID in the same command that you specify Status
=
Pending
. This is because the command hasn't reached the instance yet.
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCommands, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCommands, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListCommands
>
Creates a new builder-style object to manufacture ListCommandsInput
(Optional) If provided, lists only the specified command.
(Optional) Lists commands issued against this instance ID.
You can't specify an instance ID in the same command that you specify Status
=
Pending
. This is because the command hasn't reached the instance yet.
(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.
(Optional) The token for the next set of items to return. (You received this token from a previous call.)
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListCommandsInput
impl Send for ListCommandsInput
impl Sync for ListCommandsInput
impl Unpin for ListCommandsInput
impl UnwindSafe for ListCommandsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more