aws_sdk_connect/client/delete_contact_flow.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteContactFlow`](crate::operation::delete_contact_flow::builders::DeleteContactFlowFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`instance_id(impl Into<String>)`](crate::operation::delete_contact_flow::builders::DeleteContactFlowFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::delete_contact_flow::builders::DeleteContactFlowFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p><br>
/// - [`contact_flow_id(impl Into<String>)`](crate::operation::delete_contact_flow::builders::DeleteContactFlowFluentBuilder::contact_flow_id) / [`set_contact_flow_id(Option<String>)`](crate::operation::delete_contact_flow::builders::DeleteContactFlowFluentBuilder::set_contact_flow_id):<br>required: **true**<br><p>The identifier of the flow.</p><br>
/// - On success, responds with [`DeleteContactFlowOutput`](crate::operation::delete_contact_flow::DeleteContactFlowOutput)
/// - On failure, responds with [`SdkError<DeleteContactFlowError>`](crate::operation::delete_contact_flow::DeleteContactFlowError)
pub fn delete_contact_flow(&self) -> crate::operation::delete_contact_flow::builders::DeleteContactFlowFluentBuilder {
crate::operation::delete_contact_flow::builders::DeleteContactFlowFluentBuilder::new(self.handle.clone())
}
}