pub struct ComponentSummary {
pub arn: Option<String>,
pub change_description: 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 tags: Option<HashMap<String, String>>,
pub type_: Option<String>,
pub version: Option<String>,
}
Expand description
A high-level summary of a component.
Fields§
§arn: Option<String>
The Amazon Resource Name (ARN) of the component.
change_description: Option<String>
The change description 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.
The tags associated with the component.
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 version of the component.
Trait Implementations§
Source§impl Clone for ComponentSummary
impl Clone for ComponentSummary
Source§fn clone(&self) -> ComponentSummary
fn clone(&self) -> ComponentSummary
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 ComponentSummary
impl Debug for ComponentSummary
Source§impl Default for ComponentSummary
impl Default for ComponentSummary
Source§fn default() -> ComponentSummary
fn default() -> ComponentSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ComponentSummary
impl<'de> Deserialize<'de> for ComponentSummary
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 ComponentSummary
impl PartialEq for ComponentSummary
impl StructuralPartialEq for ComponentSummary
Auto Trait Implementations§
impl Freeze for ComponentSummary
impl RefUnwindSafe for ComponentSummary
impl Send for ComponentSummary
impl Sync for ComponentSummary
impl Unpin for ComponentSummary
impl UnwindSafe for ComponentSummary
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