Struct rusoto_elasticbeanstalk::CreatePlatformVersionRequest[][src]

pub struct CreatePlatformVersionRequest {
    pub environment_name: Option<String>,
    pub option_settings: Option<Vec<ConfigurationOptionSetting>>,
    pub platform_definition_bundle: S3Location,
    pub platform_name: String,
    pub platform_version: String,
}

Request to create a new platform version.

Fields

The name of the builder environment.

The configuration option settings to apply to the builder environment.

The location of the platform definition archive in Amazon S3.

The name of your custom platform.

The number, such as 1.0.2, for the new platform version.

Trait Implementations

impl Default for CreatePlatformVersionRequest
[src]

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

impl Debug for CreatePlatformVersionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreatePlatformVersionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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