Struct aws_sdk_elasticbeanstalk::operation::update_application_version::UpdateApplicationVersionInput
source · #[non_exhaustive]pub struct UpdateApplicationVersionInput {
pub application_name: Option<String>,
pub version_label: Option<String>,
pub description: Option<String>,
}
Expand description
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.application_name: Option<String>
The name of the application associated with this version.
If no application is found with this name, UpdateApplication
returns an InvalidParameterValue
error.
version_label: Option<String>
The name of the version to update.
If no application version is found with this label, UpdateApplication
returns an InvalidParameterValue
error.
description: Option<String>
A new description for this version.
Implementations§
source§impl UpdateApplicationVersionInput
impl UpdateApplicationVersionInput
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
The name of the application associated with this version.
If no application is found with this name, UpdateApplication
returns an InvalidParameterValue
error.
sourcepub fn version_label(&self) -> Option<&str>
pub fn version_label(&self) -> Option<&str>
The name of the version to update.
If no application version is found with this label, UpdateApplication
returns an InvalidParameterValue
error.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A new description for this version.
source§impl UpdateApplicationVersionInput
impl UpdateApplicationVersionInput
sourcepub fn builder() -> UpdateApplicationVersionInputBuilder
pub fn builder() -> UpdateApplicationVersionInputBuilder
Creates a new builder-style object to manufacture UpdateApplicationVersionInput
.
Trait Implementations§
source§impl Clone for UpdateApplicationVersionInput
impl Clone for UpdateApplicationVersionInput
source§fn clone(&self) -> UpdateApplicationVersionInput
fn clone(&self) -> UpdateApplicationVersionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<UpdateApplicationVersionInput> for UpdateApplicationVersionInput
impl PartialEq<UpdateApplicationVersionInput> for UpdateApplicationVersionInput
source§fn eq(&self, other: &UpdateApplicationVersionInput) -> bool
fn eq(&self, other: &UpdateApplicationVersionInput) -> bool
self
and other
values to be equal, and is used
by ==
.