aws_sdk_bedrock/client/
delete_provisioned_model_throughput.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 [`DeleteProvisionedModelThroughput`](crate::operation::delete_provisioned_model_throughput::builders::DeleteProvisionedModelThroughputFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`provisioned_model_id(impl Into<String>)`](crate::operation::delete_provisioned_model_throughput::builders::DeleteProvisionedModelThroughputFluentBuilder::provisioned_model_id) / [`set_provisioned_model_id(Option<String>)`](crate::operation::delete_provisioned_model_throughput::builders::DeleteProvisionedModelThroughputFluentBuilder::set_provisioned_model_id):<br>required: **true**<br><p>The Amazon Resource Name (ARN) or name of the Provisioned Throughput.</p><br>
7    /// - On success, responds with [`DeleteProvisionedModelThroughputOutput`](crate::operation::delete_provisioned_model_throughput::DeleteProvisionedModelThroughputOutput)
8    /// - On failure, responds with [`SdkError<DeleteProvisionedModelThroughputError>`](crate::operation::delete_provisioned_model_throughput::DeleteProvisionedModelThroughputError)
9    pub fn delete_provisioned_model_throughput(
10        &self,
11    ) -> crate::operation::delete_provisioned_model_throughput::builders::DeleteProvisionedModelThroughputFluentBuilder {
12        crate::operation::delete_provisioned_model_throughput::builders::DeleteProvisionedModelThroughputFluentBuilder::new(self.handle.clone())
13    }
14}