#[non_exhaustive]pub struct ContainerRecipeSummary {
pub arn: Option<String>,
pub container_type: Option<ContainerType>,
pub name: Option<String>,
pub platform: Option<Platform>,
pub owner: Option<String>,
pub parent_image: Option<String>,
pub date_created: Option<String>,
pub tags: Option<HashMap<String, String>>,
}
Expand description
A summary of a container recipe
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.arn: Option<String>
The Amazon Resource Name (ARN) of the container recipe.
container_type: Option<ContainerType>
Specifies the type of container, such as "Docker".
name: Option<String>
The name of the container recipe.
platform: Option<Platform>
The system platform for the container, such as Windows or Linux.
owner: Option<String>
The owner of the container recipe.
parent_image: Option<String>
The base image for the container recipe.
date_created: Option<String>
The date when this container recipe was created.
Tags that are attached to the container recipe.
Implementations§
source§impl ContainerRecipeSummary
impl ContainerRecipeSummary
sourcepub fn container_type(&self) -> Option<&ContainerType>
pub fn container_type(&self) -> Option<&ContainerType>
Specifies the type of container, such as "Docker".
sourcepub fn platform(&self) -> Option<&Platform>
pub fn platform(&self) -> Option<&Platform>
The system platform for the container, such as Windows or Linux.
sourcepub fn parent_image(&self) -> Option<&str>
pub fn parent_image(&self) -> Option<&str>
The base image for the container recipe.
sourcepub fn date_created(&self) -> Option<&str>
pub fn date_created(&self) -> Option<&str>
The date when this container recipe was created.
Tags that are attached to the container recipe.
source§impl ContainerRecipeSummary
impl ContainerRecipeSummary
sourcepub fn builder() -> ContainerRecipeSummaryBuilder
pub fn builder() -> ContainerRecipeSummaryBuilder
Creates a new builder-style object to manufacture ContainerRecipeSummary
.
Trait Implementations§
source§impl Clone for ContainerRecipeSummary
impl Clone for ContainerRecipeSummary
source§fn clone(&self) -> ContainerRecipeSummary
fn clone(&self) -> ContainerRecipeSummary
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 Debug for ContainerRecipeSummary
impl Debug for ContainerRecipeSummary
source§impl PartialEq for ContainerRecipeSummary
impl PartialEq for ContainerRecipeSummary
source§fn eq(&self, other: &ContainerRecipeSummary) -> bool
fn eq(&self, other: &ContainerRecipeSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ContainerRecipeSummary
Auto Trait Implementations§
impl RefUnwindSafe for ContainerRecipeSummary
impl Send for ContainerRecipeSummary
impl Sync for ContainerRecipeSummary
impl Unpin for ContainerRecipeSummary
impl UnwindSafe for ContainerRecipeSummary
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.