[][src]Struct rusoto_opsworks::OperatingSystem

pub struct OperatingSystem {
    pub configuration_managers: Option<Vec<OperatingSystemConfigurationManager>>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub reported_name: Option<String>,
    pub reported_version: Option<String>,
    pub supported: Option<bool>,
    pub type_: Option<String>,
}

Describes supported operating systems in AWS OpsWorks Stacks.

Fields

Supported configuration manager name and versions for an AWS OpsWorks Stacks operating system.

The ID of a supported operating system, such as Amazon Linux 2017.09.

The name of the operating system, such as Amazon Linux 2017.09.

A short name for the operating system manufacturer.

The version of the operating system, including the release and edition, if applicable.

Indicates that an operating system is not supported for new instances.

The type of a supported operating system, either Linux or Windows.

Trait Implementations

impl Clone for OperatingSystem
[src]

Performs copy-assignment from source. Read more

impl Default for OperatingSystem
[src]

impl PartialEq<OperatingSystem> for OperatingSystem
[src]

impl Debug for OperatingSystem
[src]

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

Auto Trait Implementations

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]

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

🔬 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, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut 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 for T

Should always be Self

impl<T> Erased for T