Struct rusoto_opsworks::OperatingSystem[][src]

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 Default for OperatingSystem
[src]

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

impl Debug for OperatingSystem
[src]

Formats the value using the given formatter. Read more

impl Clone for OperatingSystem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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