#[non_exhaustive]pub struct UpdateApplicationVersionInput { /* private fields */ }
Expand description
Implementations§
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
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateApplicationVersionInput
.
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.
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 ==
.