Struct rusoto_ssm::DescribeInstancePatchStatesForPatchGroupRequest [] [src]

pub struct DescribeInstancePatchStatesForPatchGroupRequest {
    pub filters: Option<Vec<InstancePatchStateFilter>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub patch_group: String,
}

Fields

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 maximum number of patches to return (per page).

The token for the next set of items to return. (You received this token from a previous call.)

The name of the patch group for which the patch state information should be retrieved.

Trait Implementations

impl Default for DescribeInstancePatchStatesForPatchGroupRequest
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeInstancePatchStatesForPatchGroupRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeInstancePatchStatesForPatchGroupRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations