aws_sdk_sagemaker/client/delete_endpoint_config.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 [`DeleteEndpointConfig`](crate::operation::delete_endpoint_config::builders::DeleteEndpointConfigFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`endpoint_config_name(impl Into<String>)`](crate::operation::delete_endpoint_config::builders::DeleteEndpointConfigFluentBuilder::endpoint_config_name) / [`set_endpoint_config_name(Option<String>)`](crate::operation::delete_endpoint_config::builders::DeleteEndpointConfigFluentBuilder::set_endpoint_config_name):<br>required: **true**<br><p>The name of the endpoint configuration that you want to delete.</p><br>
7 /// - On success, responds with [`DeleteEndpointConfigOutput`](crate::operation::delete_endpoint_config::DeleteEndpointConfigOutput)
8 /// - On failure, responds with [`SdkError<DeleteEndpointConfigError>`](crate::operation::delete_endpoint_config::DeleteEndpointConfigError)
9 pub fn delete_endpoint_config(&self) -> crate::operation::delete_endpoint_config::builders::DeleteEndpointConfigFluentBuilder {
10 crate::operation::delete_endpoint_config::builders::DeleteEndpointConfigFluentBuilder::new(self.handle.clone())
11 }
12}