[][src]Struct rusoto_lambda::FunctionConfiguration

pub struct FunctionConfiguration {
    pub code_sha_256: Option<String>,
    pub code_size: Option<i64>,
    pub dead_letter_config: Option<DeadLetterConfig>,
    pub description: Option<String>,
    pub environment: Option<EnvironmentResponse>,
    pub function_arn: Option<String>,
    pub function_name: Option<String>,
    pub handler: Option<String>,
    pub kms_key_arn: Option<String>,
    pub last_modified: Option<String>,
    pub layers: Option<Vec<Layer>>,
    pub master_arn: Option<String>,
    pub memory_size: Option<i64>,
    pub revision_id: Option<String>,
    pub role: Option<String>,
    pub runtime: Option<String>,
    pub timeout: Option<i64>,
    pub tracing_config: Option<TracingConfigResponse>,
    pub version: Option<String>,
    pub vpc_config: Option<VpcConfigResponse>,
}

Details about a function's configuration.

Fields

code_sha_256: Option<String>

The SHA256 hash of the function's deployment package.

code_size: Option<i64>

The size of the function's deployment package, in bytes.

dead_letter_config: Option<DeadLetterConfig>

The function's dead letter queue.

description: Option<String>

The function's description.

environment: Option<EnvironmentResponse>

The function's environment variables.

function_arn: Option<String>

The function's Amazon Resource Name (ARN).

function_name: Option<String>

The name of the function.

handler: Option<String>

The function that Lambda calls to begin executing your function.

kms_key_arn: Option<String>

The KMS key that's used to encrypt the function's environment variables. This key is only returned if you've configured a customer-managed CMK.

last_modified: Option<String>

The date and time that the function was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

layers: Option<Vec<Layer>>

The function's layers.

master_arn: Option<String>

For Lambda@Edge functions, the ARN of the master function.

memory_size: Option<i64>

The memory that's allocated to the function.

revision_id: Option<String>

The latest updated revision of the function or alias.

role: Option<String>

The function's execution role.

runtime: Option<String>

The runtime environment for the Lambda function.

timeout: Option<i64>

The amount of time that Lambda allows a function to run before stopping it.

tracing_config: Option<TracingConfigResponse>

The function's AWS X-Ray tracing configuration.

version: Option<String>

The version of the Lambda function.

vpc_config: Option<VpcConfigResponse>

The function's networking configuration.

Trait Implementations

impl PartialEq<FunctionConfiguration> for FunctionConfiguration[src]

impl Default for FunctionConfiguration[src]

impl Clone for FunctionConfiguration[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for FunctionConfiguration[src]

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

Auto Trait Implementations

impl Send for FunctionConfiguration

impl Sync for FunctionConfiguration

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self