aws_sdk_entityresolution/client/delete_matching_workflow.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeleteMatchingWorkflow`](crate::operation::delete_matching_workflow::builders::DeleteMatchingWorkflowFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`workflow_name(impl Into<String>)`](crate::operation::delete_matching_workflow::builders::DeleteMatchingWorkflowFluentBuilder::workflow_name) / [`set_workflow_name(Option<String>)`](crate::operation::delete_matching_workflow::builders::DeleteMatchingWorkflowFluentBuilder::set_workflow_name):<br>required: **true**<br><p>The name of the workflow to be retrieved.</p><br>
7 /// - On success, responds with [`DeleteMatchingWorkflowOutput`](crate::operation::delete_matching_workflow::DeleteMatchingWorkflowOutput) with field(s):
8 /// - [`message(String)`](crate::operation::delete_matching_workflow::DeleteMatchingWorkflowOutput::message): <p>A successful operation message.</p>
9 /// - On failure, responds with [`SdkError<DeleteMatchingWorkflowError>`](crate::operation::delete_matching_workflow::DeleteMatchingWorkflowError)
10 pub fn delete_matching_workflow(&self) -> crate::operation::delete_matching_workflow::builders::DeleteMatchingWorkflowFluentBuilder {
11 crate::operation::delete_matching_workflow::builders::DeleteMatchingWorkflowFluentBuilder::new(self.handle.clone())
12 }
13}