Struct aws_sdk_lambda::operation::get_function_event_invoke_config::GetFunctionEventInvokeConfigOutput
source · #[non_exhaustive]pub struct GetFunctionEventInvokeConfigOutput {
pub last_modified: Option<DateTime>,
pub function_arn: Option<String>,
pub maximum_retry_attempts: Option<i32>,
pub maximum_event_age_in_seconds: Option<i32>,
pub destination_config: Option<DestinationConfig>,
/* private fields */
}
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.last_modified: Option<DateTime>
The date and time that the configuration was last updated.
function_arn: Option<String>
The Amazon Resource Name (ARN) of the function.
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 GetFunctionEventInvokeConfigOutput
impl GetFunctionEventInvokeConfigOutput
sourcepub fn last_modified(&self) -> Option<&DateTime>
pub fn last_modified(&self) -> Option<&DateTime>
The date and time that the configuration was last updated.
sourcepub fn function_arn(&self) -> Option<&str>
pub fn function_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the function.
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 GetFunctionEventInvokeConfigOutput
impl GetFunctionEventInvokeConfigOutput
sourcepub fn builder() -> GetFunctionEventInvokeConfigOutputBuilder
pub fn builder() -> GetFunctionEventInvokeConfigOutputBuilder
Creates a new builder-style object to manufacture GetFunctionEventInvokeConfigOutput
.
Trait Implementations§
source§impl Clone for GetFunctionEventInvokeConfigOutput
impl Clone for GetFunctionEventInvokeConfigOutput
source§fn clone(&self) -> GetFunctionEventInvokeConfigOutput
fn clone(&self) -> GetFunctionEventInvokeConfigOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetFunctionEventInvokeConfigOutput
impl PartialEq for GetFunctionEventInvokeConfigOutput
source§fn eq(&self, other: &GetFunctionEventInvokeConfigOutput) -> bool
fn eq(&self, other: &GetFunctionEventInvokeConfigOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetFunctionEventInvokeConfigOutput
impl RequestId for GetFunctionEventInvokeConfigOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetFunctionEventInvokeConfigOutput
Auto Trait Implementations§
impl Freeze for GetFunctionEventInvokeConfigOutput
impl RefUnwindSafe for GetFunctionEventInvokeConfigOutput
impl Send for GetFunctionEventInvokeConfigOutput
impl Sync for GetFunctionEventInvokeConfigOutput
impl Unpin for GetFunctionEventInvokeConfigOutput
impl UnwindSafe for GetFunctionEventInvokeConfigOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more