Struct aws_sdk_ssm::operation::describe_maintenance_windows::DescribeMaintenanceWindowsInput
source · #[non_exhaustive]pub struct DescribeMaintenanceWindowsInput {
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.filters: Option<Vec<MaintenanceWindowFilter>>
Optional filters used to narrow down the scope of the returned maintenance windows. Supported filter keys are Name
and Enabled
. For example, Name=MyMaintenanceWindow
and Enabled=True
.
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 DescribeMaintenanceWindowsInput
impl DescribeMaintenanceWindowsInput
sourcepub fn filters(&self) -> &[MaintenanceWindowFilter]
pub fn filters(&self) -> &[MaintenanceWindowFilter]
Optional filters used to narrow down the scope of the returned maintenance windows. Supported filter keys are Name
and Enabled
. For example, Name=MyMaintenanceWindow
and Enabled=True
.
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 DescribeMaintenanceWindowsInput
impl DescribeMaintenanceWindowsInput
sourcepub fn builder() -> DescribeMaintenanceWindowsInputBuilder
pub fn builder() -> DescribeMaintenanceWindowsInputBuilder
Creates a new builder-style object to manufacture DescribeMaintenanceWindowsInput
.
Trait Implementations§
source§impl Clone for DescribeMaintenanceWindowsInput
impl Clone for DescribeMaintenanceWindowsInput
source§fn clone(&self) -> DescribeMaintenanceWindowsInput
fn clone(&self) -> DescribeMaintenanceWindowsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeMaintenanceWindowsInput
impl PartialEq for DescribeMaintenanceWindowsInput
source§fn eq(&self, other: &DescribeMaintenanceWindowsInput) -> bool
fn eq(&self, other: &DescribeMaintenanceWindowsInput) -> bool
self
and other
values to be equal, and is used
by ==
.