Struct aws_sdk_swf::model::ScheduleLambdaFunctionDecisionAttributes [−][src]
#[non_exhaustive]pub struct ScheduleLambdaFunctionDecisionAttributes {
pub id: Option<String>,
pub name: Option<String>,
pub control: Option<String>,
pub input: Option<String>,
pub start_to_close_timeout: Option<String>,
}
Expand description
Decision attributes specified in scheduleLambdaFunctionDecisionAttributes
within the list of
decisions decisions
passed to RespondDecisionTaskCompleted.
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: Option<String>
A string that identifies the Lambda function execution in the event history.
name: Option<String>
The name, or ARN, of the Lambda function to schedule.
control: Option<String>
The data attached to the event that the decider can use in subsequent workflow tasks. This data isn't sent to the Lambda task.
input: Option<String>
The optional input data to be supplied to the Lambda function.
start_to_close_timeout: Option<String>
The timeout value, in seconds, after which the Lambda function is considered to be failed once it has started. This can be any integer from 1-300 (1s-5m). If no value is supplied, than a default value of 300s is assumed.
Implementations
Creates a new builder-style object to manufacture ScheduleLambdaFunctionDecisionAttributes
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more