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

impl Default for PatchSource[src]

impl PartialEq<PatchSource> for PatchSource[src]

impl Debug for PatchSource[src]

impl StructuralPartialEq for PatchSource[src]

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

impl Serialize for PatchSource[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self