Struct aws_sdk_s3::types::LambdaFunctionConfiguration
source · #[non_exhaustive]pub struct LambdaFunctionConfiguration {
pub id: Option<String>,
pub lambda_function_arn: Option<String>,
pub events: Option<Vec<Event>>,
pub filter: Option<NotificationConfigurationFilter>,
}
Expand description
A container for specifying the configuration for Lambda notifications.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Option<String>
An optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.
lambda_function_arn: Option<String>
The Amazon Resource Name (ARN) of the Lambda function that Amazon S3 invokes when the specified event type occurs.
events: Option<Vec<Event>>
The Amazon S3 bucket event for which to invoke the Lambda function. For more information, see Supported Event Types in the Amazon S3 User Guide.
filter: Option<NotificationConfigurationFilter>
Specifies object key name filtering rules. For information about key name filtering, see Configuring event notifications using object key name filtering in the Amazon S3 User Guide.
Implementations§
source§impl LambdaFunctionConfiguration
impl LambdaFunctionConfiguration
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
An optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.
sourcepub fn lambda_function_arn(&self) -> Option<&str>
pub fn lambda_function_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Lambda function that Amazon S3 invokes when the specified event type occurs.
sourcepub fn events(&self) -> Option<&[Event]>
pub fn events(&self) -> Option<&[Event]>
The Amazon S3 bucket event for which to invoke the Lambda function. For more information, see Supported Event Types in the Amazon S3 User Guide.
sourcepub fn filter(&self) -> Option<&NotificationConfigurationFilter>
pub fn filter(&self) -> Option<&NotificationConfigurationFilter>
Specifies object key name filtering rules. For information about key name filtering, see Configuring event notifications using object key name filtering in the Amazon S3 User Guide.
source§impl LambdaFunctionConfiguration
impl LambdaFunctionConfiguration
sourcepub fn builder() -> LambdaFunctionConfigurationBuilder
pub fn builder() -> LambdaFunctionConfigurationBuilder
Creates a new builder-style object to manufacture LambdaFunctionConfiguration
.
Trait Implementations§
source§impl Clone for LambdaFunctionConfiguration
impl Clone for LambdaFunctionConfiguration
source§fn clone(&self) -> LambdaFunctionConfiguration
fn clone(&self) -> LambdaFunctionConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LambdaFunctionConfiguration
impl Debug for LambdaFunctionConfiguration
source§impl PartialEq for LambdaFunctionConfiguration
impl PartialEq for LambdaFunctionConfiguration
source§fn eq(&self, other: &LambdaFunctionConfiguration) -> bool
fn eq(&self, other: &LambdaFunctionConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.