pub struct ImageVersion {
pub arn: Option<String>,
pub date_created: Option<String>,
pub name: Option<String>,
pub os_version: Option<String>,
pub owner: Option<String>,
pub platform: Option<String>,
pub version: Option<String>,
}
Expand description
An image semantic version.
Fields§
§arn: Option<String>
The Amazon Resource Name (ARN) of the image semantic version.
date_created: Option<String>
The date at which this image semantic version was created.
name: Option<String>
The name of the image semantic version.
os_version: Option<String>
The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.
owner: Option<String>
The owner of the image semantic version.
platform: Option<String>
The platform of the image semantic version.
version: Option<String>
The semantic version of the image semantic version.
Trait Implementations§
Source§impl Clone for ImageVersion
impl Clone for ImageVersion
Source§fn clone(&self) -> ImageVersion
fn clone(&self) -> ImageVersion
Returns a duplicate 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 Debug for ImageVersion
impl Debug for ImageVersion
Source§impl Default for ImageVersion
impl Default for ImageVersion
Source§fn default() -> ImageVersion
fn default() -> ImageVersion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImageVersion
impl<'de> Deserialize<'de> for ImageVersion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ImageVersion
impl PartialEq for ImageVersion
impl StructuralPartialEq for ImageVersion
Auto Trait Implementations§
impl Freeze for ImageVersion
impl RefUnwindSafe for ImageVersion
impl Send for ImageVersion
impl Sync for ImageVersion
impl Unpin for ImageVersion
impl UnwindSafe for ImageVersion
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