[][src]Struct rusoto_ssm::UpdatePatchBaselineResult

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 rejected_patches_action: Option<String>,
    pub sources: Option<Vec<PatchSource>>,
}

Fields

approval_rules: Option<PatchRuleGroup>

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

approved_patches: Option<Vec<String>>

A list of explicitly approved patches for the baseline.

approved_patches_compliance_level: Option<String>

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

approved_patches_enable_non_security: Option<bool>

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.

baseline_id: Option<String>

The ID of the deleted patch baseline.

created_date: Option<f64>

The date when the patch baseline was created.

description: Option<String>

A description of the Patch Baseline.

global_filters: Option<PatchFilterGroup>

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

modified_date: Option<f64>

The date when the patch baseline was last modified.

name: Option<String>

The name of the patch baseline.

operating_system: Option<String>

The operating system rule used by the updated patch baseline.

rejected_patches: Option<Vec<String>>

A list of explicitly rejected patches for the baseline.

rejected_patches_action: Option<String>

The action specified to take on patches included in the RejectedPatches list. A patch can be allowed only if it is a dependency of another package, or blocked entirely along with packages that include it as a dependency.

sources: Option<Vec<PatchSource>>

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 Clone for UpdatePatchBaselineResult[src]

impl Debug for UpdatePatchBaselineResult[src]

impl Default for UpdatePatchBaselineResult[src]

impl<'de> Deserialize<'de> for UpdatePatchBaselineResult[src]

impl PartialEq<UpdatePatchBaselineResult> for UpdatePatchBaselineResult[src]

impl StructuralPartialEq for UpdatePatchBaselineResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.