Struct aws_sdk_lambda::operation::update_function_event_invoke_config::UpdateFunctionEventInvokeConfigInput
source · #[non_exhaustive]pub struct UpdateFunctionEventInvokeConfigInput {
pub function_name: Option<String>,
pub qualifier: Option<String>,
pub maximum_retry_attempts: Option<i32>,
pub maximum_event_age_in_seconds: Option<i32>,
pub destination_config: Option<DestinationConfig>,
}
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.function_name: Option<String>
The name or ARN of the Lambda function, version, or alias.
Name formats
-
Function name -
my-function
(name-only),my-function:v1
(with alias). -
Function ARN -
arn:aws:lambda:us-west-2:123456789012:function:my-function
. -
Partial ARN -
123456789012:function:my-function
.
You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
qualifier: Option<String>
A version number or alias name.
maximum_retry_attempts: Option<i32>
The maximum number of times to retry when the function returns an error.
maximum_event_age_in_seconds: Option<i32>
The maximum age of a request that Lambda sends to a function for processing.
destination_config: Option<DestinationConfig>
A destination for events after they have been sent to a function for processing.
Destinations
-
Function - The Amazon Resource Name (ARN) of a Lambda function.
-
Queue - The ARN of a standard SQS queue.
-
Topic - The ARN of a standard SNS topic.
-
Event Bus - The ARN of an Amazon EventBridge event bus.
Implementations§
source§impl UpdateFunctionEventInvokeConfigInput
impl UpdateFunctionEventInvokeConfigInput
sourcepub fn function_name(&self) -> Option<&str>
pub fn function_name(&self) -> Option<&str>
The name or ARN of the Lambda function, version, or alias.
Name formats
-
Function name -
my-function
(name-only),my-function:v1
(with alias). -
Function ARN -
arn:aws:lambda:us-west-2:123456789012:function:my-function
. -
Partial ARN -
123456789012:function:my-function
.
You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
sourcepub fn maximum_retry_attempts(&self) -> Option<i32>
pub fn maximum_retry_attempts(&self) -> Option<i32>
The maximum number of times to retry when the function returns an error.
sourcepub fn maximum_event_age_in_seconds(&self) -> Option<i32>
pub fn maximum_event_age_in_seconds(&self) -> Option<i32>
The maximum age of a request that Lambda sends to a function for processing.
sourcepub fn destination_config(&self) -> Option<&DestinationConfig>
pub fn destination_config(&self) -> Option<&DestinationConfig>
A destination for events after they have been sent to a function for processing.
Destinations
-
Function - The Amazon Resource Name (ARN) of a Lambda function.
-
Queue - The ARN of a standard SQS queue.
-
Topic - The ARN of a standard SNS topic.
-
Event Bus - The ARN of an Amazon EventBridge event bus.
source§impl UpdateFunctionEventInvokeConfigInput
impl UpdateFunctionEventInvokeConfigInput
sourcepub fn builder() -> UpdateFunctionEventInvokeConfigInputBuilder
pub fn builder() -> UpdateFunctionEventInvokeConfigInputBuilder
Creates a new builder-style object to manufacture UpdateFunctionEventInvokeConfigInput
.
Trait Implementations§
source§impl Clone for UpdateFunctionEventInvokeConfigInput
impl Clone for UpdateFunctionEventInvokeConfigInput
source§fn clone(&self) -> UpdateFunctionEventInvokeConfigInput
fn clone(&self) -> UpdateFunctionEventInvokeConfigInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateFunctionEventInvokeConfigInput
impl PartialEq for UpdateFunctionEventInvokeConfigInput
source§fn eq(&self, other: &UpdateFunctionEventInvokeConfigInput) -> bool
fn eq(&self, other: &UpdateFunctionEventInvokeConfigInput) -> bool
self
and other
values to be equal, and is used
by ==
.