Struct aws_sdk_ssm::input::DescribeInstancePatchesInput
source · [−]#[non_exhaustive]pub struct DescribeInstancePatchesInput {
pub instance_id: Option<String>,
pub filters: Option<Vec<PatchOrchestratorFilter>>,
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.instance_id: Option<String>
The ID of the managed node whose patch state information should be retrieved.
filters: Option<Vec<PatchOrchestratorFilter>>
Each element in the array is a structure containing a key-value pair.
Supported keys for DescribeInstancePatches
include the following:
-
Classification
Sample values:
Security
|SecurityUpdates
-
KBId
Sample values:
KB4480056
|java-1.7.0-openjdk.x86_64
-
Severity
Sample values:
Important
|Medium
|Low
-
State
Sample values:
Installed
|InstalledOther
|InstalledPendingReboot
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<DescribeInstancePatches, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeInstancePatches, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeInstancePatches
>
Creates a new builder-style object to manufacture DescribeInstancePatchesInput
The ID of the managed node whose patch state information should be retrieved.
Each element in the array is a structure containing a key-value pair.
Supported keys for DescribeInstancePatches
include the following:
-
Classification
Sample values:
Security
|SecurityUpdates
-
KBId
Sample values:
KB4480056
|java-1.7.0-openjdk.x86_64
-
Severity
Sample values:
Important
|Medium
|Low
-
State
Sample values:
Installed
|InstalledOther
|InstalledPendingReboot
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
impl Send for DescribeInstancePatchesInput
impl Sync for DescribeInstancePatchesInput
impl Unpin for DescribeInstancePatchesInput
impl UnwindSafe for DescribeInstancePatchesInput
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