Struct rusoto_ssm::GetPatchBaselineResult[][src]

pub struct GetPatchBaselineResult {
    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 patch_groups: Option<Vec<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.

Returns the specified compliance severity level for approved patches in the patch baseline.

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 retrieved patch baseline.

The date 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 the patch baseline was last modified.

The name of the patch baseline.

Returns the operating system specified for the patch baseline.

Patch groups included in the 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 GetPatchBaselineResult
[src]

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

impl Debug for GetPatchBaselineResult
[src]

Formats the value using the given formatter. Read more

impl Clone for GetPatchBaselineResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetPatchBaselineResult
[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