[][src]Struct rusoto_ssm::PatchSource

pub struct PatchSource {
    pub configuration: String,
    pub name: String,
    pub products: Vec<String>,
}

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

Fields

configuration: String

The value of the yum repo configuration. For example:

[main]

cachedir=/var/cache/yum/$basesearch$releasever

keepcache=0

debuglevel=2

name: String

The name specified to identify the patch source.

products: Vec<String>

The specific operating system versions a patch repository applies to, such as "Ubuntu16.04", "AmazonLinux2016.09", "RedhatEnterpriseLinux7.2" or "Suse12.7". For lists of supported product values, see PatchFilter.

Trait Implementations

impl PartialEq<PatchSource> for PatchSource[src]

impl Default for PatchSource[src]

impl Clone for PatchSource[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PatchSource[src]

impl Serialize for PatchSource[src]

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

Auto Trait Implementations

impl Send for PatchSource

impl Sync for PatchSource

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self