aws_sdk_bedrock/client/delete_marketplace_model_endpoint.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 [`DeleteMarketplaceModelEndpoint`](crate::operation::delete_marketplace_model_endpoint::builders::DeleteMarketplaceModelEndpointFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`endpoint_arn(impl Into<String>)`](crate::operation::delete_marketplace_model_endpoint::builders::DeleteMarketplaceModelEndpointFluentBuilder::endpoint_arn) / [`set_endpoint_arn(Option<String>)`](crate::operation::delete_marketplace_model_endpoint::builders::DeleteMarketplaceModelEndpointFluentBuilder::set_endpoint_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the endpoint you want to delete.</p><br>
7 /// - On success, responds with [`DeleteMarketplaceModelEndpointOutput`](crate::operation::delete_marketplace_model_endpoint::DeleteMarketplaceModelEndpointOutput)
8 /// - On failure, responds with [`SdkError<DeleteMarketplaceModelEndpointError>`](crate::operation::delete_marketplace_model_endpoint::DeleteMarketplaceModelEndpointError)
9 pub fn delete_marketplace_model_endpoint(
10 &self,
11 ) -> crate::operation::delete_marketplace_model_endpoint::builders::DeleteMarketplaceModelEndpointFluentBuilder {
12 crate::operation::delete_marketplace_model_endpoint::builders::DeleteMarketplaceModelEndpointFluentBuilder::new(self.handle.clone())
13 }
14}