#[non_exhaustive]pub struct DescribeInstancePatchStatesForPatchGroupInput {
pub patch_group: Option<String>,
pub filters: Option<Vec<InstancePatchStateFilter>>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.patch_group: Option<String>
The name of the patch group for which the patch state information should be retrieved.
filters: Option<Vec<InstancePatchStateFilter>>
Each entry in the array is a structure containing:
-
Key (string between 1 and 200 characters)
-
Values (array containing a single string)
-
Type (string "Equal", "NotEqual", "LessThan", "GreaterThan")
next_token: Option<String>
The token for the next set of items to return. (You received this token from a previous call.)
max_results: Option<i32>
The maximum number of patches to return (per page).
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeInstancePatchStatesForPatchGroup, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeInstancePatchStatesForPatchGroup, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeInstancePatchStatesForPatchGroup
>
Creates a new builder-style object to manufacture DescribeInstancePatchStatesForPatchGroupInput
The name of the patch group for which the patch state information should be retrieved.
Each entry in the array is a structure containing:
-
Key (string between 1 and 200 characters)
-
Values (array containing a single string)
-
Type (string "Equal", "NotEqual", "LessThan", "GreaterThan")
The token for the next set of items to return. (You received this token from a previous call.)
The maximum number of patches to return (per page).
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more