Struct aws_sdk_lambda::model::LayerVersionsListItem
source · #[non_exhaustive]pub struct LayerVersionsListItem { /* private fields */ }
Expand description
Details about a version of an Lambda layer.
Implementations§
source§impl LayerVersionsListItem
impl LayerVersionsListItem
sourcepub fn layer_version_arn(&self) -> Option<&str>
pub fn layer_version_arn(&self) -> Option<&str>
The ARN of the layer version.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the version.
sourcepub fn created_date(&self) -> Option<&str>
pub fn created_date(&self) -> Option<&str>
The date that the version was created, in ISO 8601 format. For example, 2018-11-27T15:10:45.123+0000
.
sourcepub fn compatible_runtimes(&self) -> Option<&[Runtime]>
pub fn compatible_runtimes(&self) -> Option<&[Runtime]>
The layer's compatible runtimes.
sourcepub fn license_info(&self) -> Option<&str>
pub fn license_info(&self) -> Option<&str>
The layer's open-source license.
sourcepub fn compatible_architectures(&self) -> Option<&[Architecture]>
pub fn compatible_architectures(&self) -> Option<&[Architecture]>
A list of compatible instruction set architectures.
source§impl LayerVersionsListItem
impl LayerVersionsListItem
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LayerVersionsListItem
.
Trait Implementations§
source§impl Clone for LayerVersionsListItem
impl Clone for LayerVersionsListItem
source§fn clone(&self) -> LayerVersionsListItem
fn clone(&self) -> LayerVersionsListItem
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 LayerVersionsListItem
impl Debug for LayerVersionsListItem
source§impl PartialEq<LayerVersionsListItem> for LayerVersionsListItem
impl PartialEq<LayerVersionsListItem> for LayerVersionsListItem
source§fn eq(&self, other: &LayerVersionsListItem) -> bool
fn eq(&self, other: &LayerVersionsListItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.