Struct aws_sdk_swf::input::RespondActivityTaskCompletedInput [−][src]
#[non_exhaustive]pub struct RespondActivityTaskCompletedInput {
pub task_token: Option<String>,
pub result: 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.
result: Option<String>The result of the activity task. It is a free form string that is implementation specific.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RespondActivityTaskCompleted, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RespondActivityTaskCompleted, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<RespondActivityTaskCompleted>
Creates a new builder-style object to manufacture RespondActivityTaskCompletedInput
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 RespondActivityTaskCompletedInput
impl Sync for RespondActivityTaskCompletedInput
impl Unpin for RespondActivityTaskCompletedInput
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