Struct aws_sdk_swf::input::SignalWorkflowExecutionInput
source · [−]#[non_exhaustive]pub struct SignalWorkflowExecutionInput {
pub domain: Option<String>,
pub workflow_id: Option<String>,
pub run_id: Option<String>,
pub signal_name: Option<String>,
pub input: 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.domain: Option<String>
The name of the domain containing the workflow execution to signal.
workflow_id: Option<String>
The workflowId of the workflow execution to signal.
run_id: Option<String>
The runId of the workflow execution to signal.
signal_name: Option<String>
The name of the signal. This name must be meaningful to the target workflow.
input: Option<String>
Data to attach to the WorkflowExecutionSignaled
event in the target workflow execution's history.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SignalWorkflowExecution, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SignalWorkflowExecution, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<SignalWorkflowExecution
>
Creates a new builder-style object to manufacture SignalWorkflowExecutionInput
The name of the domain containing the workflow execution to signal.
The workflowId of the workflow execution to signal.
The name of the signal. This name must be meaningful to the target workflow.
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 SignalWorkflowExecutionInput
impl Sync for SignalWorkflowExecutionInput
impl Unpin for SignalWorkflowExecutionInput
impl UnwindSafe for SignalWorkflowExecutionInput
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