#[non_exhaustive]pub struct DescribePatchGroupsInput {
pub max_results: Option<i32>,
pub filters: Option<Vec<PatchOrchestratorFilter>>,
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.max_results: Option<i32>
The maximum number of patch groups to return (per page).
filters: Option<Vec<PatchOrchestratorFilter>>
Each element in the array is a structure containing a key-value pair.
Supported keys for DescribePatchGroups
include the following:
-
NAME_PREFIX
Sample values:
AWS-
|My-
. -
OPERATING_SYSTEM
Sample values:
AMAZON_LINUX
|SUSE
|WINDOWS
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 DescribePatchGroupsInput
impl DescribePatchGroupsInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of patch groups to return (per page).
sourcepub fn filters(&self) -> &[PatchOrchestratorFilter]
pub fn filters(&self) -> &[PatchOrchestratorFilter]
Each element in the array is a structure containing a key-value pair.
Supported keys for DescribePatchGroups
include the following:
-
NAME_PREFIX
Sample values:
AWS-
|My-
. -
OPERATING_SYSTEM
Sample values:
AMAZON_LINUX
|SUSE
|WINDOWS
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 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 DescribePatchGroupsInput
impl DescribePatchGroupsInput
sourcepub fn builder() -> DescribePatchGroupsInputBuilder
pub fn builder() -> DescribePatchGroupsInputBuilder
Creates a new builder-style object to manufacture DescribePatchGroupsInput
.
Trait Implementations§
source§impl Clone for DescribePatchGroupsInput
impl Clone for DescribePatchGroupsInput
source§fn clone(&self) -> DescribePatchGroupsInput
fn clone(&self) -> DescribePatchGroupsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribePatchGroupsInput
impl Debug for DescribePatchGroupsInput
source§impl PartialEq for DescribePatchGroupsInput
impl PartialEq for DescribePatchGroupsInput
source§fn eq(&self, other: &DescribePatchGroupsInput) -> bool
fn eq(&self, other: &DescribePatchGroupsInput) -> bool
self
and other
values to be equal, and is used
by ==
.