[][src]Struct rusoto_greengrass::FunctionConfiguration

pub struct FunctionConfiguration {
    pub encoding_type: Option<String>,
    pub environment: Option<FunctionConfigurationEnvironment>,
    pub exec_args: Option<String>,
    pub executable: Option<String>,
    pub memory_size: Option<i64>,
    pub pinned: Option<bool>,
    pub timeout: Option<i64>,
}

The configuration of the Lambda function.

Fields

encoding_type: Option<String>

The expected encoding type of the input payload for the function. The default is ''json''.

environment: Option<FunctionConfigurationEnvironment>

The environment configuration of the function.

exec_args: Option<String>

The execution arguments.

executable: Option<String>

The name of the function executable.

memory_size: Option<i64>

The memory size, in KB, which the function requires. This setting is not applicable and should be cleared when you run the Lambda function without containerization.

pinned: Option<bool>

True if the function is pinned. Pinned means the function is long-lived and starts when the core starts.

timeout: Option<i64>

The allowed function execution time, after which Lambda should terminate the function. This timeout still applies to pinned Lambda functions for each request.

Trait Implementations

impl Clone for FunctionConfiguration[src]

impl Debug for FunctionConfiguration[src]

impl Default for FunctionConfiguration[src]

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

impl PartialEq<FunctionConfiguration> for FunctionConfiguration[src]

impl Serialize for FunctionConfiguration[src]

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