#[non_exhaustive]pub struct PutFunctionEventInvokeConfigInput { /* private fields */ }Implementations
sourceimpl PutFunctionEventInvokeConfigInput
impl PutFunctionEventInvokeConfigInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutFunctionEventInvokeConfig, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutFunctionEventInvokeConfig, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<PutFunctionEventInvokeConfig>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PutFunctionEventInvokeConfigInput.
sourceimpl PutFunctionEventInvokeConfigInput
impl PutFunctionEventInvokeConfigInput
sourcepub fn function_name(&self) -> Option<&str>
pub fn function_name(&self) -> Option<&str>
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.
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 an SQS queue.
-
Topic - The ARN of an SNS topic.
-
Event Bus - The ARN of an Amazon EventBridge event bus.
Trait Implementations
sourceimpl Clone for PutFunctionEventInvokeConfigInput
impl Clone for PutFunctionEventInvokeConfigInput
sourcefn clone(&self) -> PutFunctionEventInvokeConfigInput
fn clone(&self) -> PutFunctionEventInvokeConfigInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more