Struct rusoto_ssm::UpdatePatchBaselineRequest [] [src]

pub struct UpdatePatchBaselineRequest {
    pub approval_rules: Option<PatchRuleGroup>,
    pub approved_patches: Option<Vec<String>>,
    pub approved_patches_compliance_level: Option<String>,
    pub baseline_id: String,
    pub description: Option<String>,
    pub global_filters: Option<PatchFilterGroup>,
    pub name: Option<String>,
    pub rejected_patches: Option<Vec<String>>,
}

Fields

A set of rules used to include patches in the baseline.

A list of explicitly approved patches for the baseline.

Assigns a new compliance severity level to an existing patch baseline.

The ID of the patch baseline to update.

A description of the patch baseline.

A set of global filters used to exclude patches from the baseline.

The name of the patch baseline.

A list of explicitly rejected patches for the baseline.

Trait Implementations

impl Default for UpdatePatchBaselineRequest
[src]

[src]

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

impl Debug for UpdatePatchBaselineRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdatePatchBaselineRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations