pub struct ComponentVersion {
pub arn: Option<String>,
pub date_created: Option<String>,
pub description: Option<String>,
pub name: Option<String>,
pub owner: Option<String>,
pub platform: Option<String>,
pub supported_os_versions: Option<Vec<String>>,
pub type_: Option<String>,
pub version: Option<String>,
}
Expand description
A high-level overview of a component semantic version.
Fields§
§arn: Option<String>
The Amazon Resource Name (ARN) of the component.
date_created: Option<String>
The date that the component was created.
description: Option<String>
The description of the component.
name: Option<String>
The name of the component.
owner: Option<String>
The owner of the component.
platform: Option<String>
The platform of the component.
supported_os_versions: Option<Vec<String>>
The operating system (OS) version supported by the component. If the OS information is available, a prefix match is performed against the parent image OS version during image recipe creation.
type_: Option<String>
The type of the component denotes whether the component is used to build the image or only to test it.
version: Option<String>
The semantic version of the component.
Trait Implementations§
Source§impl Clone for ComponentVersion
impl Clone for ComponentVersion
Source§fn clone(&self) -> ComponentVersion
fn clone(&self) -> ComponentVersion
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 ComponentVersion
impl Debug for ComponentVersion
Source§impl Default for ComponentVersion
impl Default for ComponentVersion
Source§fn default() -> ComponentVersion
fn default() -> ComponentVersion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ComponentVersion
impl<'de> Deserialize<'de> for ComponentVersion
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 ComponentVersion
impl PartialEq for ComponentVersion
impl StructuralPartialEq for ComponentVersion
Auto Trait Implementations§
impl Freeze for ComponentVersion
impl RefUnwindSafe for ComponentVersion
impl Send for ComponentVersion
impl Sync for ComponentVersion
impl Unpin for ComponentVersion
impl UnwindSafe for ComponentVersion
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