[−][src]Struct rusoto_lambda::FunctionConfiguration
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]
fn eq(&self, other: &FunctionConfiguration) -> bool[src]
fn ne(&self, other: &FunctionConfiguration) -> bool[src]
impl Default for FunctionConfiguration[src]
fn default() -> FunctionConfiguration[src]
impl Clone for FunctionConfiguration[src]
fn clone(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>, [src]
T: From<U>,
type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self