aws_sdk_connect/client/delete_prompt.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 [`DeletePrompt`](crate::operation::delete_prompt::builders::DeletePromptFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`instance_id(impl Into<String>)`](crate::operation::delete_prompt::builders::DeletePromptFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::delete_prompt::builders::DeletePromptFluentBuilder::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>
7 /// - [`prompt_id(impl Into<String>)`](crate::operation::delete_prompt::builders::DeletePromptFluentBuilder::prompt_id) / [`set_prompt_id(Option<String>)`](crate::operation::delete_prompt::builders::DeletePromptFluentBuilder::set_prompt_id):<br>required: **true**<br><p>A unique identifier for the prompt.</p><br>
8 /// - On success, responds with [`DeletePromptOutput`](crate::operation::delete_prompt::DeletePromptOutput)
9 /// - On failure, responds with [`SdkError<DeletePromptError>`](crate::operation::delete_prompt::DeletePromptError)
10 pub fn delete_prompt(&self) -> crate::operation::delete_prompt::builders::DeletePromptFluentBuilder {
11 crate::operation::delete_prompt::builders::DeletePromptFluentBuilder::new(self.handle.clone())
12 }
13}