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 for UpdateApplicationVersionInput
impl PartialEq 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 ==
.impl StructuralPartialEq for UpdateApplicationVersionInput
Auto Trait Implementations§
impl Freeze for UpdateApplicationVersionInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more