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,
pub tags: Option<Vec<Tag>>,
}
Expand description
Request to create a new platform version.
Fields§
§environment_name: Option<String>
The name of the builder environment.
option_settings: Option<Vec<ConfigurationOptionSetting>>
The configuration option settings to apply to the builder environment.
platform_definition_bundle: S3Location
The location of the platform definition archive in Amazon S3.
platform_name: String
The name of your custom platform.
platform_version: String
The number, such as 1.0.2, for the new platform version.
Specifies the tags applied to the new platform version.
Elastic Beanstalk applies these tags only to the platform version. Environments that you create using the platform version don't inherit the tags.
Trait Implementations§
Source§impl Clone for CreatePlatformVersionRequest
impl Clone for CreatePlatformVersionRequest
Source§fn clone(&self) -> CreatePlatformVersionRequest
fn clone(&self) -> CreatePlatformVersionRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreatePlatformVersionRequest
impl Debug for CreatePlatformVersionRequest
Source§impl Default for CreatePlatformVersionRequest
impl Default for CreatePlatformVersionRequest
Source§fn default() -> CreatePlatformVersionRequest
fn default() -> CreatePlatformVersionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreatePlatformVersionRequest
impl PartialEq for CreatePlatformVersionRequest
Source§fn eq(&self, other: &CreatePlatformVersionRequest) -> bool
fn eq(&self, other: &CreatePlatformVersionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreatePlatformVersionRequest
Auto Trait Implementations§
impl Freeze for CreatePlatformVersionRequest
impl RefUnwindSafe for CreatePlatformVersionRequest
impl Send for CreatePlatformVersionRequest
impl Sync for CreatePlatformVersionRequest
impl Unpin for CreatePlatformVersionRequest
impl UnwindSafe for CreatePlatformVersionRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more