aws_sdk_bedrock/client/delete_inference_profile.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 [`DeleteInferenceProfile`](crate::operation::delete_inference_profile::builders::DeleteInferenceProfileFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`inference_profile_identifier(impl Into<String>)`](crate::operation::delete_inference_profile::builders::DeleteInferenceProfileFluentBuilder::inference_profile_identifier) / [`set_inference_profile_identifier(Option<String>)`](crate::operation::delete_inference_profile::builders::DeleteInferenceProfileFluentBuilder::set_inference_profile_identifier):<br>required: **true**<br><p>The Amazon Resource Name (ARN) or ID of the application inference profile to delete.</p><br>
7 /// - On success, responds with [`DeleteInferenceProfileOutput`](crate::operation::delete_inference_profile::DeleteInferenceProfileOutput)
8 /// - On failure, responds with [`SdkError<DeleteInferenceProfileError>`](crate::operation::delete_inference_profile::DeleteInferenceProfileError)
9 pub fn delete_inference_profile(&self) -> crate::operation::delete_inference_profile::builders::DeleteInferenceProfileFluentBuilder {
10 crate::operation::delete_inference_profile::builders::DeleteInferenceProfileFluentBuilder::new(self.handle.clone())
11 }
12}