pub struct ImageRecipeSummary {
pub arn: Option<String>,
pub date_created: Option<String>,
pub name: Option<String>,
pub owner: Option<String>,
pub parent_image: Option<String>,
pub platform: Option<String>,
pub tags: Option<HashMap<String, String>>,
}
Expand description
A summary of an image recipe.
Fields§
§arn: Option<String>
The Amazon Resource Name (ARN) of the image recipe.
date_created: Option<String>
The date on which this image recipe was created.
name: Option<String>
The name of the image recipe.
owner: Option<String>
The owner of the image recipe.
parent_image: Option<String>
The parent image of the image recipe.
platform: Option<String>
The platform of the image recipe.
The tags of the image recipe.
Trait Implementations§
Source§impl Clone for ImageRecipeSummary
impl Clone for ImageRecipeSummary
Source§fn clone(&self) -> ImageRecipeSummary
fn clone(&self) -> ImageRecipeSummary
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 ImageRecipeSummary
impl Debug for ImageRecipeSummary
Source§impl Default for ImageRecipeSummary
impl Default for ImageRecipeSummary
Source§fn default() -> ImageRecipeSummary
fn default() -> ImageRecipeSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImageRecipeSummary
impl<'de> Deserialize<'de> for ImageRecipeSummary
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 ImageRecipeSummary
impl PartialEq for ImageRecipeSummary
impl StructuralPartialEq for ImageRecipeSummary
Auto Trait Implementations§
impl Freeze for ImageRecipeSummary
impl RefUnwindSafe for ImageRecipeSummary
impl Send for ImageRecipeSummary
impl Sync for ImageRecipeSummary
impl Unpin for ImageRecipeSummary
impl UnwindSafe for ImageRecipeSummary
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