Struct rusoto_ssm::UpdatePatchBaselineResult[][src]

pub struct UpdatePatchBaselineResult {
    pub approval_rules: Option<PatchRuleGroup>,
    pub approved_patches: Option<Vec<String>>,
    pub approved_patches_compliance_level: Option<String>,
    pub approved_patches_enable_non_security: Option<bool>,
    pub baseline_id: Option<String>,
    pub created_date: Option<f64>,
    pub description: Option<String>,
    pub global_filters: Option<PatchFilterGroup>,
    pub modified_date: Option<f64>,
    pub name: Option<String>,
    pub operating_system: Option<String>,
    pub rejected_patches: Option<Vec<String>>,
    pub sources: Option<Vec<PatchSource>>,
}

Fields

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

A list of explicitly approved patches for the baseline.

The compliance severity level assigned to the patch baseline after the update completed.

Indicates whether the list of approved patches includes non-security updates that should be applied to the instances. The default value is 'false'. Applies to Linux instances only.

The ID of the deleted patch baseline.

The date when the patch baseline was created.

A description of the Patch Baseline.

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

The date when the patch baseline was last modified.

The name of the patch baseline.

The operating system rule used by the updated patch baseline.

A list of explicitly rejected patches for the baseline.

Information about the patches to use to update the instances, including target operating systems and source repositories. Applies to Linux instances only.

Trait Implementations

impl Default for UpdatePatchBaselineResult
[src]

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

impl Debug for UpdatePatchBaselineResult
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdatePatchBaselineResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdatePatchBaselineResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations