pub struct AwsLambdaLayerVersionDetails {
pub compatible_runtimes: Option<Vec<String>>,
pub created_date: Option<String>,
pub version: Option<i64>,
}
Expand description
Details about a Lambda layer version.
Fields§
§compatible_runtimes: Option<Vec<String>>
The layer's compatible runtimes. Maximum number of five items.
Valid values: nodejs10.x
| nodejs12.x
| java8
| java11
| python2.7
| python3.6
| python3.7
| python3.8
| dotnetcore1.0
| dotnetcore2.1
| go1.x
| ruby2.5
| provided
created_date: Option<String>
The date that the version was created, in ISO 8601 format. For example, 2018-11-27T15:10:45.123+0000.
version: Option<i64>
The version number.
Trait Implementations§
Source§impl Clone for AwsLambdaLayerVersionDetails
impl Clone for AwsLambdaLayerVersionDetails
Source§fn clone(&self) -> AwsLambdaLayerVersionDetails
fn clone(&self) -> AwsLambdaLayerVersionDetails
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 AwsLambdaLayerVersionDetails
impl Debug for AwsLambdaLayerVersionDetails
Source§impl Default for AwsLambdaLayerVersionDetails
impl Default for AwsLambdaLayerVersionDetails
Source§fn default() -> AwsLambdaLayerVersionDetails
fn default() -> AwsLambdaLayerVersionDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsLambdaLayerVersionDetails
impl<'de> Deserialize<'de> for AwsLambdaLayerVersionDetails
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 AwsLambdaLayerVersionDetails
impl PartialEq for AwsLambdaLayerVersionDetails
Source§fn eq(&self, other: &AwsLambdaLayerVersionDetails) -> bool
fn eq(&self, other: &AwsLambdaLayerVersionDetails) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AwsLambdaLayerVersionDetails
Auto Trait Implementations§
impl Freeze for AwsLambdaLayerVersionDetails
impl RefUnwindSafe for AwsLambdaLayerVersionDetails
impl Send for AwsLambdaLayerVersionDetails
impl Sync for AwsLambdaLayerVersionDetails
impl Unpin for AwsLambdaLayerVersionDetails
impl UnwindSafe for AwsLambdaLayerVersionDetails
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