pub struct UpdateFunctionEventInvokeConfigRequest {
pub destination_config: Option<DestinationConfig>,
pub function_name: String,
pub maximum_event_age_in_seconds: Option<i64>,
pub maximum_retry_attempts: Option<i64>,
pub qualifier: Option<String>,
}
Fields§
§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 an SQS queue.
-
Topic - The ARN of an SNS topic.
-
Event Bus - The ARN of an Amazon EventBridge event bus.
function_name: String
The name 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.
maximum_event_age_in_seconds: Option<i64>
The maximum age of a request that Lambda sends to a function for processing.
maximum_retry_attempts: Option<i64>
The maximum number of times to retry when the function returns an error.
qualifier: Option<String>
A version number or alias name.
Trait Implementations§
Source§impl Clone for UpdateFunctionEventInvokeConfigRequest
impl Clone for UpdateFunctionEventInvokeConfigRequest
Source§fn clone(&self) -> UpdateFunctionEventInvokeConfigRequest
fn clone(&self) -> UpdateFunctionEventInvokeConfigRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for UpdateFunctionEventInvokeConfigRequest
impl Default for UpdateFunctionEventInvokeConfigRequest
Source§fn default() -> UpdateFunctionEventInvokeConfigRequest
fn default() -> UpdateFunctionEventInvokeConfigRequest
Source§impl PartialEq for UpdateFunctionEventInvokeConfigRequest
impl PartialEq for UpdateFunctionEventInvokeConfigRequest
Source§fn eq(&self, other: &UpdateFunctionEventInvokeConfigRequest) -> bool
fn eq(&self, other: &UpdateFunctionEventInvokeConfigRequest) -> bool
self
and other
values to be equal, and is used by ==
.