Struct aws_sdk_ssm::operation::describe_maintenance_window_execution_tasks::DescribeMaintenanceWindowExecutionTasksInput
source · #[non_exhaustive]pub struct DescribeMaintenanceWindowExecutionTasksInput {
pub window_execution_id: Option<String>,
pub filters: Option<Vec<MaintenanceWindowFilter>>,
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.window_execution_id: Option<String>
The ID of the maintenance window execution whose task executions should be retrieved.
filters: Option<Vec<MaintenanceWindowFilter>>
Optional filters used to scope down the returned tasks. The supported filter key is STATUS
with the corresponding values PENDING
, IN_PROGRESS
, SUCCESS
, FAILED
, TIMED_OUT
, CANCELLING
, and CANCELLED
.
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 DescribeMaintenanceWindowExecutionTasksInput
impl DescribeMaintenanceWindowExecutionTasksInput
sourcepub fn window_execution_id(&self) -> Option<&str>
pub fn window_execution_id(&self) -> Option<&str>
The ID of the maintenance window execution whose task executions should be retrieved.
sourcepub fn filters(&self) -> &[MaintenanceWindowFilter]
pub fn filters(&self) -> &[MaintenanceWindowFilter]
Optional filters used to scope down the returned tasks. The supported filter key is STATUS
with the corresponding values PENDING
, IN_PROGRESS
, SUCCESS
, FAILED
, TIMED_OUT
, CANCELLING
, and CANCELLED
.
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 DescribeMaintenanceWindowExecutionTasksInput
impl DescribeMaintenanceWindowExecutionTasksInput
sourcepub fn builder() -> DescribeMaintenanceWindowExecutionTasksInputBuilder
pub fn builder() -> DescribeMaintenanceWindowExecutionTasksInputBuilder
Creates a new builder-style object to manufacture DescribeMaintenanceWindowExecutionTasksInput
.
Trait Implementations§
source§impl Clone for DescribeMaintenanceWindowExecutionTasksInput
impl Clone for DescribeMaintenanceWindowExecutionTasksInput
source§fn clone(&self) -> DescribeMaintenanceWindowExecutionTasksInput
fn clone(&self) -> DescribeMaintenanceWindowExecutionTasksInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeMaintenanceWindowExecutionTasksInput
impl PartialEq for DescribeMaintenanceWindowExecutionTasksInput
source§fn eq(&self, other: &DescribeMaintenanceWindowExecutionTasksInput) -> bool
fn eq(&self, other: &DescribeMaintenanceWindowExecutionTasksInput) -> bool
self
and other
values to be equal, and is used
by ==
.