pub struct Builder { /* private fields */ }
Expand description
A builder for DescribeWorkflowExecutionInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn domain(self, input: impl Into<String>) -> Self
pub fn domain(self, input: impl Into<String>) -> Self
The name of the domain containing the workflow execution.
sourcepub fn set_domain(self, input: Option<String>) -> Self
pub fn set_domain(self, input: Option<String>) -> Self
The name of the domain containing the workflow execution.
sourcepub fn execution(self, input: WorkflowExecution) -> Self
pub fn execution(self, input: WorkflowExecution) -> Self
The workflow execution to describe.
sourcepub fn set_execution(self, input: Option<WorkflowExecution>) -> Self
pub fn set_execution(self, input: Option<WorkflowExecution>) -> Self
The workflow execution to describe.
sourcepub fn build(self) -> Result<DescribeWorkflowExecutionInput, BuildError>
pub fn build(self) -> Result<DescribeWorkflowExecutionInput, BuildError>
Consumes the builder and constructs a DescribeWorkflowExecutionInput
.