[][src]Struct rusoto_securityhub::AwsLambdaFunctionEnvironment

pub struct AwsLambdaFunctionEnvironment {
    pub error: Option<AwsLambdaFunctionEnvironmentError>,
    pub variables: Option<HashMap<String, String>>,
}

A function's environment variable settings.

Fields

error: Option<AwsLambdaFunctionEnvironmentError>

An AwsLambdaFunctionEnvironmentError object.

variables: Option<HashMap<String, String>>

Environment variable key-value pairs.

Trait Implementations

impl Clone for AwsLambdaFunctionEnvironment[src]

impl Debug for AwsLambdaFunctionEnvironment[src]

impl Default for AwsLambdaFunctionEnvironment[src]

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

impl PartialEq<AwsLambdaFunctionEnvironment> for AwsLambdaFunctionEnvironment[src]

impl Serialize for AwsLambdaFunctionEnvironment[src]

impl StructuralPartialEq for AwsLambdaFunctionEnvironment[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.