Struct rusoto_ssm::PatchBaselineIdentity[][src]

pub struct PatchBaselineIdentity {
    pub baseline_description: Option<String>,
    pub baseline_id: Option<String>,
    pub baseline_name: Option<String>,
    pub default_baseline: Option<bool>,
    pub operating_system: Option<String>,
}

Defines the basic information about a patch baseline.

Fields

The description of the patch baseline.

The ID of the patch baseline.

The name of the patch baseline.

Whether this is the default baseline. Note that Systems Manager supports creating multiple default patch baselines. For example, you can create a default patch baseline for each operating system.

Defines the operating system the patch baseline applies to. The Default value is WINDOWS.

Trait Implementations

impl Default for PatchBaselineIdentity
[src]

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

impl Debug for PatchBaselineIdentity
[src]

Formats the value using the given formatter. Read more

impl Clone for PatchBaselineIdentity
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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