pub struct LayerVersionsListItem {
pub compatible_runtimes: Option<Vec<String>>,
pub created_date: Option<String>,
pub description: Option<String>,
pub layer_version_arn: Option<String>,
pub license_info: Option<String>,
pub version: Option<i64>,
}
Expand description
Details about a version of an AWS Lambda layer.
Fields§
§compatible_runtimes: Option<Vec<String>>
The layer's compatible runtimes.
created_date: Option<String>
The date that the version was created, in ISO 8601 format. For example, 2018-11-27T15:10:45.123+0000
.
description: Option<String>
The description of the version.
layer_version_arn: Option<String>
The ARN of the layer version.
license_info: Option<String>
The layer's open-source license.
version: Option<i64>
The version number.
Trait Implementations§
Source§impl Clone for LayerVersionsListItem
impl Clone for LayerVersionsListItem
Source§fn clone(&self) -> LayerVersionsListItem
fn clone(&self) -> LayerVersionsListItem
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 LayerVersionsListItem
impl Debug for LayerVersionsListItem
Source§impl Default for LayerVersionsListItem
impl Default for LayerVersionsListItem
Source§fn default() -> LayerVersionsListItem
fn default() -> LayerVersionsListItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LayerVersionsListItem
impl<'de> Deserialize<'de> for LayerVersionsListItem
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 LayerVersionsListItem
impl PartialEq for LayerVersionsListItem
impl StructuralPartialEq for LayerVersionsListItem
Auto Trait Implementations§
impl Freeze for LayerVersionsListItem
impl RefUnwindSafe for LayerVersionsListItem
impl Send for LayerVersionsListItem
impl Sync for LayerVersionsListItem
impl Unpin for LayerVersionsListItem
impl UnwindSafe for LayerVersionsListItem
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