pub struct LambdaFunctionScheduledEventDetails {
pub input: Option<String>,
pub resource: String,
pub timeout_in_seconds: Option<i64>,
}
Expand description
Contains details about a lambda function scheduled during an execution.
Fields§
§input: Option<String>
The JSON data input to the lambda function.
resource: String
The Amazon Resource Name (ARN) of the scheduled lambda function.
timeout_in_seconds: Option<i64>
The maximum allowed duration of the lambda function.
Trait Implementations§
Source§impl Clone for LambdaFunctionScheduledEventDetails
impl Clone for LambdaFunctionScheduledEventDetails
Source§fn clone(&self) -> LambdaFunctionScheduledEventDetails
fn clone(&self) -> LambdaFunctionScheduledEventDetails
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for LambdaFunctionScheduledEventDetails
impl Default for LambdaFunctionScheduledEventDetails
Source§fn default() -> LambdaFunctionScheduledEventDetails
fn default() -> LambdaFunctionScheduledEventDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LambdaFunctionScheduledEventDetails
impl<'de> Deserialize<'de> for LambdaFunctionScheduledEventDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LambdaFunctionScheduledEventDetails
impl PartialEq for LambdaFunctionScheduledEventDetails
Source§fn eq(&self, other: &LambdaFunctionScheduledEventDetails) -> bool
fn eq(&self, other: &LambdaFunctionScheduledEventDetails) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for LambdaFunctionScheduledEventDetails
Auto Trait Implementations§
impl Freeze for LambdaFunctionScheduledEventDetails
impl RefUnwindSafe for LambdaFunctionScheduledEventDetails
impl Send for LambdaFunctionScheduledEventDetails
impl Sync for LambdaFunctionScheduledEventDetails
impl Unpin for LambdaFunctionScheduledEventDetails
impl UnwindSafe for LambdaFunctionScheduledEventDetails
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
Mutably borrows from an owned value. Read more