Struct aws_sdk_swf::input::RespondActivityTaskFailedInput [−][src]
#[non_exhaustive]pub struct RespondActivityTaskFailedInput {
pub task_token: Option<String>,
pub reason: Option<String>,
pub details: Option<String>,
}
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.task_token: Option<String>
The taskToken
of the ActivityTask.
taskToken
is generated by the service and should be treated as an opaque value.
If the task is passed to another process, its taskToken
must also be passed.
This enables it to provide its progress and respond with results.
reason: Option<String>
Description of the error that may assist in diagnostics.
details: Option<String>
Detailed information about the failure.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RespondActivityTaskFailed, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RespondActivityTaskFailed, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<RespondActivityTaskFailed
>
Creates a new builder-style object to manufacture RespondActivityTaskFailedInput
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
impl Send for RespondActivityTaskFailedInput
impl Sync for RespondActivityTaskFailedInput
impl Unpin for RespondActivityTaskFailedInput
impl UnwindSafe for RespondActivityTaskFailedInput
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