Struct aws_sdk_s3::model::LambdaFunctionConfiguration
source · [−]#[non_exhaustive]pub struct LambdaFunctionConfiguration { /* private fields */ }
Expand description
A container for specifying the configuration for Lambda notifications.
Implementations
sourceimpl 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 in the Amazon S3 User Guide.
sourceimpl LambdaFunctionConfiguration
impl LambdaFunctionConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LambdaFunctionConfiguration
.
Trait Implementations
sourceimpl Clone for LambdaFunctionConfiguration
impl Clone for LambdaFunctionConfiguration
sourcefn clone(&self) -> LambdaFunctionConfiguration
fn clone(&self) -> LambdaFunctionConfiguration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for LambdaFunctionConfiguration
impl Debug for LambdaFunctionConfiguration
sourceimpl PartialEq<LambdaFunctionConfiguration> for LambdaFunctionConfiguration
impl PartialEq<LambdaFunctionConfiguration> for LambdaFunctionConfiguration
sourcefn eq(&self, other: &LambdaFunctionConfiguration) -> bool
fn eq(&self, other: &LambdaFunctionConfiguration) -> bool
impl StructuralPartialEq for LambdaFunctionConfiguration
Auto Trait Implementations
impl RefUnwindSafe for LambdaFunctionConfiguration
impl Send for LambdaFunctionConfiguration
impl Sync for LambdaFunctionConfiguration
impl Unpin for LambdaFunctionConfiguration
impl UnwindSafe for LambdaFunctionConfiguration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more