Struct aws_sdk_ssm::operation::list_commands::ListCommandsInput
source · #[non_exhaustive]pub struct ListCommandsInput { /* private fields */ }
Implementations§
source§impl ListCommandsInput
impl ListCommandsInput
sourcepub fn command_id(&self) -> Option<&str>
pub fn command_id(&self) -> Option<&str>
(Optional) If provided, lists only the specified command.
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
(Optional) Lists commands issued against this managed node ID.
You can't specify a managed node ID in the same command that you specify Status
= Pending
. This is because the command hasn't reached the managed node yet.
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) -> Option<&[CommandFilter]>
pub fn filters(&self) -> Option<&[CommandFilter]>
(Optional) One or more filters. Use a filter to return a more specific list of results.
source§impl ListCommandsInput
impl ListCommandsInput
sourcepub fn builder() -> ListCommandsInputBuilder
pub fn builder() -> ListCommandsInputBuilder
Creates a new builder-style object to manufacture ListCommandsInput
.
source§impl ListCommandsInput
impl ListCommandsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCommands, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ListCommands, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListCommands
>
Trait Implementations§
source§impl Clone for ListCommandsInput
impl Clone for ListCommandsInput
source§fn clone(&self) -> ListCommandsInput
fn clone(&self) -> ListCommandsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListCommandsInput
impl Debug for ListCommandsInput
source§impl PartialEq<ListCommandsInput> for ListCommandsInput
impl PartialEq<ListCommandsInput> for ListCommandsInput
source§fn eq(&self, other: &ListCommandsInput) -> bool
fn eq(&self, other: &ListCommandsInput) -> bool
self
and other
values to be equal, and is used
by ==
.