Struct rusoto_s3::LambdaFunctionConfiguration[][src]

pub struct LambdaFunctionConfiguration {
    pub events: Vec<String>,
    pub filter: Option<NotificationConfigurationFilter>,
    pub id: Option<String>,
    pub lambda_function_arn: String,
}

Container for specifying the AWS Lambda notification configuration.

Fields

Lambda cloud function ARN that Amazon S3 can invoke when it detects events of the specified type.

Trait Implementations

impl Default for LambdaFunctionConfiguration
[src]

Returns the "default value" for a type. Read more

impl Debug for LambdaFunctionConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for LambdaFunctionConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LambdaFunctionConfiguration
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations