Struct rusoto_ssm::CreatePatchBaselineRequest[][src]

pub struct CreatePatchBaselineRequest {
    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 client_token: Option<String>,
    pub description: Option<String>,
    pub global_filters: Option<PatchFilterGroup>,
    pub name: 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.

For information about accepted formats for lists of approved patches and rejected patches, see Package Name Formats for Approved and Rejected Patch Lists in the AWS Systems Manager User Guide.

Defines the compliance level for approved patches. This means that if an approved patch is reported as missing, this is the severity of the compliance violation. The default value is UNSPECIFIED.

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.

User-provided idempotency token.

A description of the patch baseline.

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

The name of the patch baseline.

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

A list of explicitly rejected patches for the baseline.

For information about accepted formats for lists of approved patches and rejected patches, see Package Name Formats for Approved and Rejected Patch Lists in the AWS Systems Manager User Guide.

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 CreatePatchBaselineRequest
[src]

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

impl Debug for CreatePatchBaselineRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreatePatchBaselineRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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