Struct aws_sdk_imagebuilder::types::ComponentSummary
source · #[non_exhaustive]pub struct ComponentSummary { /* private fields */ }
Expand description
A high-level summary of a component.
Implementations§
source§impl ComponentSummary
impl ComponentSummary
sourcepub fn supported_os_versions(&self) -> Option<&[String]>
pub fn supported_os_versions(&self) -> Option<&[String]>
The operating system (OS) version that the component supports. If the OS information is available, Image Builder performs a prefix match against the base image OS version during image recipe creation.
sourcepub fn state(&self) -> Option<&ComponentState>
pub fn state(&self) -> Option<&ComponentState>
Describes the current status of the component.
sourcepub fn type(&self) -> Option<&ComponentType>
pub fn type(&self) -> Option<&ComponentType>
The component type specifies whether Image Builder uses the component to build the image or only to test it.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the component.
sourcepub fn change_description(&self) -> Option<&str>
pub fn change_description(&self) -> Option<&str>
The change description for the current version of the component.
sourcepub fn date_created(&self) -> Option<&str>
pub fn date_created(&self) -> Option<&str>
The original creation date of the component.
The tags that apply to the component.
source§impl ComponentSummary
impl ComponentSummary
sourcepub fn builder() -> ComponentSummaryBuilder
pub fn builder() -> ComponentSummaryBuilder
Creates a new builder-style object to manufacture ComponentSummary
.
Trait Implementations§
source§impl Clone for ComponentSummary
impl Clone for ComponentSummary
source§fn clone(&self) -> ComponentSummary
fn clone(&self) -> ComponentSummary
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 ComponentSummary
impl Debug for ComponentSummary
source§impl PartialEq<ComponentSummary> for ComponentSummary
impl PartialEq<ComponentSummary> for ComponentSummary
source§fn eq(&self, other: &ComponentSummary) -> bool
fn eq(&self, other: &ComponentSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.