Struct aws_sdk_ssm::operation::describe_automation_executions::DescribeAutomationExecutionsInput
source · #[non_exhaustive]pub struct DescribeAutomationExecutionsInput {
pub filters: Option<Vec<AutomationExecutionFilter>>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
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.filters: Option<Vec<AutomationExecutionFilter>>
Filters used to limit the scope of executions that are requested.
max_results: Option<i32>
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>
The token for the next set of items to return. (You received this token from a previous call.)
Implementations§
source§impl DescribeAutomationExecutionsInput
impl DescribeAutomationExecutionsInput
sourcepub fn filters(&self) -> &[AutomationExecutionFilter]
pub fn filters(&self) -> &[AutomationExecutionFilter]
Filters used to limit the scope of executions that are requested.
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()
.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
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>
The token for the next set of items to return. (You received this token from a previous call.)
source§impl DescribeAutomationExecutionsInput
impl DescribeAutomationExecutionsInput
sourcepub fn builder() -> DescribeAutomationExecutionsInputBuilder
pub fn builder() -> DescribeAutomationExecutionsInputBuilder
Creates a new builder-style object to manufacture DescribeAutomationExecutionsInput
.
Trait Implementations§
source§impl Clone for DescribeAutomationExecutionsInput
impl Clone for DescribeAutomationExecutionsInput
source§fn clone(&self) -> DescribeAutomationExecutionsInput
fn clone(&self) -> DescribeAutomationExecutionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeAutomationExecutionsInput
impl PartialEq for DescribeAutomationExecutionsInput
source§fn eq(&self, other: &DescribeAutomationExecutionsInput) -> bool
fn eq(&self, other: &DescribeAutomationExecutionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.