pub struct ScheduleLambdaFunctionDecisionAttributes {
pub control: Option<String>,
pub id: String,
pub input: Option<String>,
pub name: 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§
§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.
id: String
A string that identifies the Lambda function execution in the event history.
input: Option<String>
The optional input data to be supplied to the Lambda function.
name: String
The name, or ARN, of the Lambda function to schedule.
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.
Trait Implementations§
Source§impl Clone for ScheduleLambdaFunctionDecisionAttributes
impl Clone for ScheduleLambdaFunctionDecisionAttributes
Source§fn clone(&self) -> ScheduleLambdaFunctionDecisionAttributes
fn clone(&self) -> ScheduleLambdaFunctionDecisionAttributes
Returns a duplicate 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 ScheduleLambdaFunctionDecisionAttributes
impl Default for ScheduleLambdaFunctionDecisionAttributes
Source§fn default() -> ScheduleLambdaFunctionDecisionAttributes
fn default() -> ScheduleLambdaFunctionDecisionAttributes
Returns the “default value” for a type. Read more
Source§impl PartialEq for ScheduleLambdaFunctionDecisionAttributes
impl PartialEq for ScheduleLambdaFunctionDecisionAttributes
Source§fn eq(&self, other: &ScheduleLambdaFunctionDecisionAttributes) -> bool
fn eq(&self, other: &ScheduleLambdaFunctionDecisionAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ScheduleLambdaFunctionDecisionAttributes
Auto Trait Implementations§
impl Freeze for ScheduleLambdaFunctionDecisionAttributes
impl RefUnwindSafe for ScheduleLambdaFunctionDecisionAttributes
impl Send for ScheduleLambdaFunctionDecisionAttributes
impl Sync for ScheduleLambdaFunctionDecisionAttributes
impl Unpin for ScheduleLambdaFunctionDecisionAttributes
impl UnwindSafe for ScheduleLambdaFunctionDecisionAttributes
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