Struct rusoto_elasticbeanstalk::PlatformDescription[][src]

pub struct PlatformDescription {
    pub custom_ami_list: Option<Vec<CustomAmi>>,
    pub date_created: Option<String>,
    pub date_updated: Option<String>,
    pub description: Option<String>,
    pub frameworks: Option<Vec<PlatformFramework>>,
    pub maintainer: Option<String>,
    pub operating_system_name: Option<String>,
    pub operating_system_version: Option<String>,
    pub platform_arn: Option<String>,
    pub platform_category: Option<String>,
    pub platform_name: Option<String>,
    pub platform_owner: Option<String>,
    pub platform_status: Option<String>,
    pub platform_version: Option<String>,
    pub programming_languages: Option<Vec<PlatformProgrammingLanguage>>,
    pub solution_stack_name: Option<String>,
    pub supported_addon_list: Option<Vec<String>>,
    pub supported_tier_list: Option<Vec<String>>,
}

Detailed information about a platform.

Fields

The custom AMIs supported by the platform.

The date when the platform was created.

The date when the platform was last updated.

The description of the platform.

The frameworks supported by the platform.

Information about the maintainer of the platform.

The operating system used by the platform.

The version of the operating system used by the platform.

The ARN of the platform.

The category of the platform.

The name of the platform.

The AWS account ID of the person who created the platform.

The status of the platform.

The version of the platform.

The programming languages supported by the platform.

The name of the solution stack used by the platform.

The additions supported by the platform.

The tiers supported by the platform.

Trait Implementations

impl Default for PlatformDescription
[src]

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

impl Debug for PlatformDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for PlatformDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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