#[non_exhaustive]pub struct ScheduleLambdaFunctionDecisionAttributes { /* private fields */ }
Expand description
Decision attributes specified in scheduleLambdaFunctionDecisionAttributes
within the list of decisions decisions
passed to RespondDecisionTaskCompleted
.
Implementations
sourceimpl ScheduleLambdaFunctionDecisionAttributes
impl ScheduleLambdaFunctionDecisionAttributes
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
A string that identifies the Lambda function execution in the event history.
sourcepub fn control(&self) -> Option<&str>
pub fn control(&self) -> Option<&str>
The data attached to the event that the decider can use in subsequent workflow tasks. This data isn't sent to the Lambda task.
sourcepub fn input(&self) -> Option<&str>
pub fn input(&self) -> Option<&str>
The optional input data to be supplied to the Lambda function.
sourcepub fn start_to_close_timeout(&self) -> Option<&str>
pub fn start_to_close_timeout(&self) -> Option<&str>
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.
sourceimpl ScheduleLambdaFunctionDecisionAttributes
impl ScheduleLambdaFunctionDecisionAttributes
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ScheduleLambdaFunctionDecisionAttributes
.
Trait Implementations
sourceimpl Clone for ScheduleLambdaFunctionDecisionAttributes
impl Clone for ScheduleLambdaFunctionDecisionAttributes
sourcefn clone(&self) -> ScheduleLambdaFunctionDecisionAttributes
fn clone(&self) -> ScheduleLambdaFunctionDecisionAttributes
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<ScheduleLambdaFunctionDecisionAttributes> for ScheduleLambdaFunctionDecisionAttributes
impl PartialEq<ScheduleLambdaFunctionDecisionAttributes> for ScheduleLambdaFunctionDecisionAttributes
sourcefn eq(&self, other: &ScheduleLambdaFunctionDecisionAttributes) -> bool
fn eq(&self, other: &ScheduleLambdaFunctionDecisionAttributes) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ScheduleLambdaFunctionDecisionAttributes) -> bool
fn ne(&self, other: &ScheduleLambdaFunctionDecisionAttributes) -> bool
This method tests for !=
.
impl StructuralPartialEq for ScheduleLambdaFunctionDecisionAttributes
Auto Trait Implementations
impl RefUnwindSafe for ScheduleLambdaFunctionDecisionAttributes
impl Send for ScheduleLambdaFunctionDecisionAttributes
impl Sync for ScheduleLambdaFunctionDecisionAttributes
impl Unpin for ScheduleLambdaFunctionDecisionAttributes
impl UnwindSafe for ScheduleLambdaFunctionDecisionAttributes
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more