pub struct ScheduleLambdaFunctionFailedEventAttributes {
pub cause: String,
pub decision_task_completed_event_id: i64,
pub id: String,
pub name: String,
}Expand description
Provides the details of the ScheduleLambdaFunctionFailed event. It isn't set for other event types.
Fields§
§cause: StringThe cause of the failure. To help diagnose issues, use this information to trace back the chain of events leading up to this event.
If cause is set to OPERATIONNOTPERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF Developer Guide.
decision_task_completed_event_id: i64The ID of the LambdaFunctionCompleted event corresponding to the decision that resulted in scheduling this Lambda task. To help diagnose issues, use this information to trace back the chain of events leading up to this event.
id: StringThe ID provided in the ScheduleLambdaFunction decision that failed.
name: StringThe name of the Lambda function.
Trait Implementations§
Source§impl Clone for ScheduleLambdaFunctionFailedEventAttributes
impl Clone for ScheduleLambdaFunctionFailedEventAttributes
Source§fn clone(&self) -> ScheduleLambdaFunctionFailedEventAttributes
fn clone(&self) -> ScheduleLambdaFunctionFailedEventAttributes
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for ScheduleLambdaFunctionFailedEventAttributes
impl Default for ScheduleLambdaFunctionFailedEventAttributes
Source§fn default() -> ScheduleLambdaFunctionFailedEventAttributes
fn default() -> ScheduleLambdaFunctionFailedEventAttributes
Source§impl<'de> Deserialize<'de> for ScheduleLambdaFunctionFailedEventAttributes
impl<'de> Deserialize<'de> for ScheduleLambdaFunctionFailedEventAttributes
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>,
Source§impl PartialEq for ScheduleLambdaFunctionFailedEventAttributes
impl PartialEq for ScheduleLambdaFunctionFailedEventAttributes
Source§fn eq(&self, other: &ScheduleLambdaFunctionFailedEventAttributes) -> bool
fn eq(&self, other: &ScheduleLambdaFunctionFailedEventAttributes) -> bool
self and other values to be equal, and is used by ==.