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

configuration_managers: Option<Vec<OperatingSystemConfigurationManager>>

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

id: Option<String>

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

name: Option<String>

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

reported_name: Option<String>

A short name for the operating system manufacturer.

reported_version: Option<String>

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

supported: Option<bool>

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

type_: Option<String>

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

Trait Implementations

impl Clone for OperatingSystem[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<OperatingSystem> for OperatingSystem[src]

impl Default 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]

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

impl<T> Any for T where
    T: 'static + ?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

The type returned in the event of a conversion error.

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