#[non_exhaustive]pub struct ScheduleLambdaFunctionFailedEventAttributes {
pub id: String,
pub name: String,
pub cause: ScheduleLambdaFunctionFailedCause,
pub decision_task_completed_event_id: i64,
}
Expand description
Provides the details of the ScheduleLambdaFunctionFailed
event. It isn't set for other event types.
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.id: String
The ID provided in the ScheduleLambdaFunction
decision that failed.
name: String
The name of the Lambda function.
cause: ScheduleLambdaFunctionFailedCause
The 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 OPERATION_NOT_PERMITTED
, 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: i64
The 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.
Implementations§
source§impl ScheduleLambdaFunctionFailedEventAttributes
impl ScheduleLambdaFunctionFailedEventAttributes
sourcepub fn cause(&self) -> &ScheduleLambdaFunctionFailedCause
pub fn cause(&self) -> &ScheduleLambdaFunctionFailedCause
The 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 OPERATION_NOT_PERMITTED
, 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.
sourcepub fn decision_task_completed_event_id(&self) -> i64
pub fn decision_task_completed_event_id(&self) -> i64
The 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.
source§impl ScheduleLambdaFunctionFailedEventAttributes
impl ScheduleLambdaFunctionFailedEventAttributes
sourcepub fn builder() -> ScheduleLambdaFunctionFailedEventAttributesBuilder
pub fn builder() -> ScheduleLambdaFunctionFailedEventAttributesBuilder
Creates a new builder-style object to manufacture ScheduleLambdaFunctionFailedEventAttributes
.
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 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 ==
.