Struct aws_sdk_elasticbeanstalk::operation::update_application_version::UpdateApplicationVersionInput
source · #[non_exhaustive]pub struct UpdateApplicationVersionInput { /* private fields */ }
Expand description
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
.
source§impl UpdateApplicationVersionInput
impl UpdateApplicationVersionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateApplicationVersion, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateApplicationVersion, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateApplicationVersion
>
Trait Implementations§
source§impl Clone for UpdateApplicationVersionInput
impl Clone for UpdateApplicationVersionInput
source§fn clone(&self) -> UpdateApplicationVersionInput
fn clone(&self) -> UpdateApplicationVersionInput
Returns a copy 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 PartialEq<UpdateApplicationVersionInput> for UpdateApplicationVersionInput
impl PartialEq<UpdateApplicationVersionInput> for UpdateApplicationVersionInput
source§fn eq(&self, other: &UpdateApplicationVersionInput) -> bool
fn eq(&self, other: &UpdateApplicationVersionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateApplicationVersionInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateApplicationVersionInput
impl Send for UpdateApplicationVersionInput
impl Sync for UpdateApplicationVersionInput
impl Unpin for UpdateApplicationVersionInput
impl UnwindSafe for UpdateApplicationVersionInput
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