[][src]Struct rusoto_securityhub::AwsLambdaLayerVersionDetails

pub struct AwsLambdaLayerVersionDetails {
    pub compatible_runtimes: Option<Vec<String>>,
    pub created_date: Option<String>,
    pub version: Option<i64>,
}

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

impl Clone for AwsLambdaLayerVersionDetails[src]

impl Debug for AwsLambdaLayerVersionDetails[src]

impl Default for AwsLambdaLayerVersionDetails[src]

impl<'de> Deserialize<'de> for AwsLambdaLayerVersionDetails[src]

impl PartialEq<AwsLambdaLayerVersionDetails> for AwsLambdaLayerVersionDetails[src]

impl Serialize for AwsLambdaLayerVersionDetails[src]

impl StructuralPartialEq for AwsLambdaLayerVersionDetails[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.