Struct aws_sdk_ssm::operation::list_command_invocations::builders::ListCommandInvocationsInputBuilder
source · #[non_exhaustive]pub struct ListCommandInvocationsInputBuilder { /* private fields */ }Expand description
A builder for ListCommandInvocationsInput.
Implementations§
source§impl ListCommandInvocationsInputBuilder
impl ListCommandInvocationsInputBuilder
sourcepub fn command_id(self, input: impl Into<String>) -> Self
pub fn command_id(self, input: impl Into<String>) -> Self
(Optional) The invocations for a specific command ID.
sourcepub fn set_command_id(self, input: Option<String>) -> Self
pub fn set_command_id(self, input: Option<String>) -> Self
(Optional) The invocations for a specific command ID.
sourcepub fn get_command_id(&self) -> &Option<String>
pub fn get_command_id(&self) -> &Option<String>
(Optional) The invocations for a specific command ID.
sourcepub fn instance_id(self, input: impl Into<String>) -> Self
pub fn instance_id(self, input: impl Into<String>) -> Self
(Optional) The command execution details for a specific managed node ID.
sourcepub fn set_instance_id(self, input: Option<String>) -> Self
pub fn set_instance_id(self, input: Option<String>) -> Self
(Optional) The command execution details for a specific managed node ID.
sourcepub fn get_instance_id(&self) -> &Option<String>
pub fn get_instance_id(&self) -> &Option<String>
(Optional) The command execution details for a specific managed node ID.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
(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 set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
(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 get_max_results(&self) -> &Option<i32>
pub fn get_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, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
(Optional) The token for the next set of items to return. (You received this token from a previous call.)
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
(Optional) The token for the next set of items to return. (You received this token from a previous call.)
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
(Optional) The token for the next set of items to return. (You received this token from a previous call.)
sourcepub fn filters(self, input: CommandFilter) -> Self
pub fn filters(self, input: CommandFilter) -> Self
Appends an item to filters.
To override the contents of this collection use set_filters.
(Optional) One or more filters. Use a filter to return a more specific list of results.
sourcepub fn set_filters(self, input: Option<Vec<CommandFilter>>) -> Self
pub fn set_filters(self, input: Option<Vec<CommandFilter>>) -> Self
(Optional) One or more filters. Use a filter to return a more specific list of results.
sourcepub fn get_filters(&self) -> &Option<Vec<CommandFilter>>
pub fn get_filters(&self) -> &Option<Vec<CommandFilter>>
(Optional) One or more filters. Use a filter to return a more specific list of results.
sourcepub fn details(self, input: bool) -> Self
pub fn details(self, input: bool) -> Self
(Optional) If set this returns the response of the command executions and any command output. The default value is false.
sourcepub fn set_details(self, input: Option<bool>) -> Self
pub fn set_details(self, input: Option<bool>) -> Self
(Optional) If set this returns the response of the command executions and any command output. The default value is false.
sourcepub fn get_details(&self) -> &Option<bool>
pub fn get_details(&self) -> &Option<bool>
(Optional) If set this returns the response of the command executions and any command output. The default value is false.
sourcepub fn build(self) -> Result<ListCommandInvocationsInput, BuildError>
pub fn build(self) -> Result<ListCommandInvocationsInput, BuildError>
Consumes the builder and constructs a ListCommandInvocationsInput.
source§impl ListCommandInvocationsInputBuilder
impl ListCommandInvocationsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListCommandInvocationsOutput, SdkError<ListCommandInvocationsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListCommandInvocationsOutput, SdkError<ListCommandInvocationsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListCommandInvocationsInputBuilder
impl Clone for ListCommandInvocationsInputBuilder
source§fn clone(&self) -> ListCommandInvocationsInputBuilder
fn clone(&self) -> ListCommandInvocationsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListCommandInvocationsInputBuilder
impl Default for ListCommandInvocationsInputBuilder
source§fn default() -> ListCommandInvocationsInputBuilder
fn default() -> ListCommandInvocationsInputBuilder
source§impl PartialEq for ListCommandInvocationsInputBuilder
impl PartialEq for ListCommandInvocationsInputBuilder
source§fn eq(&self, other: &ListCommandInvocationsInputBuilder) -> bool
fn eq(&self, other: &ListCommandInvocationsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListCommandInvocationsInputBuilder
Auto Trait Implementations§
impl Freeze for ListCommandInvocationsInputBuilder
impl RefUnwindSafe for ListCommandInvocationsInputBuilder
impl Send for ListCommandInvocationsInputBuilder
impl Sync for ListCommandInvocationsInputBuilder
impl Unpin for ListCommandInvocationsInputBuilder
impl UnwindSafe for ListCommandInvocationsInputBuilder
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