pub struct UpdateApplicationVersionMessage {
pub application_name: String,
pub description: Option<String>,
pub version_label: String,
}
Expand description
Fields§
§application_name: String
The name of the application associated with this version.
If no application is found with this name, UpdateApplication
returns an InvalidParameterValue
error.
description: Option<String>
A new description for this version.
version_label: String
The name of the version to update.
If no application version is found with this label, UpdateApplication
returns an InvalidParameterValue
error.
Trait Implementations§
Source§impl Clone for UpdateApplicationVersionMessage
impl Clone for UpdateApplicationVersionMessage
Source§fn clone(&self) -> UpdateApplicationVersionMessage
fn clone(&self) -> UpdateApplicationVersionMessage
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 Default for UpdateApplicationVersionMessage
impl Default for UpdateApplicationVersionMessage
Source§fn default() -> UpdateApplicationVersionMessage
fn default() -> UpdateApplicationVersionMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateApplicationVersionMessage
impl PartialEq for UpdateApplicationVersionMessage
Source§fn eq(&self, other: &UpdateApplicationVersionMessage) -> bool
fn eq(&self, other: &UpdateApplicationVersionMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateApplicationVersionMessage
Auto Trait Implementations§
impl Freeze for UpdateApplicationVersionMessage
impl RefUnwindSafe for UpdateApplicationVersionMessage
impl Send for UpdateApplicationVersionMessage
impl Sync for UpdateApplicationVersionMessage
impl Unpin for UpdateApplicationVersionMessage
impl UnwindSafe for UpdateApplicationVersionMessage
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